diff --git a/.gitignore b/.gitignore index fa7e34ca..c2058ce3 100644 --- a/.gitignore +++ b/.gitignore @@ -65,3 +65,5 @@ test/unit/test_devices.py tags report.json + +prof/ diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 00000000..0d1c99d9 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,20 @@ +0.0.2 ++++++ + + - Translators now accept ``continue_negating`` option + - YAML files can now include other files via the ``!include relative/path/to/file.yaml`` directive + - ``TextParser``, ``list - block`` supports manual keys via the ``key`` argument + - ``TextParser``, ``list - block`` now supports flat list of commands (i.e. BGP neighbors and static routes) via the ``flat`` argument + - ``TextParser``, ``list - block`` now supports composite keys via the ``composite_key`` argument + - ``TextParser``, ``list - block`` now supports creating elements manually via the ``mandatory`` argument + + - Move mandatory elements previously on the default action to a dedicated action + - from is optional, by default it will always follow the parent + - from is now a pointer, no need to keep serializing/deserializing + - mode is optional. All parsers have a main "default" action now. + - JSONParser added + +0.0.1 ++++++ + + - Initial version diff --git a/docs/index.rst b/docs/index.rst index 0245be3c..1599accd 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -29,3 +29,4 @@ Documentation yang/translators/TextTranslator yang/api yang/jinja_filters + yang/faq diff --git a/docs/yang/faq.rst b/docs/yang/faq.rst new file mode 100644 index 00000000..e3fb09ed --- /dev/null +++ b/docs/yang/faq.rst @@ -0,0 +1,24 @@ +FAQ +=== + +Some YAML files are insanely largely. Can I break them down into multiple files? +________________________________________________________________________________ + + Yes, you can with the ``!include relative/path/to/file.yaml`` directive. For example:: + + # ./main.yaml + my_key: + blah: asdasdasd + bleh: !include includes/bleh.yaml + + # ./includes/bleh.yaml + qwe: 1 + asd: 2 + + Will result in the final object:: + + my_key: + blah: asdasdasd + bleh: + qwe: 1 + asd: 2 diff --git a/docs/yang/parsers.rst b/docs/yang/parsers.rst index 955ea16e..31337892 100644 --- a/docs/yang/parsers.rst +++ b/docs/yang/parsers.rst @@ -3,6 +3,52 @@ Parsers Parsers are responsible for mapping native configuration/show_commands to a YANG model. +Special actions +=============== + +Most actions depend on the parser you are using, however, some are common to all of them: + +unnecessary +----------- + +This makes the parser skip the field and continue processing the tree. + +not_implemented +--------------- + +This makes the parser stop processing the tree underneath this value. For example:: + + field_1: + process: unnecessary + field_2: + process: not_implemented + subfield_1: + process: ... + subfield_2: + process: ... + field_3: + ... + +The ``not_implemented`` action will stop the parser from processing ``subfield_1`` and ``subfield_2`` +and move directly onto ``field_3``. + +gate +---- + +Works like ``not_implemented`` but accepts a condition. For example:: + + protocols: + protocol: + bgp: + _process: + - mode: gate + when: "{{ protocol_key != 'bgp bgp' }}" + global: + ... + +The snippet above will only process the ``bgp`` subtree if the condition is **not** met. + + Special fields ============== @@ -17,7 +63,7 @@ mode * **Example**: Parse the description field with a simple regular expression:: _process: - mode: search + - mode: search regexp: "description (?P.*)" from: "{{ bookmarks.interface[interface_key] }}" @@ -52,7 +98,7 @@ from address: _process: - mode: xpath + - mode: xpath xpath: "family/inet/address" key: name from: "{{ bookmarks['parent'] }}" @@ -112,14 +158,14 @@ Some actions let's you provide additional information for later use. Those will address: _process: - mode: block + - mode: block regexp: "(?Pip address (?P(?P.*))\\/(?P\\d+))(?P secondary)*" from: "{{ bookmarks['parent'] }}" config: _process: unnecessary ip: _process: - mode: value + - mode: value value: "{{ extra_vars.ip }}" The first regexp captures a bunch of vars that later can be used by just reading them from @@ -137,13 +183,15 @@ the device. For example:: parser: XMLParser execute: - method: _rpc - args: + args: [] + kwargs: get: "" * **execute** is a list of calls to do to from the device to extract the data. * **method** is the method from the device to call. - * **args** are arguments that will be passed to the method. + * **args** are the numbered/ordered arguments for the method + * **kwargs** are the keyword arguments for the method In addition, some methods like ``parse_config`` and ``parse_state`` may have mechanisms to pass the information needed to the parser instead of relying on a live device to obtain it. For parsers, you diff --git a/docs/yang/parsers/TextParser.rst b/docs/yang/parsers/TextParser.rst index 743d9587..9d8b5905 100644 --- a/docs/yang/parsers/TextParser.rst +++ b/docs/yang/parsers/TextParser.rst @@ -30,14 +30,21 @@ Arguments: * **regexp** (mandatory) - Regular expression to apply. Note that it must capture two things at least; ``block``, which will be the entire block of configuration relevant for the interface and ``key``, which will be the key of the element. - + * **mandatory** (optional) will force the creation of one or more elements by specifying them manually + in a dict the ``key``, ``block`` (can be empty string) and any potential ``extra_vars`` you may want to specify. + * **composite_key** (optional) is a list of attributes captured in the regexp to be used as the key for the element. + * **flat** (optional) if set to ``true`` (default is ``false``) the parser will understand the configuration for the + element consists of flat commands instead of nested (for example BGP neighbors or static routes) + * **key** (optional) set key manually + * **post_process_filter** (optional) - Modify the key with this Jinja expression. ``key`` and ``extra_vars`` + variables are available. Example 1 Capture the interfaces:: _process: - mode: block + - mode: block regexp: "(?Pinterface (?P(\\w|-)*\\d+)\n(?:.|\n)*?^!$)" from: "{{ bookmarks.interfaces }}" @@ -66,22 +73,94 @@ Example 2 subinterface: _process: - mode: block + - mode: block regexp: "(?Pinterface {{interface_key}}\\.(?P\\d+)\\n(?:.|\\n)*?^!$)" from: "{{ bookmarks.interfaces }}" -Example 3. +Example 3 Sometimes we can get easily more information in one go than just the ``key`` and the ``block``. For those cases we can capture more groups and they will be stored in the ``extra_vars`` dictionary:: address: _process: - mode: block + - mode: block regexp: "(?Pip address (?P(?P.*))\\/(?P\\d+))(?P secondary)*" from: "{{ bookmarks['parent'] }}" +Example 4 + + In some cases native configuration might be "flat" but nested in a YANG model. This is the case of the `global` + or `default` VRF, in those cases, it is hard you may want to ensure that `global` VRF is always created:: + + _process: + - mode: block + regexp: "(?Pvrf definition (?P(.*))\n(?:.|\n)*?^!$)" + from: "{{ bookmarks['network-instances'][0] }}" + mandatory: + - key: "global" + block: "" + extra_vars: {} + +Example 5 + + Some list elements have composite keys, if that's the case, use the composite key to tell the parser how to map + captured elements to the composite key:: + + protocols: + _process: unnecessary + protocol: + _process: + - mode: block + regexp: "(?Prouter (?P(bgp))\\s*(?P\\d+)*\n(?:.|\n)*?)^(!| vrf \\w+)$" + from: "{{ bookmarks['network-instances'][0] }}" + composite_key: [protocol_name, protocol_name] + when: "{{ network_instance_key == 'global' }}" + +Example 6 + + Some list elements (like static routes or BGP neighbors) are configured as a flat list of commands instead of + nested. By default, if you would try to parse each command individually the parser would try to create + a new element with each line and fail as multiple lines belong to the same element but they are treated independently. + By setting ``flat: true`` this behavior is changed and subsequent commands will update an already created object:: + + bgp: + neighbors: + neighbor: + _process: + - mode: block + regexp: "(?Pneighbor (?P\\d+.\\d+.\\d+.\\d+).*)" + from: "{{ bookmarks['protocol'][protocol_key] }}" + flat: true + +Example 7 + + In some rare cases you might not be able to extract the key directly from the configuration. For example, + the ``static`` protocol consists of ``ip route`` commands. In that case you can set the key yourself:: + + protocols: + protocol: + _process: + - mode: block + regexp: "(?Pip route .*\n(?:.|\n)*?^!$)" + from: "{{ bookmarks['network-instances'][0] }}" + key: "static static" + +Example 8 + + Sometimes you need to transform the key value. For example, static routes require the prefix in CIDR format, + but Cisco IOS outputs routes in `` `` format. In that case you can use ``post_process_filter`` to + apply additional filters:: + + static: + _process: + - mode: block + regexp: "(?Pip route (?P\\d+\\S+ \\d+\\S+).*)" + from: "{{ bookmarks['network-instances'][0] }}" + post_process_filter: "{{ key|addrmask_to_cidr }}" + + Leaf - search ------------- @@ -99,7 +178,7 @@ Example. description: _process: - mode: search + - mode: search regexp: "description (?P.*)" from: "{{ bookmarks.interface[interface_key] }}" @@ -118,7 +197,7 @@ Example. secondary: _process: - mode: value + - mode: value value: "{{ extra_vars.secondary != None }}" Leaf - is_absent @@ -136,7 +215,7 @@ Example. _process: unnecessary enabled: _process: - mode: is_absent + - mode: is_absent regexp: "(?P^\\W*switchport$)" from: "{{ bookmarks['parent'] }}" @@ -151,7 +230,7 @@ Example. enabled: _process: - mode: is_present + - mode: is_present regexp: "(?Pno shutdown)" from: "{{ bookmarks.interface[interface_key] }}" @@ -172,7 +251,7 @@ Example. Check type of interface by extracting the name and doing a lookup:: _process: - mode: map + - mode: map regexp: "(?P(\\w|-)*)\\d+" from: "{{ interface_key }}" map: @@ -181,4 +260,3 @@ Example. Loopback: softwareLoopback Port-Channel: ieee8023adLag Vlan: l3ipvlan - diff --git a/docs/yang/parsers/XMLParser.rst b/docs/yang/parsers/XMLParser.rst index e244734f..83a488db 100644 --- a/docs/yang/parsers/XMLParser.rst +++ b/docs/yang/parsers/XMLParser.rst @@ -27,6 +27,7 @@ Arguments: * **xpath** (mandatory): elements to traverse * **key** (mandatory): which element is the key of the list +* **post_process_filter** (optional): modify the key with this Jinja2 expression Example: @@ -35,7 +36,7 @@ Example: interface: _process: - mode: xpath + - mode: xpath xpath: "interfaces/interface" key: name from: "{{ bookmarks.interfaces }}" @@ -73,7 +74,7 @@ Example: description: _process: - mode: xpath + - mode: xpath xpath: description from: "{{ bookmarks['parent'] }}" @@ -92,7 +93,7 @@ Example: name: _process: - mode: value + - mode: value value: "{{ interface_key }}" Leaf - map @@ -114,7 +115,7 @@ Example: type: _process: - mode: map + - mode: map xpath: name regexp: "(?P[a-z]+).*" from: "{{ bookmarks['parent'] }}" @@ -137,7 +138,7 @@ Example: enabled: _process: - mode: is_absent + - mode: is_absent xpath: "disable" from: "{{ bookmarks['parent'] }}" @@ -148,4 +149,3 @@ Leaf - is_present ----------------- Works exactly like ``xpath`` but if the evaluation is ``None``, it will return ``False``. - diff --git a/docs/yang/profiles.rst b/docs/yang/profiles.rst index a4154638..5e4023c3 100644 --- a/docs/yang/profiles.rst +++ b/docs/yang/profiles.rst @@ -22,7 +22,7 @@ If you are using a napalm driver and have access to your device, you will have a is useful as there might be small variances between different systems but not enough to justify reimplementing everything. -You can find the profiles `here `_ but what is exactly is a profile? A profile is a bunch of YAML files that follows the structure of a YANG model and describes two things: +You can find the profiles `here `_ but what exactly is a profile? A profile is a bunch of YAML files that follows the structure of a YANG model and describes two things: #. How to parse native configuration/state and map it into a model. #. How to translate a model and map it into native configuration. @@ -31,19 +31,19 @@ For example, for a given interface, the snippet below specifies how to map confi enabled: _process: - mode: is_present - regexp: "(?Pno shutdown)" - from: "{{ parse_bookmarks.interface[interface_key] }}" + - mode: is_present + regexp: "(?Pno shutdown)" + from: "{{ parse_bookmarks.interface[interface_key] }}" description: _process: - mode: search - regexp: "description (?P.*)" - from: "{{ parse_bookmarks.interface[interface_key] }}" + - mode: search + regexp: "description (?P.*)" + from: "{{ parse_bookmarks.interface[interface_key] }}" mtu: _process: - mode: search - regexp: "mtu (?P[0-9]+)" - from: "{{ parse_bookmarks.interface[interface_key] }}" + - mode: search + regexp: "mtu (?P[0-9]+)" + from: "{{ parse_bookmarks.interface[interface_key] }}" And the following snippet how to map the same attributes from the ``openconfig_interface`` to native configuration:: diff --git a/docs/yang/translators.rst b/docs/yang/translators.rst index 6012a04d..af3a790a 100644 --- a/docs/yang/translators.rst +++ b/docs/yang/translators.rst @@ -3,6 +3,51 @@ Translators Translators are responsible for transforming a model into native configuration. +Special actions +=============== + +Most actions depend on the parser you are using, however, some are common to all of them: + +unnecessary +----------- + +This makes the parser skip the field and continue processing the tree. + +not_implemented +--------------- + +This makes the parser stop processing the tree underneath this value. For example:: + + field_1: + process: unnecessary + field_2: + process: not_implemented + subfield_1: + process: ... + subfield_2: + process: ... + field_3: + ... + +The ``not_implemented`` action will stop the parser from processing ``subfield_1`` and ``subfield_2`` +and move directly onto ``field_3``. + +gate +---- + +Works like ``not_implemented`` but accepts a condition. For example:: + + protocols: + protocol: + bgp: + _process: + - mode: gate + when: "{{ protocol_key != 'bgp bgp' }}" + global: + ... + +The snippet above will only process the ``bgp`` subtree if the condition is **not** met. + Special fields ============== @@ -78,6 +123,44 @@ in .. note:: This field follows the same logic as the :ref:`yang_special_field_bookmarks` special field. +continue_negating +----------------- + +* **mandatory**: no +* **description**: This option, when added to a container, will make the framework to also negate children. +* **example**: We can use as an example the "network-instances" model. In the model, BGP is inside the ``network-instance`` container, however, in EOS and other platforms that BGP configuration is decoupled from the VRF, so in order to tell the framework to delete also the direct children you will have to use this option. For example:: + + network-instance: + _process: + - mode: container + key_value: "vrf definition {{ network_instance_key }}\n" + negate: "no vrf definition {{ network_instance_key }}\n" + continue_negating: true + end: " exit\n" + when: "{{ network_instance_key != 'global' }}" + ... + protocols: + _process: unnecessary + protocol: + _process: + - mode: container + key_value: "router bgp {{ model.bgp.global_.config.as_ }}\n vrf {{ network_instance_key}}\n" + negate: "router bgp {{ model.bgp.global_.config.as_ }}\n no vrf {{ network_instance_key}}\n" + end: " exit\n" + when: "{{ protocol_key == 'bgp bgp' and network_instance_key != 'global' }}" + replace: false + in: "network-instances" + +The example above will generate:: + + no vrf definition blah + router bgp ASN + no vrf blah + +Without ``continue_negating`` it would just generate:: + + no vrf definition blah + Special variables ================= diff --git a/docs/yang/translators/TextTranslator.rst b/docs/yang/translators/TextTranslator.rst index 1fe73977..2b3076e7 100644 --- a/docs/yang/translators/TextTranslator.rst +++ b/docs/yang/translators/TextTranslator.rst @@ -28,7 +28,7 @@ Example 1: _process: unnecessary interface: _process: - mode: container + . mode: container key_value: "interface {{ interface_key }}\n" negate: "{{ 'no' if interface_key[0:4] in ['Port', 'Loop'] else 'default' }} interface {{ interface_key }}\n" end: " exit\n" @@ -39,7 +39,7 @@ Example 2: address: _process: - mode: container + . mode: container key_value: " ip address {{ model.config.ip }} {{ model.config.prefix_length|cidr_to_netmask }}{{ ' secondary' if model.config.secondary else '' }}\n" negate: " default ip address {{ model.config.ip }} {{ model.config.prefix_length|cidr_to_netmask }}{{ ' secondary' if model.config.secondary else '' }}\n" replace: false diff --git a/docs/yang/translators/XMLTranslator.rst b/docs/yang/translators/XMLTranslator.rst index 73f18a3c..ac1a70db 100644 --- a/docs/yang/translators/XMLTranslator.rst +++ b/docs/yang/translators/XMLTranslator.rst @@ -34,7 +34,7 @@ Example: Create the ``interfaces`` container:: _process: - mode: container + . mode: container container: interfaces replace: true @@ -57,7 +57,7 @@ Example: interface: _process: - mode: container + . mode: container container: interface key_element: name key_value: "{{ interface_key }}" diff --git a/docs/yang/writing_profiles.rst b/docs/yang/writing_profiles.rst index f88aca84..c79ddaf1 100644 --- a/docs/yang/writing_profiles.rst +++ b/docs/yang/writing_profiles.rst @@ -49,12 +49,13 @@ If we check the content of the file ``vlan.yaml`` we can clearly see two parts: processor: XMLParser execute: - method: _rpc - args: + args: [] + kwargs: get: "" In this case we are using the ``XMLParser`` parser and in order to get the data we need from the -device we have to call the method ``_rpc`` with the ``args`` parameters. This is, by the way, an -RPC call for a junos device. +device we have to call the method ``_rpc`` with the ``args`` and ``kwargs`` parameters. This is, +by the way, an RPC call for a junos device. * **vlan** - This is the part that follows the model specification. In this case is ``vlan`` but in others it might be ``interfaces``, ``addressess`` or something else, this will be model dependent @@ -68,7 +69,7 @@ RPC call for a junos device. _process: unnecessary vlan_id: _process: - mode: xpath + - mode: xpath xpath: "vlan-id" from: "{{ parse_bookmarks['parent'] }}" diff --git a/generate_templates.py b/generate_templates.py index 0ea4b825..1b2567ff 100644 --- a/generate_templates.py +++ b/generate_templates.py @@ -33,22 +33,20 @@ def process(model, r_config, r_state): r_state[model._yang_name] = {"_process": "not_implemented"} return - for k, v in ctr: - if model._yang_name == "config": - rr_config = r_config[model._yang_name] - rr_config["_process"] = "not_implemented" - rr_state = r_state - elif v._is_config: - rr_config = r_config[model._yang_name] - rr_config["_process"] = "not_implemented" - rr_state = r_state[model._yang_name] - rr_state["_process"] = "not_implemented" - else: - rr_config = r_config - rr_state = r_state[model._yang_name] - rr_state["_process"] = "not_implemented" + if model._yang_name == "config": + r_config = r_config[ctr._yang_name] + r_config["_process"] = "not_implemented" + elif model._is_config: + r_config = r_config[ctr._yang_name] + r_config["_process"] = "not_implemented" + r_state = r_state[ctr._yang_name] + r_state["_process"] = "not_implemented" + else: + r_state = r_state[ctr._yang_name] + r_state["_process"] = "not_implemented" - process_module(v, model._defining_module, rr_config, rr_state) + for k, v in ctr: + process_module(v, model._defining_module, r_config, r_state) def process_module(model, module, r_config=None, r_state=None): diff --git a/interactive_demo/tutorial.ipynb b/interactive_demo/tutorial.ipynb index 4295b36a..f9b12f97 100644 --- a/interactive_demo/tutorial.ipynb +++ b/interactive_demo/tutorial.ipynb @@ -3544,6 +3544,21 @@ }, "outputs": [], "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Salt\n", + "\n", + "## napalm-yang is also integrated in the official SaltStack releases, beginning with Nitrogen.\n", + "\n", + "For complete documentation and usages examples, please check:\n\n", + "- [napalm-yang execution module](https://docs.saltstack.com/en/develop/ref/modules/all/salt.modules.napalm_yang_mod.html)\n", + "- [netyang state](https://docs.saltstack.com/en/develop/ref/states/all/salt.states.netyang.html)\n\n", + "They can be used like any other Salt native module, as long as the credentials have been declared in the pillar (either file or external service).\n", + "See the [proxy documentation](https://docs.saltstack.com/en/develop/ref/proxy/all/salt.proxy.napalm.html) for more details.\n" + ] } ], "metadata": { diff --git a/napalm_yang/__init__.py b/napalm_yang/__init__.py index 4c2c4f03..e28cc1b8 100644 --- a/napalm_yang/__init__.py +++ b/napalm_yang/__init__.py @@ -2,8 +2,12 @@ from napalm_yang import models from napalm_yang import utils +from napalm_yang.supported_models import SUPPORTED_MODELS + + __all__ = [ "base", "models", "utils", + "SUPPORTED_MODELS", ] diff --git a/napalm_yang/base.py b/napalm_yang/base.py index 505dfb38..d25ca47b 100644 --- a/napalm_yang/base.py +++ b/napalm_yang/base.py @@ -1,6 +1,7 @@ import ast +from napalm_yang.supported_models import SUPPORTED_MODELS from napalm_yang.parser import Parser from napalm_yang.translator import Translator @@ -33,7 +34,7 @@ def elements(self): return self._elements "base", - def add_model(self, model): + def add_model(self, model, force=False): """ Add a model. @@ -41,6 +42,7 @@ def add_model(self, model): Args: model (PybindBase): Model to add. + force (bool): If not set, verify the model is in SUPPORTED_MODELS Examples: @@ -55,6 +57,9 @@ def add_model(self, model): except Exception: pass + if model._yang_name not in [a[0] for a in SUPPORTED_MODELS]: + raise ValueError("Only models in SUPPORTED_MODELS can be added without `force=True`") + for k, v in model: self._elements[k] = v setattr(self, k, v) @@ -183,7 +188,7 @@ def to_dict(self, filter=True): result[k] = r return result - def parse_config(self, device=None, profile=None, native=None): + def parse_config(self, device=None, profile=None, native=None, attrs=None): """ Parse native configuration and load it into the corresponding models. Only models that have been added to the root object will be parsed. @@ -212,12 +217,14 @@ def parse_config(self, device=None, profile=None, native=None): >>> running_config.add_model(napalm_yang.models.openconfig_interfaces) >>> running_config.parse_config(native=config, profile="junos") """ + if attrs is None: + attrs = self.elements().values() - for k, v in self: + for v in attrs: parser = Parser(v, device=device, profile=profile, native=native, is_config=True) parser.parse() - def parse_state(self, device=None, profile=None, native=None): + def parse_state(self, device=None, profile=None, native=None, attrs=None): """ Parse native state and load it into the corresponding models. Only models that have been added to the root object will be parsed. @@ -246,7 +253,10 @@ def parse_state(self, device=None, profile=None, native=None): >>> state.add_model(napalm_yang.models.openconfig_interfaces) >>> state.parse_config(native=state_data, profile="junos") """ - for k, v in self: + if attrs is None: + attrs = self.elements().values() + + for v in attrs: parser = Parser(v, device=device, profile=profile, native=native, is_config=False) parser.parse() diff --git a/napalm_yang/helpers.py b/napalm_yang/helpers.py index c5ca4c18..fe2dc56f 100644 --- a/napalm_yang/helpers.py +++ b/napalm_yang/helpers.py @@ -1,28 +1,31 @@ import yaml - -from napalm_yang.parsers.text import TextParser -from napalm_yang.parsers.xml import XMLParser - -from napalm_yang.translators.text import TextTranslator -from napalm_yang.translators.xml import XMLTranslator - import os +import sys import jinja2 -from napalm_yang.jinja_filters import ip_filters +from napalm_yang import jinja_filters import logging logger = logging.getLogger("napalm-yang") -def get_parser(parser): - parsers = { - "TextParser": TextParser, - "XMLParser": XMLParser, - "TextTranslator": TextTranslator, - "XMLTranslator": XMLTranslator, - } - return parsers[parser] +def yaml_include(loader, node): + # Get the path out of the yaml file + file_name = os.path.join(os.path.dirname(loader.name), node.value) + + with file(file_name) as inputfile: + return yaml.load(inputfile) + + +yaml.add_constructor("!include", yaml_include) + + +def config_logging(level=logging.DEBUG, stream=sys.stdout): + logger.setLevel(level) + ch = logging.StreamHandler(stream) + formatter = logging.Formatter('%(name)s - %(levelname)s - %(message)s') + ch.setFormatter(formatter) + logger.addHandler(ch) def find_yang_file(profile, filename, path): @@ -64,16 +67,31 @@ def read_yang_map(yang_prefix, attribute, profile, parser_path): return with open(filepath, "r") as f: - return yaml.load(f.read()) + return yaml.load(f) + + +def _resolve_rule(rule, **kwargs): + if isinstance(rule, dict): + return {k: _resolve_rule(v, **kwargs) for k, v in rule.items()} + elif isinstance(rule, list): + return [_resolve_rule(e, **kwargs) for e in rule] + elif isinstance(rule, str): + return template(rule, **kwargs) + else: + return rule def resolve_rule(rule, attribute, keys, extra_vars=None, translation_model=None, - parse_bookmarks=None): + parse_bookmarks=None, replacing=False, merging=False, negating=False, + process_all=True): if isinstance(rule, list): - raise Exception("Wrong rule for attr: {}. List can be used only on leafs".format(attribute)) + return [resolve_rule(r, attribute, keys, extra_vars, translation_model, parse_bookmarks, + replacing, merging, negating, process_all) for r in rule] elif isinstance(rule, str): - if rule in ["unnecessary", "not_implemented"]: - return {"mode": "skip", "reason": rule} + if rule in ["unnecessary"]: + return [{"mode": "skip", "reason": rule}] + elif rule in ["not_implemented", "not_supported"]: + return [{"mode": "gate", "reason": rule}] else: raise Exception("Not sure what to do with rule {} on attribute {}".format(rule, attribute)) @@ -83,15 +101,17 @@ def resolve_rule(rule, attribute, keys, extra_vars=None, translation_model=None, kwargs["bookmarks"] = parse_bookmarks kwargs["attribute"] = attribute kwargs["extra_vars"] = extra_vars + kwargs["replacing"] = replacing + kwargs["merging"] = merging + kwargs["negating"] = negating for k, v in rule.items(): - if isinstance(v, dict): - resolve_rule(v, attribute, keys, extra_vars, translation_model, parse_bookmarks) - elif isinstance(v, list): - for e in k: - resolve_rule(e, attribute, keys, extra_vars, translation_model, parse_bookmarks) - elif isinstance(v, str): - rule[k] = template(v, **kwargs) + if k in ["key", "value"] and not process_all: + # don't process keys or values as we will do it at "processing time" + # instead of ahead of time + rule[k] = v + else: + rule[k] = _resolve_rule(v, **kwargs) if "when" in rule.keys(): w = rule["when"] @@ -110,9 +130,10 @@ def resolve_rule(rule, attribute, keys, extra_vars=None, translation_model=None, def template(string, **kwargs): env = jinja2.Environment( undefined=jinja2.StrictUndefined, + extensions=['jinja2.ext.do'], keep_trailing_newline=True, ) - env.filters.update(ip_filters.filters()) + env.filters.update(jinja_filters.load_filters()) template = env.from_string(string) diff --git a/napalm_yang/jinja_filters/__init__.py b/napalm_yang/jinja_filters/__init__.py index e69de29b..500eccb7 100644 --- a/napalm_yang/jinja_filters/__init__.py +++ b/napalm_yang/jinja_filters/__init__.py @@ -0,0 +1,20 @@ +import ip_filters +import json_filters +import vlan_filters + +JINJA_FILTERS = [ + ip_filters, + json_filters, + vlan_filters, +] + + +def load_filters(): + """ + Loads and returns all filters. + """ + all_filters = {} + for m in JINJA_FILTERS: + if hasattr(m, 'filters'): + all_filters.update(m.filters()) + return all_filters diff --git a/napalm_yang/jinja_filters/helpers.py b/napalm_yang/jinja_filters/helpers.py new file mode 100644 index 00000000..1119f711 --- /dev/null +++ b/napalm_yang/jinja_filters/helpers.py @@ -0,0 +1,16 @@ +def check_empty(filter_function): + """ + Decorator that checks if a value passed to a Jinja filter evaluates to false + and returns an empty string. Otherwise calls the original Jinja filter. + + Example usage: + @check_empty + def my_jinja_filter(value, arg1): + """ + def wrapper(value, *args, **kwargs): + if not value: + return '' + else: + return filter_function(value, *args, **kwargs) + + return wrapper diff --git a/napalm_yang/jinja_filters/ip_filters.py b/napalm_yang/jinja_filters/ip_filters.py index e5b36565..3dfdf524 100644 --- a/napalm_yang/jinja_filters/ip_filters.py +++ b/napalm_yang/jinja_filters/ip_filters.py @@ -1,13 +1,19 @@ import netaddr +from napalm_yang.jinja_filters.helpers import check_empty + def filters(): return { "netmask_to_cidr": netmask_to_cidr, "cidr_to_netmask": cidr_to_netmask, + "normalize_prefix": normalize_prefix, + "normalize_address": normalize_address, + "prefix_to_addrmask": prefix_to_addrmask, } +@check_empty def netmask_to_cidr(value): """ Converts a network mask to it's CIDR value. @@ -18,6 +24,7 @@ def netmask_to_cidr(value): return netaddr.IPAddress(value).netmask_bits() +@check_empty def cidr_to_netmask(value): """ Converts a CIDR prefix-length to a network mask. @@ -25,4 +32,53 @@ def cidr_to_netmask(value): Examples: >>> "{{ '24'|cidr_to_netmask }}" -> "255.255.255.0" """ - return netaddr.IPNetwork("1.1.1.1/{}".format(value)).netmask + return str(netaddr.IPNetwork("1.1.1.1/{}".format(value)).netmask) + + +@check_empty +def normalize_prefix(value): + """ + Converts an IPv4 or IPv6 prefix writen in various formats to its CIDR representation. + + This filter works only on prefixes. Use normalize_address if you wish to normalize an address + without a network mask. + + Examples: + >>> "{{ '192.168.0.0 255.255.255.0'|normalize_prefix }}" -> "192.168.0.0/24" + >>> "{{ '192.168/255.255.255.0'|normalize_prefix }}" -> "192.168.0.0/24" + >>> "{{ '2001:DB8:0:0:1:0:0:1/64'|normalize_prefix }}" -> "2001:db8::1:0:0:1/64" + """ + value = value.replace(' ', '/') + return str(netaddr.IPNetwork(value)) + + +@check_empty +def normalize_address(value): + """ + Converts an IPv4 or IPv6 address writen in various formats to a standard textual representation. + + This filter works only on addresses without network mask. Use normalize_prefix to normalize + networks. + + Examples: + >>> "{{ '192.168.0.1'|normalize_address }}" -> "192.168.0.1" + >>> "{{ '192.168.1'|normalize_address }}" -> "192.168.0.1" + >>> "{{ '2001:DB8:0:0:1:0:0:1'|normalize_address }}" -> "2001:db8::1:0:0:1" + + """ + return str(netaddr.IPAddress(value)) + + +@check_empty +def prefix_to_addrmask(value, sep=' '): + """ + Converts a CIDR formatted prefix into an address netmask representation. + Argument sep specifies the separator between the address and netmask parts. + By default it's a single space. + + Examples: + >>> "{{ '192.168.0.1/24|prefix_to_addrmask }}" -> "192.168.0.1 255.255.255.0" + >>> "{{ '192.168.0.1/24|prefix_to_addrmask('/') }}" -> "192.168.0.1/255.255.255.0" + """ + prefix = netaddr.IPNetwork(value) + return '{}{}{}'.format(prefix.ip, sep, prefix.netmask) diff --git a/napalm_yang/jinja_filters/json_filters.py b/napalm_yang/jinja_filters/json_filters.py new file mode 100644 index 00000000..2d822ed3 --- /dev/null +++ b/napalm_yang/jinja_filters/json_filters.py @@ -0,0 +1,7 @@ +import json + + +def filters(): + return { + "json": lambda obj: json.dumps(obj), + } diff --git a/napalm_yang/jinja_filters/vlan_filters.py b/napalm_yang/jinja_filters/vlan_filters.py new file mode 100644 index 00000000..9d31fa4e --- /dev/null +++ b/napalm_yang/jinja_filters/vlan_filters.py @@ -0,0 +1,30 @@ +from napalm_yang.jinja_filters.helpers import check_empty + + +def filters(): + return { + "vlan_range_to_oc": vlan_range_to_oc, + "oc_to_vlan_range": oc_to_vlan_range, + } + + +@check_empty +def vlan_range_to_oc(value): + """ + Converts an industry standard vlan range into a list that can be + interpreted by openconfig. For example: + + "1, 2, 3-10" -> ["1", "2", "3..10"] + """ + return [s.replace("-", "..") for s in value.split(",")] + + +@check_empty +def oc_to_vlan_range(value): + """ + Converts an industry standard vlan range into a list that can be + interpreted by openconfig. For example: + + ["1", "2", "3..10"] -> "1, 2, 3-10" + """ + return ",".join(["{}".format(s).replace("..", "-") for s in value]) diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-aggregate/aggregation.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-aggregate/aggregation.yaml index 04215d3a..78270f06 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-aggregate/aggregation.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-aggregate/aggregation.yaml @@ -10,3 +10,5 @@ aggregation: _process: not_implemented min-links: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ethernet/ethernet.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ethernet/ethernet.yaml index 19df1086..c1682bae 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ethernet/ethernet.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ethernet/ethernet.yaml @@ -16,3 +16,5 @@ ethernet: _process: not_implemented port-speed: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip-ext/autoconf.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip-ext/autoconf.yaml index 3031712e..9389d681 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip-ext/autoconf.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip-ext/autoconf.yaml @@ -14,3 +14,5 @@ autoconf: _process: not_implemented temporary-valid-lifetime: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip/ipv4.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip/ipv4.yaml index cfed01be..cd995614 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip/ipv4.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip/ipv4.yaml @@ -16,6 +16,8 @@ ipv4: _process: not_implemented ip: _process: not_implemented + state: + _process: not_implemented vrrp: _process: not_implemented vrrp-group: @@ -44,6 +46,10 @@ ipv4: _process: not_implemented track-interface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented virtual-router-id: _process: not_implemented config: @@ -64,6 +70,10 @@ ipv4: _process: not_implemented ip: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented unnumbered: _process: not_implemented config: @@ -78,3 +88,7 @@ ipv4: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip/ipv6.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip/ipv6.yaml index 80ccfe09..adbd06d4 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip/ipv6.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-if-ip/ipv6.yaml @@ -16,6 +16,8 @@ ipv6: _process: not_implemented ip: _process: not_implemented + state: + _process: not_implemented vrrp: _process: not_implemented vrrp-group: @@ -46,6 +48,10 @@ ipv6: _process: not_implemented track-interface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented virtual-router-id: _process: not_implemented config: @@ -68,6 +74,10 @@ ipv6: _process: not_implemented ip: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented unnumbered: _process: not_implemented config: @@ -82,3 +92,7 @@ ipv6: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-interfaces/interfaces.yaml index d5aa5eb1..f92d9638 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-interfaces/interfaces.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-interfaces/interfaces.yaml @@ -26,8 +26,12 @@ interfaces: _process: not_implemented up: _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented subinterfaces: _process: not_implemented subinterface: @@ -44,3 +48,5 @@ interfaces: _process: not_implemented index: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-network-instance/network-instances.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-network-instance/network-instances.yaml index fb4853f4..c3f45206 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-network-instance/network-instances.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-network-instance/network-instances.yaml @@ -30,6 +30,10 @@ network-instances: _process: not_implemented interface-ref: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented next-hops: _process: not_implemented next-hop: @@ -48,6 +52,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented description: @@ -98,6 +110,8 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented remote: _process: not_implemented config: @@ -106,6 +120,12 @@ network-instances: _process: not_implemented virtual-circuit-identifier: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented encapsulation: _process: not_implemented config: @@ -116,6 +136,8 @@ network-instances: _process: not_implemented label-allocation-mode: _process: not_implemented + state: + _process: not_implemented fdb: _process: not_implemented config: @@ -148,8 +170,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented mac-address: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented inter-instance-policies: _process: not_implemented apply-policy: @@ -164,6 +192,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented interfaces: _process: not_implemented interface: @@ -180,6 +210,8 @@ network-instances: _process: not_implemented id: _process: not_implemented + state: + _process: not_implemented mpls: _process: not_implemented global: @@ -208,6 +240,10 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented reserved-label-blocks: _process: not_implemented reserved-label-block: @@ -222,6 +258,10 @@ network-instances: _process: not_implemented local-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented lsps: _process: not_implemented constrained-path: @@ -252,8 +292,12 @@ network-instances: _process: not_implemented index: _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented tunnels: _process: not_implemented tunnel: @@ -284,6 +328,10 @@ network-instances: _process: not_implemented trigger-event-count: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented underflow: _process: not_implemented config: @@ -294,12 +342,16 @@ network-instances: _process: not_implemented underflow-threshold: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented set-bandwidth: _process: not_implemented specification-type: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented admin-status: @@ -354,6 +406,8 @@ network-instances: _process: not_implemented include-any-group: _process: not_implemented + state: + _process: not_implemented candidate-secondary-paths: _process: not_implemented candidate-secondary-path: @@ -366,6 +420,8 @@ network-instances: _process: not_implemented secondary-path: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented cspf-tiebreaker: @@ -390,6 +446,8 @@ network-instances: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented p2p-secondary-paths: _process: not_implemented p2p-secondary-path: @@ -404,6 +462,8 @@ network-instances: _process: not_implemented include-any-group: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented cspf-tiebreaker: @@ -428,6 +488,12 @@ network-instances: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented static-lsps: _process: not_implemented static-lsp: @@ -446,6 +512,8 @@ network-instances: _process: not_implemented push-label: _process: not_implemented + state: + _process: not_implemented ingress: _process: not_implemented config: @@ -456,8 +524,12 @@ network-instances: _process: not_implemented push-label: _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented transit: _process: not_implemented config: @@ -468,8 +540,12 @@ network-instances: _process: not_implemented push-label: _process: not_implemented + state: + _process: not_implemented unconstrained-path: _process: not_implemented + path-setup-protocol: + _process: not_implemented signaling-protocols: _process: not_implemented rsvp-te: @@ -486,6 +562,8 @@ network-instances: _process: not_implemented restart-time: _process: not_implemented + state: + _process: not_implemented hellos: _process: not_implemented config: @@ -494,6 +572,8 @@ network-instances: _process: not_implemented refresh-reduction: _process: not_implemented + state: + _process: not_implemented soft-preemption: _process: not_implemented config: @@ -502,6 +582,10 @@ network-instances: _process: not_implemented soft-preemption-timeout: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented interface-attributes: _process: not_implemented interface: @@ -514,8 +598,12 @@ network-instances: _process: not_implemented enable: _process: not_implemented + state: + _process: not_implemented bandwidth-reservations: _process: not_implemented + bandwidth-reservation: + _process: not_implemented config: _process: not_implemented interface-id: @@ -528,6 +616,8 @@ network-instances: _process: not_implemented refresh-reduction: _process: not_implemented + state: + _process: not_implemented interface-id: _process: not_implemented interface-ref: @@ -538,6 +628,8 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented protection: _process: not_implemented config: @@ -546,20 +638,32 @@ network-instances: _process: not_implemented link-protection-style-requested: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented subscription: _process: not_implemented config: _process: not_implemented subscription: _process: not_implemented + state: + _process: not_implemented neighbors: _process: not_implemented + neighbor: + _process: not_implemented sessions: _process: not_implemented + session: + _process: not_implemented segment-routing: _process: not_implemented aggregate-sid-counters: _process: not_implemented + aggregate-sid-counter: + _process: not_implemented interfaces: _process: not_implemented interface: @@ -578,8 +682,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented sid-counters: _process: not_implemented + sid-counter: + _process: not_implemented + state: + _process: not_implemented te-global-attributes: _process: not_implemented mpls-admin-groups: @@ -594,6 +704,8 @@ network-instances: _process: not_implemented bit-position: _process: not_implemented + state: + _process: not_implemented srlgs: _process: not_implemented srlg: @@ -610,6 +722,8 @@ network-instances: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented static-srlg-members: _process: not_implemented members-list: @@ -622,6 +736,8 @@ network-instances: _process: not_implemented from-address: _process: not_implemented + state: + _process: not_implemented te-lsp-timers: _process: not_implemented config: @@ -632,6 +748,8 @@ network-instances: _process: not_implemented reoptimize-timer: _process: not_implemented + state: + _process: not_implemented te-interface-attributes: _process: not_implemented interface: @@ -662,6 +780,8 @@ network-instances: _process: not_implemented up-thresholds: _process: not_implemented + state: + _process: not_implemented interface-id: _process: not_implemented interface-ref: @@ -672,6 +792,10 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented policy-forwarding: @@ -696,6 +820,10 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented path-selection-groups: _process: not_implemented path-selection-group: @@ -708,6 +836,8 @@ network-instances: _process: not_implemented group-id: _process: not_implemented + state: + _process: not_implemented policies: _process: not_implemented policy: @@ -736,6 +866,8 @@ network-instances: _process: not_implemented path-selection-group: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented sequence-id: @@ -760,6 +892,8 @@ network-instances: _process: not_implemented source-ip-flow-label: _process: not_implemented + state: + _process: not_implemented l2: _process: not_implemented config: @@ -774,8 +908,12 @@ network-instances: _process: not_implemented source-mac-mask: _process: not_implemented + state: + _process: not_implemented sequence-id: _process: not_implemented + state: + _process: not_implemented transport: _process: not_implemented config: @@ -786,6 +924,10 @@ network-instances: _process: not_implemented tcp-flags: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented protocols: _process: not_implemented protocol: @@ -812,6 +954,8 @@ network-instances: _process: not_implemented enabled: _process: not_implemented + state: + _process: not_implemented ipv4-labeled-unicast: _process: not_implemented prefix-limit: @@ -826,6 +970,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv4-unicast: _process: not_implemented config: @@ -844,6 +990,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented ipv6-labeled-unicast: _process: not_implemented prefix-limit: @@ -858,6 +1008,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv6-unicast: _process: not_implemented config: @@ -876,6 +1028,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented l2vpn-evpn: _process: not_implemented prefix-limit: @@ -890,6 +1046,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l2vpn-vpls: _process: not_implemented prefix-limit: @@ -904,6 +1062,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-multicast: _process: not_implemented prefix-limit: @@ -918,6 +1078,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-unicast: _process: not_implemented prefix-limit: @@ -932,6 +1094,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-multicast: _process: not_implemented prefix-limit: @@ -946,6 +1110,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-unicast: _process: not_implemented prefix-limit: @@ -960,6 +1126,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented route-selection-options: _process: not_implemented config: @@ -976,6 +1144,10 @@ network-instances: _process: not_implemented ignore-next-hop-igp-metric: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -990,12 +1162,18 @@ network-instances: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented ibgp: _process: not_implemented config: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented confederation: _process: not_implemented config: @@ -1006,6 +1184,8 @@ network-instances: _process: not_implemented member-as: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented as: @@ -1020,6 +1200,8 @@ network-instances: _process: not_implemented internal-route-distance: _process: not_implemented + state: + _process: not_implemented dynamic-neighbor-prefixes: _process: not_implemented dynamic-neighbor-prefix: @@ -1032,6 +1214,8 @@ network-instances: _process: not_implemented prefix: _process: not_implemented + state: + _process: not_implemented graceful-restart: _process: not_implemented config: @@ -1044,6 +1228,8 @@ network-instances: _process: not_implemented stale-routes-time: _process: not_implemented + state: + _process: not_implemented route-selection-options: _process: not_implemented config: @@ -1060,6 +1246,10 @@ network-instances: _process: not_implemented ignore-next-hop-igp-metric: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1074,12 +1264,18 @@ network-instances: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented ibgp: _process: not_implemented config: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented neighbors: _process: not_implemented neighbor: @@ -1094,6 +1290,8 @@ network-instances: _process: not_implemented send-max: _process: not_implemented + state: + _process: not_implemented afi-safis: _process: not_implemented afi-safi: @@ -1112,6 +1310,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented afi-safi-name: @@ -1124,6 +1324,8 @@ network-instances: _process: not_implemented enabled: _process: not_implemented + state: + _process: not_implemented ipv4-labeled-unicast: _process: not_implemented prefix-limit: @@ -1138,6 +1340,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv4-unicast: _process: not_implemented config: @@ -1156,6 +1360,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented ipv6-labeled-unicast: _process: not_implemented prefix-limit: @@ -1170,6 +1378,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv6-unicast: _process: not_implemented config: @@ -1188,6 +1398,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented l2vpn-evpn: _process: not_implemented prefix-limit: @@ -1202,6 +1416,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l2vpn-vpls: _process: not_implemented prefix-limit: @@ -1216,6 +1432,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-multicast: _process: not_implemented prefix-limit: @@ -1230,6 +1448,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-unicast: _process: not_implemented prefix-limit: @@ -1244,6 +1464,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-multicast: _process: not_implemented prefix-limit: @@ -1258,6 +1480,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-unicast: _process: not_implemented prefix-limit: @@ -1272,6 +1496,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1284,6 +1512,10 @@ network-instances: _process: not_implemented allow-multiple-as: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented apply-policy: _process: not_implemented config: @@ -1296,6 +1528,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented as-path-options: _process: not_implemented config: @@ -1304,6 +1538,8 @@ network-instances: _process: not_implemented replace-peer-as: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented auth-password: @@ -1336,12 +1572,16 @@ network-instances: _process: not_implemented multihop-ttl: _process: not_implemented + state: + _process: not_implemented error-handling: _process: not_implemented config: _process: not_implemented treat-as-withdraw: _process: not_implemented + state: + _process: not_implemented graceful-restart: _process: not_implemented config: @@ -1354,12 +1594,16 @@ network-instances: _process: not_implemented stale-routes-time: _process: not_implemented + state: + _process: not_implemented logging-options: _process: not_implemented config: _process: not_implemented log-neighbor-state-changes: _process: not_implemented + state: + _process: not_implemented neighbor-address: _process: not_implemented route-reflector: @@ -1370,6 +1614,10 @@ network-instances: _process: not_implemented route-reflector-cluster-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -1382,6 +1630,8 @@ network-instances: _process: not_implemented minimum-advertisement-interval: _process: not_implemented + state: + _process: not_implemented transport: _process: not_implemented config: @@ -1394,6 +1644,8 @@ network-instances: _process: not_implemented tcp-mss: _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1406,6 +1658,10 @@ network-instances: _process: not_implemented allow-multiple-as: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented peer-groups: _process: not_implemented peer-group: @@ -1420,6 +1676,8 @@ network-instances: _process: not_implemented send-max: _process: not_implemented + state: + _process: not_implemented afi-safis: _process: not_implemented afi-safi: @@ -1438,6 +1696,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented afi-safi-name: @@ -1450,6 +1710,8 @@ network-instances: _process: not_implemented enabled: _process: not_implemented + state: + _process: not_implemented ipv4-labeled-unicast: _process: not_implemented prefix-limit: @@ -1464,6 +1726,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv4-unicast: _process: not_implemented config: @@ -1482,6 +1746,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented ipv6-labeled-unicast: _process: not_implemented prefix-limit: @@ -1496,6 +1764,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv6-unicast: _process: not_implemented config: @@ -1514,6 +1784,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented l2vpn-evpn: _process: not_implemented prefix-limit: @@ -1528,6 +1802,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l2vpn-vpls: _process: not_implemented prefix-limit: @@ -1542,6 +1818,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-multicast: _process: not_implemented prefix-limit: @@ -1556,6 +1834,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-unicast: _process: not_implemented prefix-limit: @@ -1570,6 +1850,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-multicast: _process: not_implemented prefix-limit: @@ -1584,6 +1866,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-unicast: _process: not_implemented prefix-limit: @@ -1598,6 +1882,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented route-selection-options: _process: not_implemented config: @@ -1614,6 +1900,10 @@ network-instances: _process: not_implemented ignore-next-hop-igp-metric: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1628,12 +1918,18 @@ network-instances: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented ibgp: _process: not_implemented config: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented apply-policy: _process: not_implemented config: @@ -1646,6 +1942,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented as-path-options: _process: not_implemented config: @@ -1654,6 +1952,8 @@ network-instances: _process: not_implemented replace-peer-as: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented auth-password: @@ -1682,12 +1982,16 @@ network-instances: _process: not_implemented multihop-ttl: _process: not_implemented + state: + _process: not_implemented error-handling: _process: not_implemented config: _process: not_implemented treat-as-withdraw: _process: not_implemented + state: + _process: not_implemented graceful-restart: _process: not_implemented config: @@ -1700,12 +2004,16 @@ network-instances: _process: not_implemented stale-routes-time: _process: not_implemented + state: + _process: not_implemented logging-options: _process: not_implemented config: _process: not_implemented log-neighbor-state-changes: _process: not_implemented + state: + _process: not_implemented peer-group-name: _process: not_implemented route-reflector: @@ -1716,6 +2024,10 @@ network-instances: _process: not_implemented route-reflector-cluster-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -1728,6 +2040,8 @@ network-instances: _process: not_implemented minimum-advertisement-interval: _process: not_implemented + state: + _process: not_implemented transport: _process: not_implemented config: @@ -1740,6 +2054,8 @@ network-instances: _process: not_implemented tcp-mss: _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1754,12 +2070,18 @@ network-instances: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented ibgp: _process: not_implemented config: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented default-metric: @@ -1800,8 +2122,12 @@ network-instances: _process: not_implemented safi-name: _process: not_implemented + state: + _process: not_implemented safi-name: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented authentication-check: @@ -1830,6 +2156,8 @@ network-instances: _process: not_implemented helper-only: _process: not_implemented + state: + _process: not_implemented igp-shortcuts: _process: not_implemented afi: @@ -1842,6 +2170,8 @@ network-instances: _process: not_implemented nh-type: _process: not_implemented + state: + _process: not_implemented inter-level-propagation-policies: _process: not_implemented level1-to-level2: @@ -1852,6 +2182,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented level2-to-level1: _process: not_implemented config: @@ -1860,6 +2192,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented lsp-bit: _process: not_implemented attached-bit: @@ -1870,6 +2204,8 @@ network-instances: _process: not_implemented suppress-bit: _process: not_implemented + state: + _process: not_implemented overload-bit: _process: not_implemented config: @@ -1892,6 +2228,10 @@ network-instances: _process: not_implemented reset-trigger: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented mpls: _process: not_implemented igp-ldp-sync: @@ -1902,18 +2242,24 @@ network-instances: _process: not_implemented post-session-up-delay: _process: not_implemented + state: + _process: not_implemented nsr: _process: not_implemented config: _process: not_implemented enabled: _process: not_implemented + state: + _process: not_implemented reference-bandwidth: _process: not_implemented config: _process: not_implemented reference-bandwidth: _process: not_implemented + state: + _process: not_implemented segment-routing: _process: not_implemented config: @@ -1924,6 +2270,10 @@ network-instances: _process: not_implemented srlb: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -1942,6 +2292,8 @@ network-instances: _process: not_implemented lsp-second-wait-interval: _process: not_implemented + state: + _process: not_implemented spf: _process: not_implemented config: @@ -1952,12 +2304,18 @@ network-instances: _process: not_implemented spf-second-interval: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented transport: _process: not_implemented config: _process: not_implemented lsp-mtu-size: _process: not_implemented + state: + _process: not_implemented interfaces: _process: not_implemented interface: @@ -1978,6 +2336,8 @@ network-instances: _process: not_implemented safi-name: _process: not_implemented + state: + _process: not_implemented authentication: _process: not_implemented config: @@ -1990,14 +2350,22 @@ network-instances: _process: not_implemented auth-password: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented bfd: _process: not_implemented config: _process: not_implemented bfd-tlv: _process: not_implemented + state: + _process: not_implemented circuit-counters: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented circuit-type: @@ -2020,10 +2388,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented levels: _process: not_implemented level: _process: not_implemented + adjacencies: + _process: not_implemented afi-safi: _process: not_implemented af: @@ -2062,6 +2434,8 @@ network-instances: _process: not_implemented sid-id: _process: not_implemented + state: + _process: not_implemented prefix-sids: _process: not_implemented prefix-sid: @@ -2076,6 +2450,10 @@ network-instances: _process: not_implemented prefix: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented enabled: @@ -2098,24 +2476,44 @@ network-instances: _process: not_implemented auth-password: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented level-number: _process: not_implemented packet-counters: _process: not_implemented cnsp: _process: not_implemented + state: + _process: not_implemented esh: _process: not_implemented + state: + _process: not_implemented iih: _process: not_implemented + state: + _process: not_implemented ish: _process: not_implemented + state: + _process: not_implemented lsp: _process: not_implemented + state: + _process: not_implemented psnp: _process: not_implemented + state: + _process: not_implemented unknown: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -2124,6 +2522,10 @@ network-instances: _process: not_implemented hello-multiplier: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -2132,6 +2534,8 @@ network-instances: _process: not_implemented lsp-pacing-interval: _process: not_implemented + state: + _process: not_implemented levels: _process: not_implemented level: @@ -2152,6 +2556,10 @@ network-instances: _process: not_implemented auth-password: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented authentication-check: @@ -2164,6 +2572,8 @@ network-instances: _process: not_implemented level-number: _process: not_implemented + link-state-database: + _process: not_implemented route-preference: _process: not_implemented config: @@ -2172,8 +2582,14 @@ network-instances: _process: not_implemented internal-route-preference: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented system-level-counters: _process: not_implemented + state: + _process: not_implemented traffic-engineering: _process: not_implemented config: @@ -2184,6 +2600,8 @@ network-instances: _process: not_implemented ipv6-router-id: _process: not_implemented + state: + _process: not_implemented local-aggregates: _process: not_implemented aggregate: @@ -2198,6 +2616,8 @@ network-instances: _process: not_implemented prefix: _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented ospfv2: @@ -2244,12 +2664,16 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented lsa-filter: _process: not_implemented config: _process: not_implemented all: _process: not_implemented + state: + _process: not_implemented mpls: _process: not_implemented config: @@ -2264,6 +2688,10 @@ network-instances: _process: not_implemented post-session-up-delay: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented neighbors: _process: not_implemented neighbor: @@ -2276,6 +2704,10 @@ network-instances: _process: not_implemented router-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -2286,12 +2718,20 @@ network-instances: _process: not_implemented retransmission-interval: _process: not_implemented + state: + _process: not_implemented + lsdb: + _process: not_implemented mpls: _process: not_implemented config: _process: not_implemented traffic-engineering-enabled: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented virtual-links: _process: not_implemented virtual-link: @@ -2302,6 +2742,8 @@ network-instances: _process: not_implemented remote-router-id: _process: not_implemented + state: + _process: not_implemented global: _process: not_implemented config: @@ -2324,6 +2766,8 @@ network-instances: _process: not_implemented helper-only: _process: not_implemented + state: + _process: not_implemented inter-area-propagation-policies: _process: not_implemented inter-area-propagation-policy: @@ -2342,6 +2786,8 @@ network-instances: _process: not_implemented src-area: _process: not_implemented + state: + _process: not_implemented mpls: _process: not_implemented config: @@ -2356,6 +2802,12 @@ network-instances: _process: not_implemented post-session-up-delay: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented lsa-generation: @@ -2366,6 +2818,8 @@ network-instances: _process: not_implemented maximum-delay: _process: not_implemented + state: + _process: not_implemented max-metric: _process: not_implemented config: @@ -2378,6 +2832,8 @@ network-instances: _process: not_implemented trigger: _process: not_implemented + state: + _process: not_implemented spf: _process: not_implemented config: @@ -2386,6 +2842,10 @@ network-instances: _process: not_implemented maximum-delay: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented static-routes: _process: not_implemented static: @@ -2420,8 +2880,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented prefix: _process: not_implemented + state: + _process: not_implemented segment-routing: _process: not_implemented srgbs: @@ -2440,6 +2906,8 @@ network-instances: _process: not_implemented local-id: _process: not_implemented + state: + _process: not_implemented srlbs: _process: not_implemented srlb: @@ -2456,6 +2924,10 @@ network-instances: _process: not_implemented local-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented table-connections: _process: not_implemented table-connection: @@ -2478,6 +2950,8 @@ network-instances: _process: not_implemented src-protocol: _process: not_implemented + state: + _process: not_implemented tables: _process: not_implemented table: @@ -2492,6 +2966,8 @@ network-instances: _process: not_implemented protocol: _process: not_implemented + state: + _process: not_implemented vlans: _process: not_implemented vlan: @@ -2508,5 +2984,9 @@ network-instances: _process: not_implemented members: _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented vlan-id: _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-platform-transceiver/transceiver.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-platform-transceiver/transceiver.yaml index 81fba0b2..4be0c01d 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-platform-transceiver/transceiver.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-platform-transceiver/transceiver.yaml @@ -28,3 +28,7 @@ transceiver: _process: not_implemented index: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-platform/components.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-platform/components.yaml index c3822090..b4e8a703 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-platform/components.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-platform/components.yaml @@ -24,6 +24,10 @@ components: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented subcomponents: _process: not_implemented subcomponent: @@ -34,3 +38,5 @@ components: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/routed-vlan.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/routed-vlan.yaml index e7b63048..43f344bf 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/routed-vlan.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/routed-vlan.yaml @@ -8,3 +8,5 @@ routed-vlan: _process: not_implemented vlan: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/switched-vlan.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/switched-vlan.yaml index 1c013c45..cd9c9fea 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/switched-vlan.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/switched-vlan.yaml @@ -14,3 +14,5 @@ switched-vlan: _process: not_implemented trunk-vlans: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/vlan.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/vlan.yaml index 247d5272..35bdadb3 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/vlan.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/vlan.yaml @@ -8,3 +8,5 @@ vlan: _process: not_implemented vlan-id: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/vlans.yaml b/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/vlans.yaml index 3c1c417c..8ace3077 100644 --- a/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/vlans.yaml +++ b/napalm_yang/mappings/dummy/parsers/config/openconfig-vlan/vlans.yaml @@ -18,5 +18,9 @@ vlans: _process: not_implemented members: _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented vlan-id: _process: not_implemented diff --git a/napalm_yang/mappings/dummy/parsers/state/openconfig-network-instance/network-instances.yaml b/napalm_yang/mappings/dummy/parsers/state/openconfig-network-instance/network-instances.yaml index b0e47566..54e273de 100644 --- a/napalm_yang/mappings/dummy/parsers/state/openconfig-network-instance/network-instances.yaml +++ b/napalm_yang/mappings/dummy/parsers/state/openconfig-network-instance/network-instances.yaml @@ -498,6 +498,8 @@ network-instances: _process: not_implemented unconstrained-path: _process: not_implemented + path-setup-protocol: + _process: not_implemented signaling-protocols: _process: not_implemented rsvp-te: diff --git a/napalm_yang/mappings/dummy/translators/openconfig-if-aggregate/aggregation.yaml b/napalm_yang/mappings/dummy/translators/openconfig-if-aggregate/aggregation.yaml index 04215d3a..78270f06 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-if-aggregate/aggregation.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-if-aggregate/aggregation.yaml @@ -10,3 +10,5 @@ aggregation: _process: not_implemented min-links: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-if-ethernet/ethernet.yaml b/napalm_yang/mappings/dummy/translators/openconfig-if-ethernet/ethernet.yaml index 19df1086..c1682bae 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-if-ethernet/ethernet.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-if-ethernet/ethernet.yaml @@ -16,3 +16,5 @@ ethernet: _process: not_implemented port-speed: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-if-ip-ext/autoconf.yaml b/napalm_yang/mappings/dummy/translators/openconfig-if-ip-ext/autoconf.yaml index 3031712e..9389d681 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-if-ip-ext/autoconf.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-if-ip-ext/autoconf.yaml @@ -14,3 +14,5 @@ autoconf: _process: not_implemented temporary-valid-lifetime: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-if-ip/ipv4.yaml b/napalm_yang/mappings/dummy/translators/openconfig-if-ip/ipv4.yaml index cfed01be..cd995614 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-if-ip/ipv4.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-if-ip/ipv4.yaml @@ -16,6 +16,8 @@ ipv4: _process: not_implemented ip: _process: not_implemented + state: + _process: not_implemented vrrp: _process: not_implemented vrrp-group: @@ -44,6 +46,10 @@ ipv4: _process: not_implemented track-interface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented virtual-router-id: _process: not_implemented config: @@ -64,6 +70,10 @@ ipv4: _process: not_implemented ip: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented unnumbered: _process: not_implemented config: @@ -78,3 +88,7 @@ ipv4: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-if-ip/ipv6.yaml b/napalm_yang/mappings/dummy/translators/openconfig-if-ip/ipv6.yaml index 80ccfe09..adbd06d4 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-if-ip/ipv6.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-if-ip/ipv6.yaml @@ -16,6 +16,8 @@ ipv6: _process: not_implemented ip: _process: not_implemented + state: + _process: not_implemented vrrp: _process: not_implemented vrrp-group: @@ -46,6 +48,10 @@ ipv6: _process: not_implemented track-interface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented virtual-router-id: _process: not_implemented config: @@ -68,6 +74,10 @@ ipv6: _process: not_implemented ip: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented unnumbered: _process: not_implemented config: @@ -82,3 +92,7 @@ ipv6: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/dummy/translators/openconfig-interfaces/interfaces.yaml index d5aa5eb1..f92d9638 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-interfaces/interfaces.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-interfaces/interfaces.yaml @@ -26,8 +26,12 @@ interfaces: _process: not_implemented up: _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented subinterfaces: _process: not_implemented subinterface: @@ -44,3 +48,5 @@ interfaces: _process: not_implemented index: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-network-instance/network-instances.yaml b/napalm_yang/mappings/dummy/translators/openconfig-network-instance/network-instances.yaml index fb4853f4..c3f45206 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-network-instance/network-instances.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-network-instance/network-instances.yaml @@ -30,6 +30,10 @@ network-instances: _process: not_implemented interface-ref: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented next-hops: _process: not_implemented next-hop: @@ -48,6 +52,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented description: @@ -98,6 +110,8 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented remote: _process: not_implemented config: @@ -106,6 +120,12 @@ network-instances: _process: not_implemented virtual-circuit-identifier: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented encapsulation: _process: not_implemented config: @@ -116,6 +136,8 @@ network-instances: _process: not_implemented label-allocation-mode: _process: not_implemented + state: + _process: not_implemented fdb: _process: not_implemented config: @@ -148,8 +170,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented mac-address: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented inter-instance-policies: _process: not_implemented apply-policy: @@ -164,6 +192,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented interfaces: _process: not_implemented interface: @@ -180,6 +210,8 @@ network-instances: _process: not_implemented id: _process: not_implemented + state: + _process: not_implemented mpls: _process: not_implemented global: @@ -208,6 +240,10 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented reserved-label-blocks: _process: not_implemented reserved-label-block: @@ -222,6 +258,10 @@ network-instances: _process: not_implemented local-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented lsps: _process: not_implemented constrained-path: @@ -252,8 +292,12 @@ network-instances: _process: not_implemented index: _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented tunnels: _process: not_implemented tunnel: @@ -284,6 +328,10 @@ network-instances: _process: not_implemented trigger-event-count: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented underflow: _process: not_implemented config: @@ -294,12 +342,16 @@ network-instances: _process: not_implemented underflow-threshold: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented set-bandwidth: _process: not_implemented specification-type: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented admin-status: @@ -354,6 +406,8 @@ network-instances: _process: not_implemented include-any-group: _process: not_implemented + state: + _process: not_implemented candidate-secondary-paths: _process: not_implemented candidate-secondary-path: @@ -366,6 +420,8 @@ network-instances: _process: not_implemented secondary-path: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented cspf-tiebreaker: @@ -390,6 +446,8 @@ network-instances: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented p2p-secondary-paths: _process: not_implemented p2p-secondary-path: @@ -404,6 +462,8 @@ network-instances: _process: not_implemented include-any-group: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented cspf-tiebreaker: @@ -428,6 +488,12 @@ network-instances: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented static-lsps: _process: not_implemented static-lsp: @@ -446,6 +512,8 @@ network-instances: _process: not_implemented push-label: _process: not_implemented + state: + _process: not_implemented ingress: _process: not_implemented config: @@ -456,8 +524,12 @@ network-instances: _process: not_implemented push-label: _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented transit: _process: not_implemented config: @@ -468,8 +540,12 @@ network-instances: _process: not_implemented push-label: _process: not_implemented + state: + _process: not_implemented unconstrained-path: _process: not_implemented + path-setup-protocol: + _process: not_implemented signaling-protocols: _process: not_implemented rsvp-te: @@ -486,6 +562,8 @@ network-instances: _process: not_implemented restart-time: _process: not_implemented + state: + _process: not_implemented hellos: _process: not_implemented config: @@ -494,6 +572,8 @@ network-instances: _process: not_implemented refresh-reduction: _process: not_implemented + state: + _process: not_implemented soft-preemption: _process: not_implemented config: @@ -502,6 +582,10 @@ network-instances: _process: not_implemented soft-preemption-timeout: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented interface-attributes: _process: not_implemented interface: @@ -514,8 +598,12 @@ network-instances: _process: not_implemented enable: _process: not_implemented + state: + _process: not_implemented bandwidth-reservations: _process: not_implemented + bandwidth-reservation: + _process: not_implemented config: _process: not_implemented interface-id: @@ -528,6 +616,8 @@ network-instances: _process: not_implemented refresh-reduction: _process: not_implemented + state: + _process: not_implemented interface-id: _process: not_implemented interface-ref: @@ -538,6 +628,8 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented protection: _process: not_implemented config: @@ -546,20 +638,32 @@ network-instances: _process: not_implemented link-protection-style-requested: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented subscription: _process: not_implemented config: _process: not_implemented subscription: _process: not_implemented + state: + _process: not_implemented neighbors: _process: not_implemented + neighbor: + _process: not_implemented sessions: _process: not_implemented + session: + _process: not_implemented segment-routing: _process: not_implemented aggregate-sid-counters: _process: not_implemented + aggregate-sid-counter: + _process: not_implemented interfaces: _process: not_implemented interface: @@ -578,8 +682,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented sid-counters: _process: not_implemented + sid-counter: + _process: not_implemented + state: + _process: not_implemented te-global-attributes: _process: not_implemented mpls-admin-groups: @@ -594,6 +704,8 @@ network-instances: _process: not_implemented bit-position: _process: not_implemented + state: + _process: not_implemented srlgs: _process: not_implemented srlg: @@ -610,6 +722,8 @@ network-instances: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented static-srlg-members: _process: not_implemented members-list: @@ -622,6 +736,8 @@ network-instances: _process: not_implemented from-address: _process: not_implemented + state: + _process: not_implemented te-lsp-timers: _process: not_implemented config: @@ -632,6 +748,8 @@ network-instances: _process: not_implemented reoptimize-timer: _process: not_implemented + state: + _process: not_implemented te-interface-attributes: _process: not_implemented interface: @@ -662,6 +780,8 @@ network-instances: _process: not_implemented up-thresholds: _process: not_implemented + state: + _process: not_implemented interface-id: _process: not_implemented interface-ref: @@ -672,6 +792,10 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented policy-forwarding: @@ -696,6 +820,10 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented path-selection-groups: _process: not_implemented path-selection-group: @@ -708,6 +836,8 @@ network-instances: _process: not_implemented group-id: _process: not_implemented + state: + _process: not_implemented policies: _process: not_implemented policy: @@ -736,6 +866,8 @@ network-instances: _process: not_implemented path-selection-group: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented sequence-id: @@ -760,6 +892,8 @@ network-instances: _process: not_implemented source-ip-flow-label: _process: not_implemented + state: + _process: not_implemented l2: _process: not_implemented config: @@ -774,8 +908,12 @@ network-instances: _process: not_implemented source-mac-mask: _process: not_implemented + state: + _process: not_implemented sequence-id: _process: not_implemented + state: + _process: not_implemented transport: _process: not_implemented config: @@ -786,6 +924,10 @@ network-instances: _process: not_implemented tcp-flags: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented protocols: _process: not_implemented protocol: @@ -812,6 +954,8 @@ network-instances: _process: not_implemented enabled: _process: not_implemented + state: + _process: not_implemented ipv4-labeled-unicast: _process: not_implemented prefix-limit: @@ -826,6 +970,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv4-unicast: _process: not_implemented config: @@ -844,6 +990,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented ipv6-labeled-unicast: _process: not_implemented prefix-limit: @@ -858,6 +1008,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv6-unicast: _process: not_implemented config: @@ -876,6 +1028,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented l2vpn-evpn: _process: not_implemented prefix-limit: @@ -890,6 +1046,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l2vpn-vpls: _process: not_implemented prefix-limit: @@ -904,6 +1062,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-multicast: _process: not_implemented prefix-limit: @@ -918,6 +1078,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-unicast: _process: not_implemented prefix-limit: @@ -932,6 +1094,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-multicast: _process: not_implemented prefix-limit: @@ -946,6 +1110,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-unicast: _process: not_implemented prefix-limit: @@ -960,6 +1126,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented route-selection-options: _process: not_implemented config: @@ -976,6 +1144,10 @@ network-instances: _process: not_implemented ignore-next-hop-igp-metric: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -990,12 +1162,18 @@ network-instances: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented ibgp: _process: not_implemented config: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented confederation: _process: not_implemented config: @@ -1006,6 +1184,8 @@ network-instances: _process: not_implemented member-as: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented as: @@ -1020,6 +1200,8 @@ network-instances: _process: not_implemented internal-route-distance: _process: not_implemented + state: + _process: not_implemented dynamic-neighbor-prefixes: _process: not_implemented dynamic-neighbor-prefix: @@ -1032,6 +1214,8 @@ network-instances: _process: not_implemented prefix: _process: not_implemented + state: + _process: not_implemented graceful-restart: _process: not_implemented config: @@ -1044,6 +1228,8 @@ network-instances: _process: not_implemented stale-routes-time: _process: not_implemented + state: + _process: not_implemented route-selection-options: _process: not_implemented config: @@ -1060,6 +1246,10 @@ network-instances: _process: not_implemented ignore-next-hop-igp-metric: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1074,12 +1264,18 @@ network-instances: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented ibgp: _process: not_implemented config: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented neighbors: _process: not_implemented neighbor: @@ -1094,6 +1290,8 @@ network-instances: _process: not_implemented send-max: _process: not_implemented + state: + _process: not_implemented afi-safis: _process: not_implemented afi-safi: @@ -1112,6 +1310,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented afi-safi-name: @@ -1124,6 +1324,8 @@ network-instances: _process: not_implemented enabled: _process: not_implemented + state: + _process: not_implemented ipv4-labeled-unicast: _process: not_implemented prefix-limit: @@ -1138,6 +1340,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv4-unicast: _process: not_implemented config: @@ -1156,6 +1360,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented ipv6-labeled-unicast: _process: not_implemented prefix-limit: @@ -1170,6 +1378,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv6-unicast: _process: not_implemented config: @@ -1188,6 +1398,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented l2vpn-evpn: _process: not_implemented prefix-limit: @@ -1202,6 +1416,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l2vpn-vpls: _process: not_implemented prefix-limit: @@ -1216,6 +1432,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-multicast: _process: not_implemented prefix-limit: @@ -1230,6 +1448,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-unicast: _process: not_implemented prefix-limit: @@ -1244,6 +1464,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-multicast: _process: not_implemented prefix-limit: @@ -1258,6 +1480,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-unicast: _process: not_implemented prefix-limit: @@ -1272,6 +1496,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1284,6 +1512,10 @@ network-instances: _process: not_implemented allow-multiple-as: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented apply-policy: _process: not_implemented config: @@ -1296,6 +1528,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented as-path-options: _process: not_implemented config: @@ -1304,6 +1538,8 @@ network-instances: _process: not_implemented replace-peer-as: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented auth-password: @@ -1336,12 +1572,16 @@ network-instances: _process: not_implemented multihop-ttl: _process: not_implemented + state: + _process: not_implemented error-handling: _process: not_implemented config: _process: not_implemented treat-as-withdraw: _process: not_implemented + state: + _process: not_implemented graceful-restart: _process: not_implemented config: @@ -1354,12 +1594,16 @@ network-instances: _process: not_implemented stale-routes-time: _process: not_implemented + state: + _process: not_implemented logging-options: _process: not_implemented config: _process: not_implemented log-neighbor-state-changes: _process: not_implemented + state: + _process: not_implemented neighbor-address: _process: not_implemented route-reflector: @@ -1370,6 +1614,10 @@ network-instances: _process: not_implemented route-reflector-cluster-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -1382,6 +1630,8 @@ network-instances: _process: not_implemented minimum-advertisement-interval: _process: not_implemented + state: + _process: not_implemented transport: _process: not_implemented config: @@ -1394,6 +1644,8 @@ network-instances: _process: not_implemented tcp-mss: _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1406,6 +1658,10 @@ network-instances: _process: not_implemented allow-multiple-as: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented peer-groups: _process: not_implemented peer-group: @@ -1420,6 +1676,8 @@ network-instances: _process: not_implemented send-max: _process: not_implemented + state: + _process: not_implemented afi-safis: _process: not_implemented afi-safi: @@ -1438,6 +1696,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented afi-safi-name: @@ -1450,6 +1710,8 @@ network-instances: _process: not_implemented enabled: _process: not_implemented + state: + _process: not_implemented ipv4-labeled-unicast: _process: not_implemented prefix-limit: @@ -1464,6 +1726,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv4-unicast: _process: not_implemented config: @@ -1482,6 +1746,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented ipv6-labeled-unicast: _process: not_implemented prefix-limit: @@ -1496,6 +1764,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented ipv6-unicast: _process: not_implemented config: @@ -1514,6 +1784,10 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented l2vpn-evpn: _process: not_implemented prefix-limit: @@ -1528,6 +1802,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l2vpn-vpls: _process: not_implemented prefix-limit: @@ -1542,6 +1818,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-multicast: _process: not_implemented prefix-limit: @@ -1556,6 +1834,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv4-unicast: _process: not_implemented prefix-limit: @@ -1570,6 +1850,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-multicast: _process: not_implemented prefix-limit: @@ -1584,6 +1866,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented l3vpn-ipv6-unicast: _process: not_implemented prefix-limit: @@ -1598,6 +1882,8 @@ network-instances: _process: not_implemented shutdown-threshold-pct: _process: not_implemented + state: + _process: not_implemented route-selection-options: _process: not_implemented config: @@ -1614,6 +1900,10 @@ network-instances: _process: not_implemented ignore-next-hop-igp-metric: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1628,12 +1918,18 @@ network-instances: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented ibgp: _process: not_implemented config: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented apply-policy: _process: not_implemented config: @@ -1646,6 +1942,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented as-path-options: _process: not_implemented config: @@ -1654,6 +1952,8 @@ network-instances: _process: not_implemented replace-peer-as: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented auth-password: @@ -1682,12 +1982,16 @@ network-instances: _process: not_implemented multihop-ttl: _process: not_implemented + state: + _process: not_implemented error-handling: _process: not_implemented config: _process: not_implemented treat-as-withdraw: _process: not_implemented + state: + _process: not_implemented graceful-restart: _process: not_implemented config: @@ -1700,12 +2004,16 @@ network-instances: _process: not_implemented stale-routes-time: _process: not_implemented + state: + _process: not_implemented logging-options: _process: not_implemented config: _process: not_implemented log-neighbor-state-changes: _process: not_implemented + state: + _process: not_implemented peer-group-name: _process: not_implemented route-reflector: @@ -1716,6 +2024,10 @@ network-instances: _process: not_implemented route-reflector-cluster-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -1728,6 +2040,8 @@ network-instances: _process: not_implemented minimum-advertisement-interval: _process: not_implemented + state: + _process: not_implemented transport: _process: not_implemented config: @@ -1740,6 +2054,8 @@ network-instances: _process: not_implemented tcp-mss: _process: not_implemented + state: + _process: not_implemented use-multiple-paths: _process: not_implemented config: @@ -1754,12 +2070,18 @@ network-instances: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented ibgp: _process: not_implemented config: _process: not_implemented maximum-paths: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented default-metric: @@ -1800,8 +2122,12 @@ network-instances: _process: not_implemented safi-name: _process: not_implemented + state: + _process: not_implemented safi-name: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented authentication-check: @@ -1830,6 +2156,8 @@ network-instances: _process: not_implemented helper-only: _process: not_implemented + state: + _process: not_implemented igp-shortcuts: _process: not_implemented afi: @@ -1842,6 +2170,8 @@ network-instances: _process: not_implemented nh-type: _process: not_implemented + state: + _process: not_implemented inter-level-propagation-policies: _process: not_implemented level1-to-level2: @@ -1852,6 +2182,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented level2-to-level1: _process: not_implemented config: @@ -1860,6 +2192,8 @@ network-instances: _process: not_implemented import-policy: _process: not_implemented + state: + _process: not_implemented lsp-bit: _process: not_implemented attached-bit: @@ -1870,6 +2204,8 @@ network-instances: _process: not_implemented suppress-bit: _process: not_implemented + state: + _process: not_implemented overload-bit: _process: not_implemented config: @@ -1892,6 +2228,10 @@ network-instances: _process: not_implemented reset-trigger: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented mpls: _process: not_implemented igp-ldp-sync: @@ -1902,18 +2242,24 @@ network-instances: _process: not_implemented post-session-up-delay: _process: not_implemented + state: + _process: not_implemented nsr: _process: not_implemented config: _process: not_implemented enabled: _process: not_implemented + state: + _process: not_implemented reference-bandwidth: _process: not_implemented config: _process: not_implemented reference-bandwidth: _process: not_implemented + state: + _process: not_implemented segment-routing: _process: not_implemented config: @@ -1924,6 +2270,10 @@ network-instances: _process: not_implemented srlb: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -1942,6 +2292,8 @@ network-instances: _process: not_implemented lsp-second-wait-interval: _process: not_implemented + state: + _process: not_implemented spf: _process: not_implemented config: @@ -1952,12 +2304,18 @@ network-instances: _process: not_implemented spf-second-interval: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented transport: _process: not_implemented config: _process: not_implemented lsp-mtu-size: _process: not_implemented + state: + _process: not_implemented interfaces: _process: not_implemented interface: @@ -1978,6 +2336,8 @@ network-instances: _process: not_implemented safi-name: _process: not_implemented + state: + _process: not_implemented authentication: _process: not_implemented config: @@ -1990,14 +2350,22 @@ network-instances: _process: not_implemented auth-password: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented bfd: _process: not_implemented config: _process: not_implemented bfd-tlv: _process: not_implemented + state: + _process: not_implemented circuit-counters: _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented circuit-type: @@ -2020,10 +2388,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented levels: _process: not_implemented level: _process: not_implemented + adjacencies: + _process: not_implemented afi-safi: _process: not_implemented af: @@ -2062,6 +2434,8 @@ network-instances: _process: not_implemented sid-id: _process: not_implemented + state: + _process: not_implemented prefix-sids: _process: not_implemented prefix-sid: @@ -2076,6 +2450,10 @@ network-instances: _process: not_implemented prefix: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented enabled: @@ -2098,24 +2476,44 @@ network-instances: _process: not_implemented auth-password: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented level-number: _process: not_implemented packet-counters: _process: not_implemented cnsp: _process: not_implemented + state: + _process: not_implemented esh: _process: not_implemented + state: + _process: not_implemented iih: _process: not_implemented + state: + _process: not_implemented ish: _process: not_implemented + state: + _process: not_implemented lsp: _process: not_implemented + state: + _process: not_implemented psnp: _process: not_implemented + state: + _process: not_implemented unknown: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -2124,6 +2522,10 @@ network-instances: _process: not_implemented hello-multiplier: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -2132,6 +2534,8 @@ network-instances: _process: not_implemented lsp-pacing-interval: _process: not_implemented + state: + _process: not_implemented levels: _process: not_implemented level: @@ -2152,6 +2556,10 @@ network-instances: _process: not_implemented auth-password: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented config: _process: not_implemented authentication-check: @@ -2164,6 +2572,8 @@ network-instances: _process: not_implemented level-number: _process: not_implemented + link-state-database: + _process: not_implemented route-preference: _process: not_implemented config: @@ -2172,8 +2582,14 @@ network-instances: _process: not_implemented internal-route-preference: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented system-level-counters: _process: not_implemented + state: + _process: not_implemented traffic-engineering: _process: not_implemented config: @@ -2184,6 +2600,8 @@ network-instances: _process: not_implemented ipv6-router-id: _process: not_implemented + state: + _process: not_implemented local-aggregates: _process: not_implemented aggregate: @@ -2198,6 +2616,8 @@ network-instances: _process: not_implemented prefix: _process: not_implemented + state: + _process: not_implemented name: _process: not_implemented ospfv2: @@ -2244,12 +2664,16 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented lsa-filter: _process: not_implemented config: _process: not_implemented all: _process: not_implemented + state: + _process: not_implemented mpls: _process: not_implemented config: @@ -2264,6 +2688,10 @@ network-instances: _process: not_implemented post-session-up-delay: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented neighbors: _process: not_implemented neighbor: @@ -2276,6 +2704,10 @@ network-instances: _process: not_implemented router-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented config: @@ -2286,12 +2718,20 @@ network-instances: _process: not_implemented retransmission-interval: _process: not_implemented + state: + _process: not_implemented + lsdb: + _process: not_implemented mpls: _process: not_implemented config: _process: not_implemented traffic-engineering-enabled: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented virtual-links: _process: not_implemented virtual-link: @@ -2302,6 +2742,8 @@ network-instances: _process: not_implemented remote-router-id: _process: not_implemented + state: + _process: not_implemented global: _process: not_implemented config: @@ -2324,6 +2766,8 @@ network-instances: _process: not_implemented helper-only: _process: not_implemented + state: + _process: not_implemented inter-area-propagation-policies: _process: not_implemented inter-area-propagation-policy: @@ -2342,6 +2786,8 @@ network-instances: _process: not_implemented src-area: _process: not_implemented + state: + _process: not_implemented mpls: _process: not_implemented config: @@ -2356,6 +2802,12 @@ network-instances: _process: not_implemented post-session-up-delay: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented timers: _process: not_implemented lsa-generation: @@ -2366,6 +2818,8 @@ network-instances: _process: not_implemented maximum-delay: _process: not_implemented + state: + _process: not_implemented max-metric: _process: not_implemented config: @@ -2378,6 +2832,8 @@ network-instances: _process: not_implemented trigger: _process: not_implemented + state: + _process: not_implemented spf: _process: not_implemented config: @@ -2386,6 +2842,10 @@ network-instances: _process: not_implemented maximum-delay: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented static-routes: _process: not_implemented static: @@ -2420,8 +2880,14 @@ network-instances: _process: not_implemented subinterface: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented prefix: _process: not_implemented + state: + _process: not_implemented segment-routing: _process: not_implemented srgbs: @@ -2440,6 +2906,8 @@ network-instances: _process: not_implemented local-id: _process: not_implemented + state: + _process: not_implemented srlbs: _process: not_implemented srlb: @@ -2456,6 +2924,10 @@ network-instances: _process: not_implemented local-id: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented table-connections: _process: not_implemented table-connection: @@ -2478,6 +2950,8 @@ network-instances: _process: not_implemented src-protocol: _process: not_implemented + state: + _process: not_implemented tables: _process: not_implemented table: @@ -2492,6 +2966,8 @@ network-instances: _process: not_implemented protocol: _process: not_implemented + state: + _process: not_implemented vlans: _process: not_implemented vlan: @@ -2508,5 +2984,9 @@ network-instances: _process: not_implemented members: _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented vlan-id: _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-platform-transceiver/transceiver.yaml b/napalm_yang/mappings/dummy/translators/openconfig-platform-transceiver/transceiver.yaml index 81fba0b2..4be0c01d 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-platform-transceiver/transceiver.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-platform-transceiver/transceiver.yaml @@ -28,3 +28,7 @@ transceiver: _process: not_implemented index: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-platform/components.yaml b/napalm_yang/mappings/dummy/translators/openconfig-platform/components.yaml index c3822090..b4e8a703 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-platform/components.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-platform/components.yaml @@ -24,6 +24,10 @@ components: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented subcomponents: _process: not_implemented subcomponent: @@ -34,3 +38,5 @@ components: _process: not_implemented name: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-vlan/routed-vlan.yaml b/napalm_yang/mappings/dummy/translators/openconfig-vlan/routed-vlan.yaml index e7b63048..43f344bf 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-vlan/routed-vlan.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-vlan/routed-vlan.yaml @@ -8,3 +8,5 @@ routed-vlan: _process: not_implemented vlan: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-vlan/switched-vlan.yaml b/napalm_yang/mappings/dummy/translators/openconfig-vlan/switched-vlan.yaml index 1c013c45..cd9c9fea 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-vlan/switched-vlan.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-vlan/switched-vlan.yaml @@ -14,3 +14,5 @@ switched-vlan: _process: not_implemented trunk-vlans: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-vlan/vlan.yaml b/napalm_yang/mappings/dummy/translators/openconfig-vlan/vlan.yaml index 247d5272..35bdadb3 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-vlan/vlan.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-vlan/vlan.yaml @@ -8,3 +8,5 @@ vlan: _process: not_implemented vlan-id: _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/dummy/translators/openconfig-vlan/vlans.yaml b/napalm_yang/mappings/dummy/translators/openconfig-vlan/vlans.yaml index 3c1c417c..8ace3077 100644 --- a/napalm_yang/mappings/dummy/translators/openconfig-vlan/vlans.yaml +++ b/napalm_yang/mappings/dummy/translators/openconfig-vlan/vlans.yaml @@ -18,5 +18,9 @@ vlans: _process: not_implemented members: _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented vlan-id: _process: not_implemented diff --git a/napalm_yang/mappings/eos/parsers/config/napalm-if-ip/secondary.yaml b/napalm_yang/mappings/eos/parsers/config/napalm-if-ip/secondary.yaml index ee334fbb..fb9e4c70 100644 --- a/napalm_yang/mappings/eos/parsers/config/napalm-if-ip/secondary.yaml +++ b/napalm_yang/mappings/eos/parsers/config/napalm-if-ip/secondary.yaml @@ -1,9 +1,9 @@ --- metadata: prefix: "napalm-ip" - processor: TextParser + processor: TextTree secondary: _process: - mode: value - value: "{{ extra_vars.secondary != None }}" + - mode: is_present + path: "secondary" diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-if-ethernet/ethernet.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-if-ethernet/ethernet.yaml new file mode 100644 index 00000000..0698ecc3 --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-if-ethernet/ethernet.yaml @@ -0,0 +1,21 @@ +--- +metadata: + prefix: "oc-ethernet" + processor: TextTree + +ethernet: + _process: unnecessary + config: + _process: unnecessary + auto-negotiate: + _process: not_implemented + duplex-mode: + _process: not_implemented + enable-flow-control: + _process: not_implemented + mac-address: + _process: not_implemented + port-speed: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-if-ip/ipv4.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-if-ip/ipv4.yaml index 8868a1e8..621d8d56 100644 --- a/napalm_yang/mappings/eos/parsers/config/openconfig-if-ip/ipv4.yaml +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-if-ip/ipv4.yaml @@ -1,6 +1,6 @@ --- metadata: - processor: TextParser + processor: TextTree ipv4: _process: unnecessary @@ -8,30 +8,26 @@ ipv4: _process: unnecessary enabled: _process: - mode: is_absent - regexp: "(?P^\\W*switchport$)" - from: "{{ bookmarks['parent'] }}" + - mode: is_absent + path: "switchport" mtu: _process: not_implemented addresses: _process: unnecessary address: _process: - mode: block - regexp: "(?Pip address (?P(?P.*))\\/(?P\\d+))(?P secondary)*" - from: "{{ bookmarks['parent'] }}" + - path: "ip.address" + regexp: "(?P(?P.*))\\/(?P\\d+)" ip: _process: unnecessary config: _process: unnecessary ip: _process: - mode: value - value: "{{ extra_vars.ip }}" + - value: "{{ extra_vars.address.ip }}" prefix-length: _process: - mode: value - value: "{{ extra_vars.prefix }}" + - value: "{{ extra_vars.address.prefix }}" vrrp: _process: not_implemented vrrp-group: diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-interfaces/interfaces.yaml index 483ed670..28dbd4e5 100644 --- a/napalm_yang/mappings/eos/parsers/config/openconfig-interfaces/interfaces.yaml +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-interfaces/interfaces.yaml @@ -1,17 +1,17 @@ --- metadata: - processor: TextParser + processor: TextTree execute: - method: cli - args: + kwargs: commands: ["show running-config all"] interfaces: _process: unnecessary interface: _process: - mode: block - regexp: "(?Pinterface (?P(\\w|-)*\\d+)\n(?:.|\n)*?^!$)" - from: "{{ bookmarks.interfaces.0 }}" + - path: interface + regexp: "^(?P(\\w|-)*\\d+(\\/\\d+)*)$" + from: root_interfaces.0 name: _process: unnecessary hold-time: @@ -28,37 +28,32 @@ interfaces: _process: unnecessary type: _process: - mode: map - regexp: "(?P(\\w|-)*)\\d+" - from: "{{ interface_key }}" - map: - Ethernet: ethernetCsmacd - Management: ethernetCsmacd - Loopback: softwareLoopback - Port-Channel: ieee8023adLag - Vlan: l3ipvlan + - mode: map + value: "{{ interface_key }}" + regexp: "(?P(\\w|-)*)\\d+" + map: + ethernet: ethernetCsmacd + management: ethernetCsmacd + loopback: softwareLoopback + port-channel: ieee8023adLag + vlan: l3ipvlan enabled: _process: - mode: is_present - regexp: "(?Pno shutdown)" - from: "{{ bookmarks.interface[interface_key] }}" + - mode: is_absent + path: "shutdown" description: _process: - mode: search - regexp: "description (?P.*)" - from: "{{ bookmarks.interface[interface_key] }}" + - path: description mtu: _process: - mode: search - regexp: "mtu (?P[0-9]+)" - from: "{{ bookmarks.interface[interface_key] }}" + - path: mtu subinterfaces: _process: unnecessary subinterface: _process: - mode: block - regexp: "(?Pinterface {{interface_key}}\\.(?P\\d+)\\n(?:.|\\n)*?^!$)" - from: "{{ bookmarks.interfaces.0 }}" + - path: interface + regexp: "{{interface_key}}\\.(?P\\d+)" + from: root_interfaces.0 index: _process: unnecessary config: @@ -67,15 +62,11 @@ interfaces: _process: unnecessary name: _process: - mode: value - value: "{{ interface_key }}.{{ subinterface_key}}" + - value: "{{ interface_key }}.{{ subinterface_key}}" enabled: _process: - mode: is_present - regexp: "(?Pno shutdown)" - from: "{{ bookmarks.subinterface[subinterface_key] }}" + - mode: is_absent + path: "shutdown" description: _process: - mode: search - regexp: "description (?P.*)" - from: "{{ bookmarks.subinterface[subinterface_key] }}" + - path: description diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/afts.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/afts.yaml new file mode 100644 index 00000000..bd462863 --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/afts.yaml @@ -0,0 +1,54 @@ +_process: not_implemented +aft: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + entries: + _process: not_implemented + entry: + _process: not_implemented + config: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + match: + _process: not_implemented + interface-ref: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + next-hops: + _process: not_implemented + next-hop: + _process: not_implemented + config: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/bgp.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/bgp.yaml new file mode 100644 index 00000000..4da03585 --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/bgp.yaml @@ -0,0 +1,1164 @@ +--- +_process: + - mode: gate + when: "{{ protocol_key != 'bgp bgp' }}" +global: + _process: unnecessary + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + confederation: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + identifier: + _process: not_implemented + member-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: unnecessary + as: + _process: + - path: local-as + - path: process_id + router-id: + _process: + - path: router-id + default-route-distance: + _process: not_implemented + config: + _process: not_implemented + external-route-distance: + _process: not_implemented + internal-route-distance: + _process: not_implemented + state: + _process: not_implemented + dynamic-neighbor-prefixes: + _process: not_implemented + dynamic-neighbor-prefix: + _process: not_implemented + config: + _process: not_implemented + peer-group: + _process: not_implemented + prefix: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +neighbors: + _process: unnecessary + neighbor: + _process: + - path: neighbor + add-paths: + _process: not_implemented + config: + _process: not_implemented + eligible-prefix-policy: + _process: not_implemented + receive: + _process: not_implemented + send-max: + _process: not_implemented + state: + _process: not_implemented + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + as-path-options: + _process: not_implemented + config: + _process: not_implemented + allow-own-as: + _process: not_implemented + replace-peer-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: unnecessary + auth-password: + _process: not_implemented + description: + _process: + - path: description + enabled: + _process: + - mode: is_absent + path: shutdown + local-as: + _process: + - path: "local-as" + regexp: "(?P\\d+)" + neighbor-address: + _process: + - value: "{{ neighbor_key }}" + peer-as: + _process: + - path: remote-as + peer-group: + _process: not_implemented + peer-type: + _process: not_implemented + remove-private-as: + _process: not_implemented + route-flap-damping: + _process: not_implemented + send-community: + _process: not_implemented + ebgp-multihop: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + multihop-ttl: + _process: not_implemented + state: + _process: not_implemented + error-handling: + _process: not_implemented + config: + _process: not_implemented + treat-as-withdraw: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + logging-options: + _process: not_implemented + config: + _process: not_implemented + log-neighbor-state-changes: + _process: not_implemented + state: + _process: not_implemented + neighbor-address: + _process: not_implemented + route-reflector: + _process: not_implemented + config: + _process: not_implemented + route-reflector-client: + _process: not_implemented + route-reflector-cluster-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + connect-retry: + _process: not_implemented + hold-time: + _process: not_implemented + keepalive-interval: + _process: not_implemented + minimum-advertisement-interval: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + local-address: + _process: not_implemented + mtu-discovery: + _process: not_implemented + passive-mode: + _process: not_implemented + tcp-mss: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +peer-groups: + _process: not_implemented + peer-group: + _process: not_implemented + add-paths: + _process: not_implemented + config: + _process: not_implemented + eligible-prefix-policy: + _process: not_implemented + receive: + _process: not_implemented + send-max: + _process: not_implemented + state: + _process: not_implemented + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + as-path-options: + _process: not_implemented + config: + _process: not_implemented + allow-own-as: + _process: not_implemented + replace-peer-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + description: + _process: not_implemented + local-as: + _process: not_implemented + peer-as: + _process: not_implemented + peer-group-name: + _process: not_implemented + peer-type: + _process: not_implemented + remove-private-as: + _process: not_implemented + route-flap-damping: + _process: not_implemented + send-community: + _process: not_implemented + ebgp-multihop: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + multihop-ttl: + _process: not_implemented + state: + _process: not_implemented + error-handling: + _process: not_implemented + config: + _process: not_implemented + treat-as-withdraw: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + logging-options: + _process: not_implemented + config: + _process: not_implemented + log-neighbor-state-changes: + _process: not_implemented + state: + _process: not_implemented + peer-group-name: + _process: not_implemented + route-reflector: + _process: not_implemented + config: + _process: not_implemented + route-reflector-client: + _process: not_implemented + route-reflector-cluster-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + connect-retry: + _process: not_implemented + hold-time: + _process: not_implemented + keepalive-interval: + _process: not_implemented + minimum-advertisement-interval: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + local-address: + _process: not_implemented + mtu-discovery: + _process: not_implemented + passive-mode: + _process: not_implemented + tcp-mss: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/isis.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/isis.yaml new file mode 100644 index 00000000..463623fd --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/isis.yaml @@ -0,0 +1,508 @@ +--- +_process: not_implemented +global: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + metric: + _process: not_implemented + safi-name: + _process: not_implemented + multi-topology: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + authentication-check: + _process: not_implemented + fast-flooding: + _process: not_implemented + iid-tlv: + _process: not_implemented + instance: + _process: not_implemented + level-capability: + _process: not_implemented + max-ecmp-paths: + _process: not_implemented + maximum-area-addresses: + _process: not_implemented + net: + _process: not_implemented + poi-tlv: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + state: + _process: not_implemented + igp-shortcuts: + _process: not_implemented + afi: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + nh-type: + _process: not_implemented + state: + _process: not_implemented + inter-level-propagation-policies: + _process: not_implemented + level1-to-level2: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + level2-to-level1: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + lsp-bit: + _process: not_implemented + attached-bit: + _process: not_implemented + config: + _process: not_implemented + ignore-bit: + _process: not_implemented + suppress-bit: + _process: not_implemented + state: + _process: not_implemented + overload-bit: + _process: not_implemented + config: + _process: not_implemented + advertise-high-metric: + _process: not_implemented + set-bit: + _process: not_implemented + set-bit-on-boot: + _process: not_implemented + reset-triggers: + _process: not_implemented + reset-trigger: + _process: not_implemented + config: + _process: not_implemented + delay: + _process: not_implemented + reset-trigger: + _process: not_implemented + reset-trigger: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + nsr: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + reference-bandwidth: + _process: not_implemented + config: + _process: not_implemented + reference-bandwidth: + _process: not_implemented + state: + _process: not_implemented + segment-routing: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + srgb: + _process: not_implemented + srlb: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + lsp-lifetime-interval: + _process: not_implemented + lsp-refresh-interval: + _process: not_implemented + lsp-generation: + _process: not_implemented + config: + _process: not_implemented + lsp-first-wait-interval: + _process: not_implemented + lsp-max-wait-interval: + _process: not_implemented + lsp-second-wait-interval: + _process: not_implemented + state: + _process: not_implemented + spf: + _process: not_implemented + config: + _process: not_implemented + spf-first-interval: + _process: not_implemented + spf-hold-interval: + _process: not_implemented + spf-second-interval: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + lsp-mtu-size: + _process: not_implemented + state: + _process: not_implemented +interfaces: + _process: not_implemented + interface: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + safi-name: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + hello-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + bfd: + _process: not_implemented + config: + _process: not_implemented + bfd-tlv: + _process: not_implemented + state: + _process: not_implemented + circuit-counters: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + circuit-type: + _process: not_implemented + enabled: + _process: not_implemented + hello-padding: + _process: not_implemented + interface-id: + _process: not_implemented + passive: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + levels: + _process: not_implemented + level: + _process: not_implemented + adjacencies: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + metric: + _process: not_implemented + safi-name: + _process: not_implemented + safi-name: + _process: not_implemented + segment-routing: + _process: not_implemented + adjacency-sids: + _process: not_implemented + adjacency-sid: + _process: not_implemented + config: + _process: not_implemented + group: + _process: not_implemented + neighbor: + _process: not_implemented + protection-eligible: + _process: not_implemented + sid-id: + _process: not_implemented + neighbor: + _process: not_implemented + sid-id: + _process: not_implemented + state: + _process: not_implemented + prefix-sids: + _process: not_implemented + prefix-sid: + _process: not_implemented + config: + _process: not_implemented + label-options: + _process: not_implemented + prefix: + _process: not_implemented + sid-id: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + level-number: + _process: not_implemented + passive: + _process: not_implemented + priority: + _process: not_implemented + hello-authentication: + _process: not_implemented + config: + _process: not_implemented + hello-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + level-number: + _process: not_implemented + packet-counters: + _process: not_implemented + cnsp: + _process: not_implemented + state: + _process: not_implemented + esh: + _process: not_implemented + state: + _process: not_implemented + iih: + _process: not_implemented + state: + _process: not_implemented + ish: + _process: not_implemented + state: + _process: not_implemented + lsp: + _process: not_implemented + state: + _process: not_implemented + psnp: + _process: not_implemented + state: + _process: not_implemented + unknown: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + hello-multiplier: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + csnp-interval: + _process: not_implemented + lsp-pacing-interval: + _process: not_implemented + state: + _process: not_implemented +levels: + _process: not_implemented + level: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + csnp-authentication: + _process: not_implemented + lsp-authentication: + _process: not_implemented + psnp-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + authentication-check: + _process: not_implemented + enabled: + _process: not_implemented + level-number: + _process: not_implemented + metric-style: + _process: not_implemented + level-number: + _process: not_implemented + link-state-database: + _process: not_implemented + route-preference: + _process: not_implemented + config: + _process: not_implemented + external-route-preference: + _process: not_implemented + internal-route-preference: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + system-level-counters: + _process: not_implemented + state: + _process: not_implemented + traffic-engineering: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ipv4-router-id: + _process: not_implemented + ipv6-router-id: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/mpls.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/mpls.yaml new file mode 100644 index 00000000..ba853c58 --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/mpls.yaml @@ -0,0 +1,584 @@ +--- +_process: not_implemented +global: + _process: not_implemented + config: + _process: not_implemented + null-label: + _process: not_implemented + interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + mpls-enabled: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + reserved-label-blocks: + _process: not_implemented + reserved-label-block: + _process: not_implemented + config: + _process: not_implemented + local-id: + _process: not_implemented + lower-bound: + _process: not_implemented + upper-bound: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +lsps: + _process: not_implemented + constrained-path: + _process: not_implemented + named-explicit-paths: + _process: not_implemented + named-explicit-path: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + sid-protection-required: + _process: not_implemented + sid-selection-mode: + _process: not_implemented + explicit-route-objects: + _process: not_implemented + explicit-route-object: + _process: not_implemented + config: + _process: not_implemented + address: + _process: not_implemented + hop-type: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + state: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + tunnels: + _process: not_implemented + tunnel: + _process: not_implemented + bandwidth: + _process: not_implemented + auto-bandwidth: + _process: not_implemented + config: + _process: not_implemented + adjust-interval: + _process: not_implemented + adjust-threshold: + _process: not_implemented + enabled: + _process: not_implemented + max-bw: + _process: not_implemented + min-bw: + _process: not_implemented + overflow: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + overflow-threshold: + _process: not_implemented + trigger-event-count: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + underflow: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + trigger-event-count: + _process: not_implemented + underflow-threshold: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + set-bandwidth: + _process: not_implemented + specification-type: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + admin-status: + _process: not_implemented + description: + _process: not_implemented + hold-priority: + _process: not_implemented + metric: + _process: not_implemented + metric-type: + _process: not_implemented + name: + _process: not_implemented + preference: + _process: not_implemented + protection-style-requested: + _process: not_implemented + reoptimize-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + shortcut-eligible: + _process: not_implemented + signaling-protocol: + _process: not_implemented + soft-preemption: + _process: not_implemented + source: + _process: not_implemented + type: + _process: not_implemented + name: + _process: not_implemented + p2p-tunnel-attributes: + _process: not_implemented + config: + _process: not_implemented + destination: + _process: not_implemented + p2p-primary-path: + _process: not_implemented + p2p-primary-path: + _process: not_implemented + admin-groups: + _process: not_implemented + config: + _process: not_implemented + exclude-group: + _process: not_implemented + include-all-group: + _process: not_implemented + include-any-group: + _process: not_implemented + state: + _process: not_implemented + candidate-secondary-paths: + _process: not_implemented + candidate-secondary-path: + _process: not_implemented + config: + _process: not_implemented + priority: + _process: not_implemented + secondary-path: + _process: not_implemented + secondary-path: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + cspf-tiebreaker: + _process: not_implemented + explicit-path-name: + _process: not_implemented + hold-priority: + _process: not_implemented + name: + _process: not_implemented + path-computation-method: + _process: not_implemented + path-computation-server: + _process: not_implemented + preference: + _process: not_implemented + retry-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + use-cspf: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + p2p-secondary-paths: + _process: not_implemented + p2p-secondary-path: + _process: not_implemented + admin-groups: + _process: not_implemented + config: + _process: not_implemented + exclude-group: + _process: not_implemented + include-all-group: + _process: not_implemented + include-any-group: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + cspf-tiebreaker: + _process: not_implemented + explicit-path-name: + _process: not_implemented + hold-priority: + _process: not_implemented + name: + _process: not_implemented + path-computation-method: + _process: not_implemented + path-computation-server: + _process: not_implemented + preference: + _process: not_implemented + retry-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + use-cspf: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + static-lsps: + _process: not_implemented + static-lsp: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + egress: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + ingress: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + transit: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + unconstrained-path: + _process: not_implemented + path-setup-protocol: + _process: not_implemented +signaling-protocols: + _process: not_implemented + rsvp-te: + _process: not_implemented + global: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enable: + _process: not_implemented + recovery-time: + _process: not_implemented + restart-time: + _process: not_implemented + state: + _process: not_implemented + hellos: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + refresh-reduction: + _process: not_implemented + state: + _process: not_implemented + soft-preemption: + _process: not_implemented + config: + _process: not_implemented + enable: + _process: not_implemented + soft-preemption-timeout: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + authentication-key: + _process: not_implemented + enable: + _process: not_implemented + state: + _process: not_implemented + bandwidth-reservations: + _process: not_implemented + bandwidth-reservation: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + hellos: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + refresh-reduction: + _process: not_implemented + state: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + protection: + _process: not_implemented + config: + _process: not_implemented + bypass-optimize-interval: + _process: not_implemented + link-protection-style-requested: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + subscription: + _process: not_implemented + config: + _process: not_implemented + subscription: + _process: not_implemented + state: + _process: not_implemented + neighbors: + _process: not_implemented + neighbor: + _process: not_implemented + sessions: + _process: not_implemented + session: + _process: not_implemented + segment-routing: + _process: not_implemented + aggregate-sid-counters: + _process: not_implemented + aggregate-sid-counter: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + sid-counters: + _process: not_implemented + sid-counter: + _process: not_implemented + state: + _process: not_implemented +te-global-attributes: + _process: not_implemented + mpls-admin-groups: + _process: not_implemented + admin-group: + _process: not_implemented + admin-group-name: + _process: not_implemented + config: + _process: not_implemented + admin-group-name: + _process: not_implemented + bit-position: + _process: not_implemented + state: + _process: not_implemented + srlgs: + _process: not_implemented + srlg: + _process: not_implemented + config: + _process: not_implemented + cost: + _process: not_implemented + flooding-type: + _process: not_implemented + name: + _process: not_implemented + value: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + static-srlg-members: + _process: not_implemented + members-list: + _process: not_implemented + config: + _process: not_implemented + from-address: + _process: not_implemented + to-address: + _process: not_implemented + from-address: + _process: not_implemented + state: + _process: not_implemented + te-lsp-timers: + _process: not_implemented + config: + _process: not_implemented + cleanup-delay: + _process: not_implemented + install-delay: + _process: not_implemented + reoptimize-timer: + _process: not_implemented + state: + _process: not_implemented +te-interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + admin-group: + _process: not_implemented + interface-id: + _process: not_implemented + srlg-membership: + _process: not_implemented + te-metric: + _process: not_implemented + igp-flooding-bandwidth: + _process: not_implemented + config: + _process: not_implemented + delta-percentage: + _process: not_implemented + down-thresholds: + _process: not_implemented + threshold-specification: + _process: not_implemented + threshold-type: + _process: not_implemented + up-down-thresholds: + _process: not_implemented + up-thresholds: + _process: not_implemented + state: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/ospfv2.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/ospfv2.yaml new file mode 100644 index 00000000..adf0afef --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/ospfv2.yaml @@ -0,0 +1,224 @@ +--- +_process: not_implemented +areas: + _process: not_implemented + area: + _process: not_implemented + config: + _process: not_implemented + identifier: + _process: not_implemented + identifier: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + authentication-type: + _process: not_implemented + hide-network: + _process: not_implemented + id: + _process: not_implemented + metric: + _process: not_implemented + multi-area-adjacency-primary: + _process: not_implemented + network-type: + _process: not_implemented + passive: + _process: not_implemented + priority: + _process: not_implemented + id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + lsa-filter: + _process: not_implemented + config: + _process: not_implemented + all: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-metric: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + neighbors: + _process: not_implemented + neighbor: + _process: not_implemented + config: + _process: not_implemented + metric: + _process: not_implemented + router-id: + _process: not_implemented + router-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + dead-interval: + _process: not_implemented + hello-interval: + _process: not_implemented + retransmission-interval: + _process: not_implemented + state: + _process: not_implemented + lsdb: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-enabled: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + virtual-links: + _process: not_implemented + virtual-link: + _process: not_implemented + config: + _process: not_implemented + remote-router-id: + _process: not_implemented + remote-router-id: + _process: not_implemented + state: + _process: not_implemented +global: + _process: not_implemented + config: + _process: not_implemented + hide-transit-only-networks: + _process: not_implemented + igp-shortcuts: + _process: not_implemented + log-adjacency-changes: + _process: not_implemented + router-id: + _process: not_implemented + summary-route-cost-mode: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + state: + _process: not_implemented + inter-area-propagation-policies: + _process: not_implemented + inter-area-propagation-policy: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + dst-area: + _process: not_implemented + import-policy: + _process: not_implemented + src-area: + _process: not_implemented + dst-area: + _process: not_implemented + src-area: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-extensions: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + lsa-generation: + _process: not_implemented + config: + _process: not_implemented + initial-delay: + _process: not_implemented + maximum-delay: + _process: not_implemented + state: + _process: not_implemented + max-metric: + _process: not_implemented + config: + _process: not_implemented + include: + _process: not_implemented + set: + _process: not_implemented + timeout: + _process: not_implemented + trigger: + _process: not_implemented + state: + _process: not_implemented + spf: + _process: not_implemented + config: + _process: not_implemented + initial-delay: + _process: not_implemented + maximum-delay: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/static_routes.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/static_routes.yaml new file mode 100644 index 00000000..e7bb4975 --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/includes/static_routes.yaml @@ -0,0 +1,54 @@ +--- +_process: + - mode: gate + when: "{{ protocol_key != 'static static' }}" +static: + _process: + - path: "" + regexp: "(?P^\\d+\\.\\d+\\.\\d+\\.\\d+\\/\\d+)" + when: "{{ network_instance_key == 'global' }}" + - path: "vrf.{{ network_instance_key }}" + when: "{{ network_instance_key != 'global' }}" + config: + _process: unnecessary + prefix: + _process: + - value: "{{ static_key }}" + set-tag: + _process: not_implemented + next-hops: + _process: unnecessary + next-hop: + _process: + - path: "" + config: + _process: unnecessary + index: + _process: not_implemented + metric: + _process: + - regexp: "(?P\\d+)" + next-hop: + _process: + - value: "{{ next_hop_key }}" + recurse: + _process: not_implemented + index: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/network-instances.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/network-instances.yaml new file mode 100644 index 00000000..9c6270c1 --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-network-instance/network-instances.yaml @@ -0,0 +1,467 @@ +--- +metadata: + processor: TextTree + execute: + - method: cli + kwargs: + commands: ["show running-config all"] + +network-instances: + _process: unnecessary + network-instance: + _process: + - mode: manual + key: "global" + block: {} + extra_vars: {} + - path: vrf.definition + from: root_network-instances.0 + afts: !include includes/afts.yaml + config: + _process: unnecessary + description: + _process: + - path: "description" + enabled: + _process: + - value: "true" + enabled-address-families: + _process: not_implemented + mtu: + _process: not_implemented + name: + _process: unnecessary + route-distinguisher: + _process: + - path: "rd" + router-id: + _process: not_implemented + type: + _process: + - value: DEFAULT_INSTANCE + when: "{{ network_instance_key == 'global' }}" + - value: L3VRF + when: "{{ network_instance_key != 'global' }}" + connection-points: + _process: not_implemented + connection-point: + _process: not_implemented + config: + _process: not_implemented + connection-point-id: + _process: not_implemented + connection-point-id: + _process: not_implemented + endpoints: + _process: not_implemented + endpoint: + _process: not_implemented + config: + _process: not_implemented + endpoint-id: + _process: not_implemented + precedence: + _process: not_implemented + type: + _process: not_implemented + endpoint-id: + _process: not_implemented + local: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + remote: + _process: not_implemented + config: + _process: not_implemented + remote-system: + _process: not_implemented + virtual-circuit-identifier: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + encapsulation: + _process: not_implemented + config: + _process: not_implemented + control-word: + _process: not_implemented + encapsulation-type: + _process: not_implemented + label-allocation-mode: + _process: not_implemented + state: + _process: not_implemented + fdb: + _process: not_implemented + config: + _process: not_implemented + mac-aging-time: + _process: not_implemented + mac-learning: + _process: not_implemented + maximum-entries: + _process: not_implemented + mac-table: + _process: not_implemented + entries: + _process: not_implemented + entry: + _process: not_implemented + config: + _process: not_implemented + mac-address: + _process: not_implemented + vlan: + _process: not_implemented + interface: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + mac-address: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + inter-instance-policies: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + interfaces: + _process: unnecessary + interface: + _process: not_implemented + config: + _process: not_implemented + associated-address-families: + _process: not_implemented + id: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + id: + _process: not_implemented + state: + _process: not_implemented + mpls: !include includes/mpls.yaml + name: + _process: not_implemented + policy-forwarding: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + apply-forwarding-policy: + _process: not_implemented + interface-id: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + path-selection-groups: + _process: not_implemented + path-selection-group: + _process: not_implemented + config: + _process: not_implemented + group-id: + _process: not_implemented + mpls-lsp: + _process: not_implemented + group-id: + _process: not_implemented + state: + _process: not_implemented + policies: + _process: not_implemented + policy: + _process: not_implemented + config: + _process: not_implemented + policy-id: + _process: not_implemented + policy-id: + _process: not_implemented + rules: + _process: not_implemented + rule: + _process: not_implemented + action: + _process: not_implemented + config: + _process: not_implemented + decapsulate-gre: + _process: not_implemented + discard: + _process: not_implemented + network-instance: + _process: not_implemented + next-hop: + _process: not_implemented + path-selection-group: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + sequence-id: + _process: not_implemented + ip: + _process: not_implemented + config: + _process: not_implemented + destination-ip-address: + _process: not_implemented + destination-ip-flow-label: + _process: not_implemented + dscp: + _process: not_implemented + hop-limit: + _process: not_implemented + ip-version: + _process: not_implemented + protocol: + _process: not_implemented + source-ip-address: + _process: not_implemented + source-ip-flow-label: + _process: not_implemented + state: + _process: not_implemented + l2: + _process: not_implemented + config: + _process: not_implemented + destination-mac: + _process: not_implemented + destination-mac-mask: + _process: not_implemented + ethertype: + _process: not_implemented + source-mac: + _process: not_implemented + source-mac-mask: + _process: not_implemented + state: + _process: not_implemented + sequence-id: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + destination-port: + _process: not_implemented + source-port: + _process: not_implemented + tcp-flags: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + protocols: + _process: unnecessary + protocol: + _process: + - path: "router.?protocol.?process_id" + from: root_network-instances.0 + regexp: "(?Pbgp bgp)" + key: "{{ protocol }} {{ protocol }}" + when: "{{ network_instance_key == 'global' }}" + - path: "router.?protocol.?process_id.vrf.{{ network_instance_key }}" + from: root_network-instances.0 + regexp: "(?Pbgp bgp)" + key: "{{ protocol }} {{ protocol }}" + when: "{{ network_instance_key != 'global' }}" + - mode: manual + block: "root_network-instances.0.ip.route" + key: "static static" + extra_vars: {} + bgp: !include includes/bgp.yaml + config: + _process: not_implemented + default-metric: + _process: not_implemented + enabled: + _process: not_implemented + identifier: + _process: not_implemented + name: + _process: not_implemented + identifier: + _process: unnecessary + isis: !include includes/isis.yaml + local-aggregates: + _process: not_implemented + aggregate: + _process: not_implemented + config: + _process: not_implemented + discard: + _process: not_implemented + prefix: + _process: not_implemented + set-tag: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + name: + _process: unnecessary + ospfv2: !include includes/ospfv2.yaml + state: + _process: not_implemented + static-routes: !include includes/static_routes.yaml + segment-routing: + _process: not_implemented + srgbs: + _process: not_implemented + srgb: + _process: not_implemented + config: + _process: not_implemented + dataplane-type: + _process: not_implemented + ipv6-prefixes: + _process: not_implemented + local-id: + _process: not_implemented + mpls-label-blocks: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented + srlbs: + _process: not_implemented + srlb: + _process: not_implemented + config: + _process: not_implemented + dataplane-type: + _process: not_implemented + ipv6-prefix: + _process: not_implemented + local-id: + _process: not_implemented + mpls-label-block: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + table-connections: + _process: not_implemented + table-connection: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + default-import-policy: + _process: not_implemented + dst-protocol: + _process: not_implemented + import-policy: + _process: not_implemented + src-protocol: + _process: not_implemented + dst-protocol: + _process: not_implemented + src-protocol: + _process: not_implemented + state: + _process: not_implemented + tables: + _process: not_implemented + table: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + protocol: + _process: not_implemented + protocol: + _process: not_implemented + state: + _process: not_implemented + vlans: + _process: not_implemented + vlan: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + status: + _process: not_implemented + tpid: + _process: not_implemented + vlan-id: + _process: not_implemented + members: + _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented + vlan-id: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/routed-vlan.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/routed-vlan.yaml index 75bbfd67..dbe4e7a9 100644 --- a/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/routed-vlan.yaml +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/routed-vlan.yaml @@ -1,7 +1,7 @@ --- metadata: prefix: "oc-vlan" - processor: TextParser + processor: TextTree routed-vlan: _process: unnecessary diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/switched-vlan.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/switched-vlan.yaml new file mode 100644 index 00000000..765624f5 --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/switched-vlan.yaml @@ -0,0 +1,28 @@ +--- +metadata: + prefix: "oc-ethernet" + processor: TextTree + +switched-vlan: + _process: unnecessary + config: + _process: unnecessary + access-vlan: + _process: + - path: switchport.access.vlan + interface-mode: + _process: + - mode: map + path: switchport.mode + map: + access: ACCESS + trunk: TRUNK + native-vlan: + _process: + - path: switchport.trunk.native.vlan + trunk-vlans: + _process: + - path: switchport.trunk.allowed.vlan + value: "{{ value|vlan_range_to_oc }}" + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/vlan.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/vlan.yaml index e8392b12..57f2856c 100644 --- a/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/vlan.yaml +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/vlan.yaml @@ -1,7 +1,7 @@ --- metadata: prefix: "oc-vlan" - processor: TextParser + processor: TextTree vlan: _process: unnecessary @@ -9,6 +9,4 @@ vlan: _process: unnecessary vlan-id: _process: - mode: search - regexp: "^\\W*encapsulation dot1q vlan (?P[0-9]+)" - from: "{{ bookmarks['parent'] }}" + - path: "encapsulation.dot1q.vlan" diff --git a/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/vlans.yaml b/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/vlans.yaml new file mode 100644 index 00000000..84848ea5 --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/config/openconfig-vlan/vlans.yaml @@ -0,0 +1,40 @@ +--- +metadata: + prefix: "oc-vlan" + processor: TextTree + execute: + - method: cli + kwargs: + commands: ["show running-config all"] + +vlans: + _process: unnecessary + vlan: + _process: + - path: vlan + regexp: "(?P\\d+)" + from: root_vlans.0 + config: + _process: unnecessary + name: + _process: + - path: name + status: + _process: + - mode: map + path: state + map: + active: ACTIVE + suspend: SUSPENDED + tpid: + _process: not_implemented + vlan-id: + _process: unnecessary + members: + _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented + vlan-id: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/parsers/state/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/eos/parsers/state/openconfig-interfaces/interfaces.yaml new file mode 100644 index 00000000..b2235c01 --- /dev/null +++ b/napalm_yang/mappings/eos/parsers/state/openconfig-interfaces/interfaces.yaml @@ -0,0 +1,177 @@ +--- +metadata: + processor: JSONParser + execute: + - method: "device.run_commands" + kwargs: + commands: ["show interfaces"] + +interfaces: + _process: unnecessary + interface: + _process: + - path: interfaces + from: root_interfaces.0 + regexp: "(?P\\w+(\\w|-|\\/)*\\d+)$" + config: + _process: unnecessary + hold-time: + _process: not_implemented + state: + _process: not_implemented + down: + _process: not_implemented + up: + _process: not_implemented + state: + _process: unnecessary + admin-status: + _process: + - mode: map + path: interfaceStatus + map: + "disabled": DOWN + "errdisabled": DOWN + "connected": UP + "notconnect": UP + counters: + _process: + - path: interfaceCounters + default: {} + when: "{{ not interface_key.startswith('Loopback') }}" + - mode: gate + when: "{{ interface_key.startswith('Loopback') }}" + in-broadcast-pkts: + _process: + - path: inBroadcastPkts + in-discards: + _process: + - path: inDiscards + in-errors: + _process: + - path: totalInErrors + in-multicast-pkts: + _process: + - path: inMulticastPkts + in-octets: + _process: + - path: inOctets + in-unicast-pkts: + _process: + - path: inUcastPkts + in-unknown-protos: + _process: not_implemented + last-clear: + _process: not_implemented + out-broadcast-pkts: + _process: + - path: outBroadcastPkts + out-discards: + _process: + - path: outDiscards + out-errors: + _process: + - path: totalOutErrors + out-multicast-pkts: + _process: + - path: outMulticastPkts + out-octets: + _process: + - path: outOctets + out-unicast-pkts: + _process: + - path: outUcastPkts + description: + _process: + - path: description + enabled: + _process: + - mode: map + path: interfaceStatus + map: + "disabled": false + "errdisabled": true + "connected": true + "notconnect": true + ifindex: + _process: not_implemented + last-change: + _process: not_implemented + mtu: + _process: + - path: mtu + name: + _process: + - path: name + oper-status: + _process: + - mode: map + path: interfaceStatus + map: + "disabled": DOWN + "errdisabled": DOWN + "connected": UP + "notconnect": DOWN + type: + _process: + - mode: map + path: hardware + map: + ethernet: ethernetCsmacd + management: ethernetCsmacd + loopback: softwareLoopback + portchannel: ieee8023adLag + vlan: l3ipvlan + subinterfaces: + _process: unnecessary + subinterface: + _process: + - path: interfaces + from: root_interfaces.0 + regexp: "{{interface_key}}\\.(?P\\d+)" + config: + _process: unnecessary + state: + _process: unnecessary + admin-status: + _process: + - mode: map + path: interfaceStatus + map: + "disabled": DOWN + "errdisabled": DOWN + "connected": UP + "notconnect": DOWN + counters: + _process: not_supported + description: + _process: + - path: description + enabled: + _process: + - mode: map + path: interfaceStatus + map: + "disabled": false + "errdisabled": true + "connected": true + "notconnect": true + ifindex: + _process: not_implemented + index: + _process: not_implemented + last-change: + _process: not_implemented + name: + _process: + - path: name + oper-status: + _process: + - mode: map + path: lineProtocolStatus + map: + "disabled": DOWN + "errdisabled": DOWN + "connected": UP + "notconnect": DOWN + "lowerlayerdown": LOWER_LAYER_DOWN diff --git a/napalm_yang/mappings/eos/translators/openconfig-if-ethernet/ethernet.yaml b/napalm_yang/mappings/eos/translators/openconfig-if-ethernet/ethernet.yaml new file mode 100644 index 00000000..29f60e3c --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-if-ethernet/ethernet.yaml @@ -0,0 +1,20 @@ +--- +metadata: + processor: TextTranslator + +ethernet: + _process: unnecessary + config: + _process: unnecessary + auto-negotiate: + _process: not_implemented + duplex-mode: + _process: not_implemented + enable-flow-control: + _process: not_implemented + mac-address: + _process: not_implemented + port-speed: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/translators/openconfig-if-ip/ipv4.yaml b/napalm_yang/mappings/eos/translators/openconfig-if-ip/ipv4.yaml index 1512a25f..88a4ba8c 100644 --- a/napalm_yang/mappings/eos/translators/openconfig-if-ip/ipv4.yaml +++ b/napalm_yang/mappings/eos/translators/openconfig-if-ip/ipv4.yaml @@ -8,8 +8,7 @@ ipv4: _process: unnecessary enabled: _process: - - mode: element - value: " no switchport\n" + - value: " no switchport\n" negate: " switchport\n" in: "interface.{{ interface_key }}" when: "{{ model and interface_key[0:4] not in ['Mana', 'Loop'] }}" @@ -19,10 +18,9 @@ ipv4: _process: unnecessary address: _process: - mode: container - key_value: " ip address {{ model.config.ip }}/{{ model.config.prefix_length }} {{ 'secondary' if model.config.secondary else '' }}\n" - negate: " default ip address {{ model.config.ip }}/{{ model.config.prefix_length }} {{ 'secondary' if model.config.secondary else '' }}\n" - replace: false + - key_value: " ip address {{ model.config.ip }}/{{ model.config.prefix_length }} {{ 'secondary' if model.config.secondary else '' }}\n" + negate: " default ip address {{ model.config.ip }}/{{ model.config.prefix_length }} {{ 'secondary' if model.config.secondary else '' }}\n" + replace: false ip: _process: unnecessary config: diff --git a/napalm_yang/mappings/eos/translators/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/eos/translators/openconfig-interfaces/interfaces.yaml index 66fa4db8..de0fe626 100644 --- a/napalm_yang/mappings/eos/translators/openconfig-interfaces/interfaces.yaml +++ b/napalm_yang/mappings/eos/translators/openconfig-interfaces/interfaces.yaml @@ -7,10 +7,9 @@ interfaces: _process: unnecessary interface: _process: - mode: container - key_value: "interface {{ interface_key }}\n" - negate: "{{ 'no' if interface_key[0:4] in ['Port', 'Loop'] else 'default' }} interface {{ interface_key }}\n" - end: " exit\n" + - key_value: "interface {{ interface_key }}\n" + negate: "{{ 'no' if interface_key[0:4] in ['Port', 'Loop'] else 'default' }} interface {{ interface_key }}\n" + end: " exit\n" name: _process: unnecessary hold-time: @@ -29,28 +28,24 @@ interfaces: _process: unnecessary enabled: _process: - - mode: element - value: " shutdown\n" + - value: " shutdown\n" when: "{{ not model }}" description: _process: - - mode: element - value: " description {{ model }}\n" + - value: " description {{ model }}\n" negate: " default description" mtu: _process: - - mode: element - value: " mtu {{ model }}\n" + - value: " mtu {{ model }}\n" negate: " default mtu\n" subinterfaces: _process: unnecessary subinterface: _process: - mode: container - key_value: "interface {{ interface_key}}.{{ subinterface_key }}\n" - negate: "no interface {{ interface_key}}.{{ subinterface_key }}\n" - in: "interfaces" - end: " exit\n" + - key_value: "interface {{ interface_key}}.{{ subinterface_key }}\n" + negate: "no interface {{ interface_key}}.{{ subinterface_key }}\n" + in: "interfaces" + end: " exit\n" index: _process: unnecessary config: @@ -61,11 +56,9 @@ interfaces: _process: unnecessary enabled: _process: - - mode: element - value: " shutdown\n" + - value: " shutdown\n" when: "{{ not model }}" description: _process: - - mode: element - value: " description {{ model }}\n" + - value: " description {{ model }}\n" negate: " default description" diff --git a/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/afts.yaml b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/afts.yaml new file mode 100644 index 00000000..86a8b9f7 --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/afts.yaml @@ -0,0 +1,55 @@ +--- +_process: not_implemented +aft: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + entries: + _process: not_implemented + entry: + _process: not_implemented + config: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + match: + _process: not_implemented + interface-ref: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + next-hops: + _process: not_implemented + next-hop: + _process: not_implemented + config: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/bgp.yaml b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/bgp.yaml new file mode 100644 index 00000000..f53ade93 --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/bgp.yaml @@ -0,0 +1,1164 @@ +--- +_process: + - mode: gate + when: "{{ protocol_key != 'bgp bgp' }}" +global: + _process: unnecessary + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + confederation: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + identifier: + _process: not_implemented + member-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: unnecessary + as: + _process: unnecessary + router-id: + _process: + - value: " router-id {{ model }}\n" + negate: " default router-id\n" + default-route-distance: + _process: not_implemented + config: + _process: not_implemented + external-route-distance: + _process: not_implemented + internal-route-distance: + _process: not_implemented + state: + _process: not_implemented + dynamic-neighbor-prefixes: + _process: not_implemented + dynamic-neighbor-prefix: + _process: not_implemented + config: + _process: not_implemented + peer-group: + _process: not_implemented + prefix: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +neighbors: + _process: unnecessary + neighbor: + _process: + - key_value: " neighbor {{ neighbor_key }} remote-as {{ model.config.peer_as }}\n" + negate: " no neighbor {{ neighbor_key }}\n" + add-paths: + _process: not_implemented + config: + _process: not_implemented + eligible-prefix-policy: + _process: not_implemented + receive: + _process: not_implemented + send-max: + _process: not_implemented + state: + _process: not_implemented + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + as-path-options: + _process: not_implemented + config: + _process: not_implemented + allow-own-as: + _process: not_implemented + replace-peer-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: unnecessary + auth-password: + _process: not_implemented + description: + _process: + - value: " neighbor {{ neighbor_key }} description {{ model }}\n" + negate: " default neighbor {{ neighbor_key }} description\n" + enabled: + _process: + - value: " neighbor {{ neighbor_key }} shutdown\n" + negate: " default neighbor {{ neighbor_key }}\n" + when: "{{ not model }}" + local-as: + _process: + - value: " neighbor {{ neighbor_key }} local-as {{ model }} no-prepend replace-as\n" + negate: " default neighbor {{ neighbor_key }} local-as\n" + neighbor-address: + _process: unnecessary + peer-as: + _process: unnecessary + peer-group: + _process: not_implemented + peer-type: + _process: not_implemented + remove-private-as: + _process: not_implemented + route-flap-damping: + _process: not_implemented + send-community: + _process: not_implemented + ebgp-multihop: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + multihop-ttl: + _process: not_implemented + state: + _process: not_implemented + error-handling: + _process: not_implemented + config: + _process: not_implemented + treat-as-withdraw: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + logging-options: + _process: not_implemented + config: + _process: not_implemented + log-neighbor-state-changes: + _process: not_implemented + state: + _process: not_implemented + neighbor-address: + _process: not_implemented + route-reflector: + _process: not_implemented + config: + _process: not_implemented + route-reflector-client: + _process: not_implemented + route-reflector-cluster-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + connect-retry: + _process: not_implemented + hold-time: + _process: not_implemented + keepalive-interval: + _process: not_implemented + minimum-advertisement-interval: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + local-address: + _process: not_implemented + mtu-discovery: + _process: not_implemented + passive-mode: + _process: not_implemented + tcp-mss: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +peer-groups: + _process: not_implemented + peer-group: + _process: not_implemented + add-paths: + _process: not_implemented + config: + _process: not_implemented + eligible-prefix-policy: + _process: not_implemented + receive: + _process: not_implemented + send-max: + _process: not_implemented + state: + _process: not_implemented + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + as-path-options: + _process: not_implemented + config: + _process: not_implemented + allow-own-as: + _process: not_implemented + replace-peer-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + description: + _process: not_implemented + local-as: + _process: not_implemented + peer-as: + _process: not_implemented + peer-group-name: + _process: not_implemented + peer-type: + _process: not_implemented + remove-private-as: + _process: not_implemented + route-flap-damping: + _process: not_implemented + send-community: + _process: not_implemented + ebgp-multihop: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + multihop-ttl: + _process: not_implemented + state: + _process: not_implemented + error-handling: + _process: not_implemented + config: + _process: not_implemented + treat-as-withdraw: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + logging-options: + _process: not_implemented + config: + _process: not_implemented + log-neighbor-state-changes: + _process: not_implemented + state: + _process: not_implemented + peer-group-name: + _process: not_implemented + route-reflector: + _process: not_implemented + config: + _process: not_implemented + route-reflector-client: + _process: not_implemented + route-reflector-cluster-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + connect-retry: + _process: not_implemented + hold-time: + _process: not_implemented + keepalive-interval: + _process: not_implemented + minimum-advertisement-interval: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + local-address: + _process: not_implemented + mtu-discovery: + _process: not_implemented + passive-mode: + _process: not_implemented + tcp-mss: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/connection_points.yaml b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/connection_points.yaml new file mode 100644 index 00000000..e4034df4 --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/connection_points.yaml @@ -0,0 +1,48 @@ +--- +_process: not_implemented +connection-point: + _process: not_implemented + config: + _process: not_implemented + connection-point-id: + _process: not_implemented + connection-point-id: + _process: not_implemented + endpoints: + _process: not_implemented + endpoint: + _process: not_implemented + config: + _process: not_implemented + endpoint-id: + _process: not_implemented + precedence: + _process: not_implemented + type: + _process: not_implemented + endpoint-id: + _process: not_implemented + local: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + remote: + _process: not_implemented + config: + _process: not_implemented + remote-system: + _process: not_implemented + virtual-circuit-identifier: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/isis.yaml b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/isis.yaml new file mode 100644 index 00000000..463623fd --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/isis.yaml @@ -0,0 +1,508 @@ +--- +_process: not_implemented +global: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + metric: + _process: not_implemented + safi-name: + _process: not_implemented + multi-topology: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + authentication-check: + _process: not_implemented + fast-flooding: + _process: not_implemented + iid-tlv: + _process: not_implemented + instance: + _process: not_implemented + level-capability: + _process: not_implemented + max-ecmp-paths: + _process: not_implemented + maximum-area-addresses: + _process: not_implemented + net: + _process: not_implemented + poi-tlv: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + state: + _process: not_implemented + igp-shortcuts: + _process: not_implemented + afi: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + nh-type: + _process: not_implemented + state: + _process: not_implemented + inter-level-propagation-policies: + _process: not_implemented + level1-to-level2: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + level2-to-level1: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + lsp-bit: + _process: not_implemented + attached-bit: + _process: not_implemented + config: + _process: not_implemented + ignore-bit: + _process: not_implemented + suppress-bit: + _process: not_implemented + state: + _process: not_implemented + overload-bit: + _process: not_implemented + config: + _process: not_implemented + advertise-high-metric: + _process: not_implemented + set-bit: + _process: not_implemented + set-bit-on-boot: + _process: not_implemented + reset-triggers: + _process: not_implemented + reset-trigger: + _process: not_implemented + config: + _process: not_implemented + delay: + _process: not_implemented + reset-trigger: + _process: not_implemented + reset-trigger: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + nsr: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + reference-bandwidth: + _process: not_implemented + config: + _process: not_implemented + reference-bandwidth: + _process: not_implemented + state: + _process: not_implemented + segment-routing: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + srgb: + _process: not_implemented + srlb: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + lsp-lifetime-interval: + _process: not_implemented + lsp-refresh-interval: + _process: not_implemented + lsp-generation: + _process: not_implemented + config: + _process: not_implemented + lsp-first-wait-interval: + _process: not_implemented + lsp-max-wait-interval: + _process: not_implemented + lsp-second-wait-interval: + _process: not_implemented + state: + _process: not_implemented + spf: + _process: not_implemented + config: + _process: not_implemented + spf-first-interval: + _process: not_implemented + spf-hold-interval: + _process: not_implemented + spf-second-interval: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + lsp-mtu-size: + _process: not_implemented + state: + _process: not_implemented +interfaces: + _process: not_implemented + interface: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + safi-name: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + hello-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + bfd: + _process: not_implemented + config: + _process: not_implemented + bfd-tlv: + _process: not_implemented + state: + _process: not_implemented + circuit-counters: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + circuit-type: + _process: not_implemented + enabled: + _process: not_implemented + hello-padding: + _process: not_implemented + interface-id: + _process: not_implemented + passive: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + levels: + _process: not_implemented + level: + _process: not_implemented + adjacencies: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + metric: + _process: not_implemented + safi-name: + _process: not_implemented + safi-name: + _process: not_implemented + segment-routing: + _process: not_implemented + adjacency-sids: + _process: not_implemented + adjacency-sid: + _process: not_implemented + config: + _process: not_implemented + group: + _process: not_implemented + neighbor: + _process: not_implemented + protection-eligible: + _process: not_implemented + sid-id: + _process: not_implemented + neighbor: + _process: not_implemented + sid-id: + _process: not_implemented + state: + _process: not_implemented + prefix-sids: + _process: not_implemented + prefix-sid: + _process: not_implemented + config: + _process: not_implemented + label-options: + _process: not_implemented + prefix: + _process: not_implemented + sid-id: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + level-number: + _process: not_implemented + passive: + _process: not_implemented + priority: + _process: not_implemented + hello-authentication: + _process: not_implemented + config: + _process: not_implemented + hello-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + level-number: + _process: not_implemented + packet-counters: + _process: not_implemented + cnsp: + _process: not_implemented + state: + _process: not_implemented + esh: + _process: not_implemented + state: + _process: not_implemented + iih: + _process: not_implemented + state: + _process: not_implemented + ish: + _process: not_implemented + state: + _process: not_implemented + lsp: + _process: not_implemented + state: + _process: not_implemented + psnp: + _process: not_implemented + state: + _process: not_implemented + unknown: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + hello-multiplier: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + csnp-interval: + _process: not_implemented + lsp-pacing-interval: + _process: not_implemented + state: + _process: not_implemented +levels: + _process: not_implemented + level: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + csnp-authentication: + _process: not_implemented + lsp-authentication: + _process: not_implemented + psnp-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + authentication-check: + _process: not_implemented + enabled: + _process: not_implemented + level-number: + _process: not_implemented + metric-style: + _process: not_implemented + level-number: + _process: not_implemented + link-state-database: + _process: not_implemented + route-preference: + _process: not_implemented + config: + _process: not_implemented + external-route-preference: + _process: not_implemented + internal-route-preference: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + system-level-counters: + _process: not_implemented + state: + _process: not_implemented + traffic-engineering: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ipv4-router-id: + _process: not_implemented + ipv6-router-id: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/mpls.yaml b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/mpls.yaml new file mode 100644 index 00000000..2922a092 --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/mpls.yaml @@ -0,0 +1,585 @@ +--- +_process: not_implemented +global: + _process: not_implemented + config: + _process: not_implemented + null-label: + _process: not_implemented + interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + mpls-enabled: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + reserved-label-blocks: + _process: not_implemented + reserved-label-block: + _process: not_implemented + config: + _process: not_implemented + local-id: + _process: not_implemented + lower-bound: + _process: not_implemented + upper-bound: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +lsps: + _process: not_implemented + constrained-path: + _process: not_implemented + named-explicit-paths: + _process: not_implemented + named-explicit-path: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + sid-protection-required: + _process: not_implemented + sid-selection-mode: + _process: not_implemented + explicit-route-objects: + _process: not_implemented + explicit-route-object: + _process: not_implemented + config: + _process: not_implemented + address: + _process: not_implemented + hop-type: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + state: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + tunnels: + _process: not_implemented + tunnel: + _process: not_implemented + bandwidth: + _process: not_implemented + auto-bandwidth: + _process: not_implemented + config: + _process: not_implemented + adjust-interval: + _process: not_implemented + adjust-threshold: + _process: not_implemented + enabled: + _process: not_implemented + max-bw: + _process: not_implemented + min-bw: + _process: not_implemented + overflow: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + overflow-threshold: + _process: not_implemented + trigger-event-count: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + underflow: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + trigger-event-count: + _process: not_implemented + underflow-threshold: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + set-bandwidth: + _process: not_implemented + specification-type: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + admin-status: + _process: not_implemented + description: + _process: not_implemented + hold-priority: + _process: not_implemented + metric: + _process: not_implemented + metric-type: + _process: not_implemented + name: + _process: not_implemented + preference: + _process: not_implemented + protection-style-requested: + _process: not_implemented + reoptimize-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + shortcut-eligible: + _process: not_implemented + signaling-protocol: + _process: not_implemented + soft-preemption: + _process: not_implemented + source: + _process: not_implemented + type: + _process: not_implemented + name: + _process: not_implemented + p2p-tunnel-attributes: + _process: not_implemented + config: + _process: not_implemented + destination: + _process: not_implemented + p2p-primary-path: + _process: not_implemented + p2p-primary-path: + _process: not_implemented + admin-groups: + _process: not_implemented + config: + _process: not_implemented + exclude-group: + _process: not_implemented + include-all-group: + _process: not_implemented + include-any-group: + _process: not_implemented + state: + _process: not_implemented + candidate-secondary-paths: + _process: not_implemented + candidate-secondary-path: + _process: not_implemented + config: + _process: not_implemented + priority: + _process: not_implemented + secondary-path: + _process: not_implemented + secondary-path: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + cspf-tiebreaker: + _process: not_implemented + explicit-path-name: + _process: not_implemented + hold-priority: + _process: not_implemented + name: + _process: not_implemented + path-computation-method: + _process: not_implemented + path-computation-server: + _process: not_implemented + preference: + _process: not_implemented + retry-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + use-cspf: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + p2p-secondary-paths: + _process: not_implemented + p2p-secondary-path: + _process: not_implemented + admin-groups: + _process: not_implemented + config: + _process: not_implemented + exclude-group: + _process: not_implemented + include-all-group: + _process: not_implemented + include-any-group: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + cspf-tiebreaker: + _process: not_implemented + explicit-path-name: + _process: not_implemented + hold-priority: + _process: not_implemented + name: + _process: not_implemented + path-computation-method: + _process: not_implemented + path-computation-server: + _process: not_implemented + preference: + _process: not_implemented + retry-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + use-cspf: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + static-lsps: + _process: not_implemented + static-lsp: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + egress: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + ingress: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + transit: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + unconstrained-path: + _process: not_implemented + path-setup-protocol: + _process: not_implemented +signaling-protocols: + _process: not_implemented + rsvp-te: + _process: not_implemented + global: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enable: + _process: not_implemented + recovery-time: + _process: not_implemented + restart-time: + _process: not_implemented + state: + _process: not_implemented + hellos: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + refresh-reduction: + _process: not_implemented + state: + _process: not_implemented + soft-preemption: + _process: not_implemented + config: + _process: not_implemented + enable: + _process: not_implemented + soft-preemption-timeout: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + authentication-key: + _process: not_implemented + enable: + _process: not_implemented + state: + _process: not_implemented + bandwidth-reservations: + _process: not_implemented + bandwidth-reservation: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + hellos: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + refresh-reduction: + _process: not_implemented + state: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + protection: + _process: not_implemented + config: + _process: not_implemented + bypass-optimize-interval: + _process: not_implemented + link-protection-style-requested: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + subscription: + _process: not_implemented + config: + _process: not_implemented + subscription: + _process: not_implemented + state: + _process: not_implemented + neighbors: + _process: not_implemented + neighbor: + _process: not_implemented + sessions: + _process: not_implemented + session: + _process: not_implemented + segment-routing: + _process: not_implemented + aggregate-sid-counters: + _process: not_implemented + aggregate-sid-counter: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + sid-counters: + _process: not_implemented + sid-counter: + _process: not_implemented + state: + _process: not_implemented +te-global-attributes: + _process: not_implemented + mpls-admin-groups: + _process: not_implemented + admin-group: + _process: not_implemented + admin-group-name: + _process: not_implemented + config: + _process: not_implemented + admin-group-name: + _process: not_implemented + bit-position: + _process: not_implemented + state: + _process: not_implemented + srlgs: + _process: not_implemented + srlg: + _process: not_implemented + config: + _process: not_implemented + cost: + _process: not_implemented + flooding-type: + _process: not_implemented + name: + _process: not_implemented + value: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + static-srlg-members: + _process: not_implemented + members-list: + _process: not_implemented + config: + _process: not_implemented + from-address: + _process: not_implemented + to-address: + _process: not_implemented + from-address: + _process: not_implemented + state: + _process: not_implemented + te-lsp-timers: + _process: not_implemented + config: + _process: not_implemented + cleanup-delay: + _process: not_implemented + install-delay: + _process: not_implemented + reoptimize-timer: + _process: not_implemented + state: + _process: not_implemented +te-interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + admin-group: + _process: not_implemented + interface-id: + _process: not_implemented + srlg-membership: + _process: not_implemented + te-metric: + _process: not_implemented + igp-flooding-bandwidth: + _process: not_implemented + config: + _process: not_implemented + delta-percentage: + _process: not_implemented + down-thresholds: + _process: not_implemented + threshold-specification: + _process: not_implemented + threshold-type: + _process: not_implemented + up-down-thresholds: + _process: not_implemented + up-thresholds: + _process: not_implemented + state: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/ospfv2.yaml b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/ospfv2.yaml new file mode 100644 index 00000000..adf0afef --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/ospfv2.yaml @@ -0,0 +1,224 @@ +--- +_process: not_implemented +areas: + _process: not_implemented + area: + _process: not_implemented + config: + _process: not_implemented + identifier: + _process: not_implemented + identifier: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + authentication-type: + _process: not_implemented + hide-network: + _process: not_implemented + id: + _process: not_implemented + metric: + _process: not_implemented + multi-area-adjacency-primary: + _process: not_implemented + network-type: + _process: not_implemented + passive: + _process: not_implemented + priority: + _process: not_implemented + id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + lsa-filter: + _process: not_implemented + config: + _process: not_implemented + all: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-metric: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + neighbors: + _process: not_implemented + neighbor: + _process: not_implemented + config: + _process: not_implemented + metric: + _process: not_implemented + router-id: + _process: not_implemented + router-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + dead-interval: + _process: not_implemented + hello-interval: + _process: not_implemented + retransmission-interval: + _process: not_implemented + state: + _process: not_implemented + lsdb: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-enabled: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + virtual-links: + _process: not_implemented + virtual-link: + _process: not_implemented + config: + _process: not_implemented + remote-router-id: + _process: not_implemented + remote-router-id: + _process: not_implemented + state: + _process: not_implemented +global: + _process: not_implemented + config: + _process: not_implemented + hide-transit-only-networks: + _process: not_implemented + igp-shortcuts: + _process: not_implemented + log-adjacency-changes: + _process: not_implemented + router-id: + _process: not_implemented + summary-route-cost-mode: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + state: + _process: not_implemented + inter-area-propagation-policies: + _process: not_implemented + inter-area-propagation-policy: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + dst-area: + _process: not_implemented + import-policy: + _process: not_implemented + src-area: + _process: not_implemented + dst-area: + _process: not_implemented + src-area: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-extensions: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + lsa-generation: + _process: not_implemented + config: + _process: not_implemented + initial-delay: + _process: not_implemented + maximum-delay: + _process: not_implemented + state: + _process: not_implemented + max-metric: + _process: not_implemented + config: + _process: not_implemented + include: + _process: not_implemented + set: + _process: not_implemented + timeout: + _process: not_implemented + trigger: + _process: not_implemented + state: + _process: not_implemented + spf: + _process: not_implemented + config: + _process: not_implemented + initial-delay: + _process: not_implemented + maximum-delay: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/segment_routing.yaml b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/segment_routing.yaml new file mode 100644 index 00000000..58593331 --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/segment_routing.yaml @@ -0,0 +1,38 @@ +--- +_process: not_implemented +srgbs: + _process: not_implemented + srgb: + _process: not_implemented + config: + _process: not_implemented + dataplane-type: + _process: not_implemented + ipv6-prefixes: + _process: not_implemented + local-id: + _process: not_implemented + mpls-label-blocks: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented +srlbs: + _process: not_implemented + srlb: + _process: not_implemented + config: + _process: not_implemented + dataplane-type: + _process: not_implemented + ipv6-prefix: + _process: not_implemented + local-id: + _process: not_implemented + mpls-label-block: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/static_routes.yaml b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/static_routes.yaml new file mode 100644 index 00000000..688f8736 --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-network-instance/includes/static_routes.yaml @@ -0,0 +1,62 @@ +--- +_process: + - mode: gate + when: "{{ protocol_key != 'static static' }}" +static: + _process: + - prefix: "ip route {{ static_key }}" + negate: "no ip route {{ static_key }}\n" + negate_prefix: "no ip route {{ static_key }}" + when: "{{ network_instance_key == 'global' }}" + in: "network-instances" + - prefix: "ip route vrf {{ network_instance_key }} {{ static_key }}" + negate: "no ip route vrf {{ network_instance_key }} {{ static_key }}\n" + negate_prefix: "no ip route vrf {{ network_instance_key }} {{ static_key }}" + when: "{{ network_instance_key != 'global' }}" + in: "network-instances" + config: + _process: unnecessary + prefix: + _process: unnecessary + set-tag: + _process: not_implemented + next-hops: + _process: unnecessary + next-hop: + _process: + - mode: gate + when: "{{ replacing and negating }}" + - key_value: "{{ extra_vars.prefix }} {{ next_hop_key }}" + negate: "{{ extra_vars.negate_prefix }} {{ next_hop_key }}\n" + end: "\n" + config: + _process: unnecessary + index: + _process: not_implemented + metric: + _process: + - value: " {{ model }}" + negate: " 1" + next-hop: + _process: unnecessary + recurse: + _process: not_implemented + index: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/eos/translators/openconfig-network-instance/network-instances.yaml b/napalm_yang/mappings/eos/translators/openconfig-network-instance/network-instances.yaml new file mode 100644 index 00000000..980c1e63 --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-network-instance/network-instances.yaml @@ -0,0 +1,373 @@ +--- +metadata: + processor: TextTranslator + root: true + +network-instances: + _process: unnecessary + network-instance: + _process: + - key_value: "vrf definition {{ network_instance_key }}\n" + negate: "no vrf definition {{ network_instance_key }}\n" + continue_negating: true + end: " exit\n" + when: "{{ network_instance_key != 'global' }}" + afts: !include includes/afts.yaml + config: + _process: unnecessary + description: + _process: + - value: " description {{ model }}\n" + negate: " default description\n" + enabled: + _process: unnecessary + enabled-address-families: + _process: not_implemented + mtu: + _process: not_implemented + name: + _process: unnecessary + route-distinguisher: + _process: + - value: " rd {{ model }}\n" + negate: " default rd\n" + router-id: + _process: not_implemented + type: + _process: unnecessary + connection-points: !include includes/connection_points.yaml + encapsulation: + _process: not_implemented + config: + _process: not_implemented + control-word: + _process: not_implemented + encapsulation-type: + _process: not_implemented + label-allocation-mode: + _process: not_implemented + state: + _process: not_implemented + fdb: + _process: not_implemented + config: + _process: not_implemented + mac-aging-time: + _process: not_implemented + mac-learning: + _process: not_implemented + maximum-entries: + _process: not_implemented + mac-table: + _process: not_implemented + entries: + _process: not_implemented + entry: + _process: not_implemented + config: + _process: not_implemented + mac-address: + _process: not_implemented + vlan: + _process: not_implemented + interface: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + mac-address: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + inter-instance-policies: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + associated-address-families: + _process: not_implemented + id: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + id: + _process: not_implemented + state: + _process: not_implemented + mpls: !include includes/mpls.yaml + name: + _process: unnecessary + policy-forwarding: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + apply-forwarding-policy: + _process: not_implemented + interface-id: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + path-selection-groups: + _process: not_implemented + path-selection-group: + _process: not_implemented + config: + _process: not_implemented + group-id: + _process: not_implemented + mpls-lsp: + _process: not_implemented + group-id: + _process: not_implemented + state: + _process: not_implemented + policies: + _process: not_implemented + policy: + _process: not_implemented + config: + _process: not_implemented + policy-id: + _process: not_implemented + policy-id: + _process: not_implemented + rules: + _process: not_implemented + rule: + _process: not_implemented + action: + _process: not_implemented + config: + _process: not_implemented + decapsulate-gre: + _process: not_implemented + discard: + _process: not_implemented + network-instance: + _process: not_implemented + next-hop: + _process: not_implemented + path-selection-group: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + sequence-id: + _process: not_implemented + ip: + _process: not_implemented + config: + _process: not_implemented + destination-ip-address: + _process: not_implemented + destination-ip-flow-label: + _process: not_implemented + dscp: + _process: not_implemented + hop-limit: + _process: not_implemented + ip-version: + _process: not_implemented + protocol: + _process: not_implemented + source-ip-address: + _process: not_implemented + source-ip-flow-label: + _process: not_implemented + state: + _process: not_implemented + l2: + _process: not_implemented + config: + _process: not_implemented + destination-mac: + _process: not_implemented + destination-mac-mask: + _process: not_implemented + ethertype: + _process: not_implemented + source-mac: + _process: not_implemented + source-mac-mask: + _process: not_implemented + state: + _process: not_implemented + sequence-id: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + destination-port: + _process: not_implemented + source-port: + _process: not_implemented + tcp-flags: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + protocols: + _process: unnecessary + protocol: + _process: + - key_value: "router bgp {{ model.bgp.global_.config.as_ }}\n" + negate: "no router bgp {{ model.bgp.global_.config.as_ }}\n" + end: " exit\n" + when: "{{ protocol_key == 'bgp bgp' and network_instance_key == 'global' }}" + in: "network-instances" + - key_value: "router bgp {{ model.bgp.global_.config.as_ }}\n vrf {{ network_instance_key}}\n" + negate: "router bgp {{ model.bgp.global_.config.as_ }}\n no vrf {{ network_instance_key}}\n" + end: " exit\n" + when: "{{ protocol_key == 'bgp bgp' and network_instance_key != 'global' }}" + replace: false + in: "network-instances" + bgp: !include includes/bgp.yaml + config: + _process: not_implemented + default-metric: + _process: not_implemented + enabled: + _process: not_implemented + identifier: + _process: not_implemented + name: + _process: not_implemented + identifier: + _process: unnecessary + isis: !include includes/isis.yaml + local-aggregates: + _process: not_implemented + aggregate: + _process: not_implemented + config: + _process: not_implemented + discard: + _process: not_implemented + prefix: + _process: not_implemented + set-tag: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + name: + _process: unnecessary + ospfv2: !include includes/ospfv2.yaml + state: + _process: not_implemented + static-routes: !include includes/static_routes.yaml + segment-routing: !include includes/segment_routing.yaml + state: + _process: not_implemented + table-connections: + _process: not_implemented + table-connection: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + default-import-policy: + _process: not_implemented + dst-protocol: + _process: not_implemented + import-policy: + _process: not_implemented + src-protocol: + _process: not_implemented + dst-protocol: + _process: not_implemented + src-protocol: + _process: not_implemented + state: + _process: not_implemented + tables: + _process: not_implemented + table: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + protocol: + _process: not_implemented + protocol: + _process: not_implemented + state: + _process: not_implemented + vlans: + _process: not_implemented + vlan: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + status: + _process: not_implemented + tpid: + _process: not_implemented + vlan-id: + _process: not_implemented + members: + _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented + vlan-id: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/translators/openconfig-vlan/switched-vlan.yaml b/napalm_yang/mappings/eos/translators/openconfig-vlan/switched-vlan.yaml new file mode 100644 index 00000000..adff7298 --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-vlan/switched-vlan.yaml @@ -0,0 +1,30 @@ +--- +metadata: + processor: TextTranslator + +switched-vlan: + _process: unnecessary + config: + _process: unnecessary + access-vlan: + _process: + - value: " switchport access vlan {{ model }}\n" + negate: " default switchport access vlan\n" + interface-mode: + _process: + - value: " switchport mode access\n" + negate: " default switchport mode\n" + when: "{{ model == 'ACCESS' }}" + - value: " switchport mode trunk\n" + negate: " default switchport mode\n" + when: "{{ model != 'ACCESS' }}" + native-vlan: + _process: + - value: " switchport native vlan {{ model }}\n" + negate: " default switchport native vlan\n" + trunk-vlans: + _process: + - value: " switchport trunk vlan {{ model|oc_to_vlan_range }}\n" + negate: " default switchport trunk vlan\n" + state: + _process: not_implemented diff --git a/napalm_yang/mappings/eos/translators/openconfig-vlan/vlan.yaml b/napalm_yang/mappings/eos/translators/openconfig-vlan/vlan.yaml index 0c9ece30..8e6032dd 100644 --- a/napalm_yang/mappings/eos/translators/openconfig-vlan/vlan.yaml +++ b/napalm_yang/mappings/eos/translators/openconfig-vlan/vlan.yaml @@ -8,6 +8,5 @@ vlan: _process: unnecessary vlan-id: _process: - - mode: element - value: " encapsulation dot1q vlan {{ model }}\n" + - value: " encapsulation dot1q vlan {{ model }}\n" negate: " default encapsulation dot1q vlan {{ model }}\n" diff --git a/napalm_yang/mappings/eos/translators/openconfig-vlan/vlans.yaml b/napalm_yang/mappings/eos/translators/openconfig-vlan/vlans.yaml new file mode 100644 index 00000000..3ad1b3e7 --- /dev/null +++ b/napalm_yang/mappings/eos/translators/openconfig-vlan/vlans.yaml @@ -0,0 +1,38 @@ +--- +metadata: + processor: TextTranslator + root: true + +vlans: + _process: unnecessary + vlan: + _process: + - key_value: "vlan {{ vlan_key }}\n" + negate: "no vlan {{ vlan_key }}\n" + end: " exit\n" + config: + _process: unnecessary + name: + _process: + - value: " name {{ model }}\n" + negate: " default name\n" + status: + _process: + - value: " state active\n" + negate: " default state\n" + when: "{{ model == 'ACTIVE' }}" + - value: " state suspend\n" + negate: " default state\n" + when: "{{ model != 'ACTIVE' }}" + tpid: + _process: not_implemented + vlan-id: + _process: unnecessary + members: + _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented + vlan-id: + _process: not_implemented diff --git a/napalm_yang/mappings/ios/parsers/config/napalm-if-ip/secondary.yaml b/napalm_yang/mappings/ios/parsers/config/napalm-if-ip/secondary.yaml index ee334fbb..fb9e4c70 100644 --- a/napalm_yang/mappings/ios/parsers/config/napalm-if-ip/secondary.yaml +++ b/napalm_yang/mappings/ios/parsers/config/napalm-if-ip/secondary.yaml @@ -1,9 +1,9 @@ --- metadata: prefix: "napalm-ip" - processor: TextParser + processor: TextTree secondary: _process: - mode: value - value: "{{ extra_vars.secondary != None }}" + - mode: is_present + path: "secondary" diff --git a/napalm_yang/mappings/ios/parsers/config/openconfig-if-ip/ipv4.yaml b/napalm_yang/mappings/ios/parsers/config/openconfig-if-ip/ipv4.yaml index 8811a11b..3f9cbc92 100644 --- a/napalm_yang/mappings/ios/parsers/config/openconfig-if-ip/ipv4.yaml +++ b/napalm_yang/mappings/ios/parsers/config/openconfig-if-ip/ipv4.yaml @@ -1,37 +1,35 @@ --- metadata: - processor: TextParser + processor: TextTree ipv4: _process: unnecessary config: _process: unnecessary enabled: - _process: # TODO look at this one, I think this is different depending on IOS version - mode: is_absent - regexp: "(?P^\\W*switchport$)" - from: "{{ bookmarks['parent'] }}" + _process: + - mode: is_absent + path: "switchport" mtu: _process: not_implemented addresses: _process: unnecessary address: _process: - mode: block - regexp: "(?Pip address (?P(?P.*)) (?P([0-255]|\\.)*)(?P secondary)*)$" - from: "{{ bookmarks['parent'] }}" + - path: "ip.address.?prefix.?mask" + regexp: "^(?P\\d+\\.\\d+\\.\\d+\\.\\d+)" + key: prefix ip: _process: unnecessary config: _process: unnecessary ip: _process: - mode: value - value: "{{ extra_vars.ip }}" + - path: prefix prefix-length: _process: - mode: value - value: "{{ extra_vars.prefix|netmask_to_cidr }}" + - path: mask + value: "{{ value|netmask_to_cidr }}" vrrp: _process: not_implemented vrrp-group: diff --git a/napalm_yang/mappings/ios/parsers/config/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/ios/parsers/config/openconfig-interfaces/interfaces.yaml index 0893886e..f2216278 100644 --- a/napalm_yang/mappings/ios/parsers/config/openconfig-interfaces/interfaces.yaml +++ b/napalm_yang/mappings/ios/parsers/config/openconfig-interfaces/interfaces.yaml @@ -1,17 +1,17 @@ --- metadata: - processor: TextParser + processor: TextTree execute: - method: cli - args: + kwargs: commands: ["show running-config all"] interfaces: _process: unnecessary interface: _process: - mode: block - regexp: "(?Pinterface (?P(\\w|-)*\\d+)\n(?:.|\n)*?^!$)" - from: "{{ bookmarks.interfaces.0 }}" + - path: interface + regexp: "^(?P(\\w|-)*\\d+(\\/\\d+)*)$" + from: root_interfaces.0 name: _process: unnecessary hold-time: @@ -28,38 +28,33 @@ interfaces: _process: unnecessary type: _process: - mode: map - regexp: "(?P(\\w|-)*)\\d+" - from: "{{ interface_key }}" - map: - GigabitEthernet: ethernetCsmacd - Management: ethernetCsmacd - Loopback: softwareLoopback - Port-Channel: ieee8023adLag - Port-channel: ieee8023adLag - Vlan: l3ipvlan + - mode: map + value: "{{ interface_key }}" + regexp: "(?P(\\w|-)*)\\d+" + map: + fastethernet: ethernetCsmacd + gigabitethernet: ethernetCsmacd + management: ethernetCsmacd + loopback: softwareLoopback + port-channel: ieee8023adLag + vlan: l3ipvlan enabled: _process: - mode: is_present - regexp: "(?Pno shutdown)" - from: "{{ bookmarks.interface[interface_key] }}" + - mode: is_absent + path: "shutdown" description: _process: - mode: search - regexp: "description (?P.*)" - from: "{{ bookmarks.interface[interface_key] }}" + - path: description mtu: _process: - mode: search - regexp: "mtu (?P[0-9]+)" - from: "{{ bookmarks.interface[interface_key] }}" + - path: ip.mtu subinterfaces: _process: unnecessary subinterface: _process: - mode: block - regexp: "(?Pinterface {{interface_key}}\\.(?P\\d+)\\n(?:.|\\n)*?^!$)" - from: "{{ bookmarks.interfaces.0 }}" + - path: interface + regexp: "{{interface_key}}\\.(?P\\d+)" + from: root_interfaces.0 index: _process: unnecessary config: @@ -68,15 +63,11 @@ interfaces: _process: unnecessary name: _process: - mode: value - value: "{{ interface_key }}.{{ subinterface_key}}" + - value: "{{ interface_key }}.{{ subinterface_key}}" enabled: _process: - mode: is_present - regexp: "(?Pno shutdown)" - from: "{{ bookmarks.subinterface[subinterface_key] }}" + - mode: is_absent + path: "shutdown" description: _process: - mode: search - regexp: "description (?P.*)" - from: "{{ bookmarks.subinterface[subinterface_key] }}" + - path: description diff --git a/napalm_yang/mappings/ios/parsers/config/openconfig-vlan/routed-vlan.yaml b/napalm_yang/mappings/ios/parsers/config/openconfig-vlan/routed-vlan.yaml index 75bbfd67..dbe4e7a9 100644 --- a/napalm_yang/mappings/ios/parsers/config/openconfig-vlan/routed-vlan.yaml +++ b/napalm_yang/mappings/ios/parsers/config/openconfig-vlan/routed-vlan.yaml @@ -1,7 +1,7 @@ --- metadata: prefix: "oc-vlan" - processor: TextParser + processor: TextTree routed-vlan: _process: unnecessary diff --git a/napalm_yang/mappings/ios/parsers/config/openconfig-vlan/vlan.yaml b/napalm_yang/mappings/ios/parsers/config/openconfig-vlan/vlan.yaml index 2f536f29..4ffb3101 100644 --- a/napalm_yang/mappings/ios/parsers/config/openconfig-vlan/vlan.yaml +++ b/napalm_yang/mappings/ios/parsers/config/openconfig-vlan/vlan.yaml @@ -1,7 +1,7 @@ --- metadata: prefix: "oc-vlan" - processor: TextParser + processor: TextTree vlan: _process: unnecessary @@ -9,6 +9,5 @@ vlan: _process: unnecessary vlan-id: _process: - mode: search - regexp: "^\\W*encapsulation dot1q (?P[0-9]+)" - from: "{{ bookmarks['parent'] }}" + - path: "encapsulation.dot1Q" + regexp: "^(?P\\d+)$" diff --git a/napalm_yang/mappings/ios/translators/openconfig-if-ip/ipv4.yaml b/napalm_yang/mappings/ios/translators/openconfig-if-ip/ipv4.yaml index 1fea4d8d..516be4bf 100644 --- a/napalm_yang/mappings/ios/translators/openconfig-if-ip/ipv4.yaml +++ b/napalm_yang/mappings/ios/translators/openconfig-if-ip/ipv4.yaml @@ -8,8 +8,7 @@ ipv4: _process: unnecessary enabled: _process: # TODO look at this one, I think this is different depending on IOS version - - mode: element - value: " no switchport\n" + - value: " no switchport\n" negate: " switchport\n" in: "interface.{{ interface_key }}" when: "{{ model and interface_key[0:4] not in ['Mana', 'Loop'] }}" @@ -19,10 +18,9 @@ ipv4: _process: unnecessary address: _process: - mode: container - key_value: " ip address {{ model.config.ip }} {{ model.config.prefix_length|cidr_to_netmask }}{{ ' secondary' if model.config.secondary else '' }}\n" - negate: " default ip address {{ model.config.ip }} {{ model.config.prefix_length|cidr_to_netmask }}{{ ' secondary' if model.config.secondary else '' }}\n" - replace: false + - key_value: " ip address {{ model.config.ip }} {{ model.config.prefix_length|cidr_to_netmask }}{{ ' secondary' if model.config.secondary else '' }}\n" + negate: " default ip address {{ model.config.ip }} {{ model.config.prefix_length|cidr_to_netmask }}{{ ' secondary' if model.config.secondary else '' }}\n" + replace: false ip: _process: unnecessary config: diff --git a/napalm_yang/mappings/ios/translators/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/ios/translators/openconfig-interfaces/interfaces.yaml index bb5c2208..5355473a 100644 --- a/napalm_yang/mappings/ios/translators/openconfig-interfaces/interfaces.yaml +++ b/napalm_yang/mappings/ios/translators/openconfig-interfaces/interfaces.yaml @@ -7,10 +7,9 @@ interfaces: _process: unnecessary interface: _process: - mode: container - key_value: "interface {{ interface_key }}\n" - negate: "{{ 'no' if interface_key[0:4] in ['Port', 'Loop'] else 'default' }} interface {{ interface_key }}\n" - end: " exit\n" + - key_value: "interface {{ interface_key }}\n" + negate: "{{ 'no' if interface_key[0:4] in ['Port', 'Loop'] else 'default' }} interface {{ interface_key }}\n" + end: " exit\n" name: _process: unnecessary hold-time: @@ -29,18 +28,15 @@ interfaces: _process: unnecessary enabled: _process: - - mode: element - value: " shutdown\n" + - value: " shutdown\n" when: "{{ not model }}" description: _process: - - mode: element - value: " description {{ model }}\n" + - value: " description {{ model }}\n" negate: " default description\n" mtu: _process: - - mode: element - value: " mtu {{ model }}\n" + - value: " mtu {{ model }}\n" negate: " default mtu\n" # IOS will complain with % Interface Loopback1 does not support user settable mtu. when: "{{ model and interface_key[0:4] not in ['Mana', 'Loop'] }}" @@ -48,11 +44,10 @@ interfaces: _process: unnecessary subinterface: _process: - mode: container - key_value: "interface {{ interface_key}}.{{ subinterface_key }}\n" - negate: "no interface {{ interface_key}}.{{ subinterface_key }}\n" - in: "interfaces" - end: " exit\n" + - key_value: "interface {{ interface_key}}.{{ subinterface_key }}\n" + negate: "no interface {{ interface_key}}.{{ subinterface_key }}\n" + in: "interfaces" + end: " exit\n" index: _process: unnecessary config: @@ -63,11 +58,9 @@ interfaces: _process: unnecessary enabled: _process: - - mode: element - value: " shutdown\n" + - value: " shutdown\n" when: "{{ not model }}" description: _process: - - mode: element - value: " description {{ model }}\n" + - value: " description {{ model }}\n" negate: " default description" diff --git a/napalm_yang/mappings/ios/translators/openconfig-vlan/vlan.yaml b/napalm_yang/mappings/ios/translators/openconfig-vlan/vlan.yaml index d4f22c68..c0b35e2e 100644 --- a/napalm_yang/mappings/ios/translators/openconfig-vlan/vlan.yaml +++ b/napalm_yang/mappings/ios/translators/openconfig-vlan/vlan.yaml @@ -8,6 +8,5 @@ vlan: _process: unnecessary vlan-id: _process: - - mode: element - value: " encapsulation dot1q {{ model }}\n" + - value: " encapsulation dot1q {{ model }}\n" negate: " no encapsulation dot1q\n" diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-if-ip/ipv4.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-if-ip/ipv4.yaml index fca0585a..f59f7fce 100644 --- a/napalm_yang/mappings/junos/parsers/config/openconfig-if-ip/ipv4.yaml +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-if-ip/ipv4.yaml @@ -8,35 +8,29 @@ ipv4: _process: unnecessary enabled: _process: - mode: is_present - xpath: "family/inet" - from: "{{ bookmarks['parent'] }}" + - mode: is_present + path: "family.inet" + regexp: "(?P(?P.*))\\/(?P\\d+)" mtu: _process: not_implemented addresses: - _process: unnecessary + _process: + - path: "family.inet" address: _process: - mode: xpath - xpath: "family/inet/address" - key: name - from: "{{ bookmarks['parent'] }}" + - path: "address" + key: name + regexp: "(?P(?P.*))\\/(?P\\d+)" ip: _process: unnecessary config: _process: unnecessary ip: _process: - mode: xpath - xpath: "name" - regexp: "(?P.*)/\\d+" - from: "{{ bookmarks['parent'] }}" + - value: "{{ extra_vars.address.ip }}" prefix-length: _process: - mode: xpath - xpath: "name" - regexp: ".*/(?P\\d+)" - from: "{{ bookmarks['parent'] }}" + - value: "{{ extra_vars.address.prefix }}" vrrp: _process: not_implemented vrrp-group: diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-interfaces/interfaces.yaml index 7a6a7b31..0b568777 100644 --- a/napalm_yang/mappings/junos/parsers/config/openconfig-interfaces/interfaces.yaml +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-interfaces/interfaces.yaml @@ -3,17 +3,17 @@ metadata: processor: XMLParser execute: - method: _rpc - args: + kwargs: get: "" interfaces: - _process: unnecessary + _process: + - path: "configuration.interfaces" + from: root_interfaces.0 interface: _process: - mode: xpath - xpath: "interfaces/interface" - key: name - from: "{{ bookmarks.interfaces.0 }}" + - path: "interface" + key: name name: _process: unnecessary hold-time: @@ -28,61 +28,50 @@ interfaces: _process: unnecessary name: _process: - mode: value - value: "{{ interface_key }}" + - value: "{{ interface_key }}" type: _process: - mode: map - xpath: name - regexp: "(?P[a-z]+).*" - # Next field could easily be - # from: "{{ bookmarks['parent'] }}" - # but this is more efficient - from: "{{ parent_key }}" - map: - ge: ethernetCsmacd - lo: softwareLoopback - ae: ieee8023adLag + - mode: map + path: name + regexp: "(?P[a-z]+).*" + map: + ge: ethernetCsmacd + xe: ethernetCsmacd + et: ethernetCsmacd + irb: ethernetCsmacd + me: ethernetCsmacd + vlan: ethernetCsmacd + lo: softwareLoopback + ae: ieee8023adLag enabled: _process: - mode: is_absent - xpath: "disable" - from: "{{ bookmarks['parent'] }}" + - mode: is_absent + path: "disable" description: _process: - mode: xpath - xpath: description - from: "{{ bookmarks['parent'] }}" + - path: description mtu: _process: - mode: xpath - xpath: mtu - from: "{{ bookmarks['parent'] }}" + - path: mtu subinterfaces: - _process: not_implemented + _process: unnecessary subinterface: _process: - mode: xpath - xpath: "unit" - key: name - from: "{{ bookmarks['parent'] }}" + - path: "unit" + key: name index: _process: unnecessary config: - _process: not_implemented + _process: unnecessary index: _process: not_implemented name: _process: - mode: value - value: "{{ subinterface_key }}" + - value: "{{ subinterface_key }}" enabled: _process: - mode: is_absent - xpath: "disable" - from: "{{ bookmarks['parent'] }}" + - mode: is_absent + path: "disable" description: _process: - mode: xpath - xpath: description - from: "{{ bookmarks['parent'] }}" + - path: description diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/afts.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/afts.yaml new file mode 100644 index 00000000..bd462863 --- /dev/null +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/afts.yaml @@ -0,0 +1,54 @@ +_process: not_implemented +aft: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + entries: + _process: not_implemented + entry: + _process: not_implemented + config: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + match: + _process: not_implemented + interface-ref: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + next-hops: + _process: not_implemented + next-hop: + _process: not_implemented + config: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/bgp.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/bgp.yaml new file mode 100644 index 00000000..b0f08412 --- /dev/null +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/bgp.yaml @@ -0,0 +1,1164 @@ +--- +_process: + - mode: gate + when: "{{ protocol_key != 'bgp bgp' }}" +global: + _process: unnecessary + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + confederation: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + identifier: + _process: not_implemented + member-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: unnecessary + as: + _process: + - path: "routing-options.autonomous-system.as-number" + from: "network_instance.{{ network_instance_key }}" + router-id: + _process: + - path: "routing-options.router-id" + from: "network_instance.{{ network_instance_key }}" + default-route-distance: + _process: not_implemented + config: + _process: not_implemented + external-route-distance: + _process: not_implemented + internal-route-distance: + _process: not_implemented + state: + _process: not_implemented + dynamic-neighbor-prefixes: + _process: not_implemented + dynamic-neighbor-prefix: + _process: not_implemented + config: + _process: not_implemented + peer-group: + _process: not_implemented + prefix: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +neighbors: + _process: unnecessary + neighbor: + _process: + - path: "group.?peer_group:name.neighbor.?neighbor:name" + key: "neighbor" + add-paths: + _process: not_implemented + config: + _process: not_implemented + eligible-prefix-policy: + _process: not_implemented + receive: + _process: not_implemented + send-max: + _process: not_implemented + state: + _process: not_implemented + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + as-path-options: + _process: not_implemented + config: + _process: not_implemented + allow-own-as: + _process: not_implemented + replace-peer-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: unnecessary + auth-password: + _process: not_implemented + description: + _process: + - path: "description" + enabled: + _process: not_implemented + local-as: + _process: + - path: "local-as.as-number" + neighbor-address: + _process: + - value: "{{ neighbor_key }}" + peer-as: + _process: + - path: "peer-as" + peer-group: + _process: + - path: "peer_group" + peer-type: + _process: not_implemented + remove-private-as: + _process: not_implemented + route-flap-damping: + _process: not_implemented + send-community: + _process: not_implemented + ebgp-multihop: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + multihop-ttl: + _process: not_implemented + state: + _process: not_implemented + error-handling: + _process: not_implemented + config: + _process: not_implemented + treat-as-withdraw: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + logging-options: + _process: not_implemented + config: + _process: not_implemented + log-neighbor-state-changes: + _process: not_implemented + state: + _process: not_implemented + neighbor-address: + _process: not_implemented + route-reflector: + _process: not_implemented + config: + _process: not_implemented + route-reflector-client: + _process: not_implemented + route-reflector-cluster-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + connect-retry: + _process: not_implemented + hold-time: + _process: not_implemented + keepalive-interval: + _process: not_implemented + minimum-advertisement-interval: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + local-address: + _process: not_implemented + mtu-discovery: + _process: not_implemented + passive-mode: + _process: not_implemented + tcp-mss: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +peer-groups: + _process: not_implemented + peer-group: + _process: not_implemented + add-paths: + _process: not_implemented + config: + _process: not_implemented + eligible-prefix-policy: + _process: not_implemented + receive: + _process: not_implemented + send-max: + _process: not_implemented + state: + _process: not_implemented + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + as-path-options: + _process: not_implemented + config: + _process: not_implemented + allow-own-as: + _process: not_implemented + replace-peer-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + description: + _process: not_implemented + local-as: + _process: not_implemented + peer-as: + _process: not_implemented + peer-group-name: + _process: not_implemented + peer-type: + _process: not_implemented + remove-private-as: + _process: not_implemented + route-flap-damping: + _process: not_implemented + send-community: + _process: not_implemented + ebgp-multihop: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + multihop-ttl: + _process: not_implemented + state: + _process: not_implemented + error-handling: + _process: not_implemented + config: + _process: not_implemented + treat-as-withdraw: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + logging-options: + _process: not_implemented + config: + _process: not_implemented + log-neighbor-state-changes: + _process: not_implemented + state: + _process: not_implemented + peer-group-name: + _process: not_implemented + route-reflector: + _process: not_implemented + config: + _process: not_implemented + route-reflector-client: + _process: not_implemented + route-reflector-cluster-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + connect-retry: + _process: not_implemented + hold-time: + _process: not_implemented + keepalive-interval: + _process: not_implemented + minimum-advertisement-interval: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + local-address: + _process: not_implemented + mtu-discovery: + _process: not_implemented + passive-mode: + _process: not_implemented + tcp-mss: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/isis.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/isis.yaml new file mode 100644 index 00000000..463623fd --- /dev/null +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/isis.yaml @@ -0,0 +1,508 @@ +--- +_process: not_implemented +global: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + metric: + _process: not_implemented + safi-name: + _process: not_implemented + multi-topology: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + authentication-check: + _process: not_implemented + fast-flooding: + _process: not_implemented + iid-tlv: + _process: not_implemented + instance: + _process: not_implemented + level-capability: + _process: not_implemented + max-ecmp-paths: + _process: not_implemented + maximum-area-addresses: + _process: not_implemented + net: + _process: not_implemented + poi-tlv: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + state: + _process: not_implemented + igp-shortcuts: + _process: not_implemented + afi: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + nh-type: + _process: not_implemented + state: + _process: not_implemented + inter-level-propagation-policies: + _process: not_implemented + level1-to-level2: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + level2-to-level1: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + lsp-bit: + _process: not_implemented + attached-bit: + _process: not_implemented + config: + _process: not_implemented + ignore-bit: + _process: not_implemented + suppress-bit: + _process: not_implemented + state: + _process: not_implemented + overload-bit: + _process: not_implemented + config: + _process: not_implemented + advertise-high-metric: + _process: not_implemented + set-bit: + _process: not_implemented + set-bit-on-boot: + _process: not_implemented + reset-triggers: + _process: not_implemented + reset-trigger: + _process: not_implemented + config: + _process: not_implemented + delay: + _process: not_implemented + reset-trigger: + _process: not_implemented + reset-trigger: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + nsr: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + reference-bandwidth: + _process: not_implemented + config: + _process: not_implemented + reference-bandwidth: + _process: not_implemented + state: + _process: not_implemented + segment-routing: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + srgb: + _process: not_implemented + srlb: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + lsp-lifetime-interval: + _process: not_implemented + lsp-refresh-interval: + _process: not_implemented + lsp-generation: + _process: not_implemented + config: + _process: not_implemented + lsp-first-wait-interval: + _process: not_implemented + lsp-max-wait-interval: + _process: not_implemented + lsp-second-wait-interval: + _process: not_implemented + state: + _process: not_implemented + spf: + _process: not_implemented + config: + _process: not_implemented + spf-first-interval: + _process: not_implemented + spf-hold-interval: + _process: not_implemented + spf-second-interval: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + lsp-mtu-size: + _process: not_implemented + state: + _process: not_implemented +interfaces: + _process: not_implemented + interface: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + safi-name: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + hello-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + bfd: + _process: not_implemented + config: + _process: not_implemented + bfd-tlv: + _process: not_implemented + state: + _process: not_implemented + circuit-counters: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + circuit-type: + _process: not_implemented + enabled: + _process: not_implemented + hello-padding: + _process: not_implemented + interface-id: + _process: not_implemented + passive: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + levels: + _process: not_implemented + level: + _process: not_implemented + adjacencies: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + metric: + _process: not_implemented + safi-name: + _process: not_implemented + safi-name: + _process: not_implemented + segment-routing: + _process: not_implemented + adjacency-sids: + _process: not_implemented + adjacency-sid: + _process: not_implemented + config: + _process: not_implemented + group: + _process: not_implemented + neighbor: + _process: not_implemented + protection-eligible: + _process: not_implemented + sid-id: + _process: not_implemented + neighbor: + _process: not_implemented + sid-id: + _process: not_implemented + state: + _process: not_implemented + prefix-sids: + _process: not_implemented + prefix-sid: + _process: not_implemented + config: + _process: not_implemented + label-options: + _process: not_implemented + prefix: + _process: not_implemented + sid-id: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + level-number: + _process: not_implemented + passive: + _process: not_implemented + priority: + _process: not_implemented + hello-authentication: + _process: not_implemented + config: + _process: not_implemented + hello-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + level-number: + _process: not_implemented + packet-counters: + _process: not_implemented + cnsp: + _process: not_implemented + state: + _process: not_implemented + esh: + _process: not_implemented + state: + _process: not_implemented + iih: + _process: not_implemented + state: + _process: not_implemented + ish: + _process: not_implemented + state: + _process: not_implemented + lsp: + _process: not_implemented + state: + _process: not_implemented + psnp: + _process: not_implemented + state: + _process: not_implemented + unknown: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + hello-multiplier: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + csnp-interval: + _process: not_implemented + lsp-pacing-interval: + _process: not_implemented + state: + _process: not_implemented +levels: + _process: not_implemented + level: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + csnp-authentication: + _process: not_implemented + lsp-authentication: + _process: not_implemented + psnp-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + authentication-check: + _process: not_implemented + enabled: + _process: not_implemented + level-number: + _process: not_implemented + metric-style: + _process: not_implemented + level-number: + _process: not_implemented + link-state-database: + _process: not_implemented + route-preference: + _process: not_implemented + config: + _process: not_implemented + external-route-preference: + _process: not_implemented + internal-route-preference: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + system-level-counters: + _process: not_implemented + state: + _process: not_implemented + traffic-engineering: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ipv4-router-id: + _process: not_implemented + ipv6-router-id: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/mpls.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/mpls.yaml new file mode 100644 index 00000000..ba853c58 --- /dev/null +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/mpls.yaml @@ -0,0 +1,584 @@ +--- +_process: not_implemented +global: + _process: not_implemented + config: + _process: not_implemented + null-label: + _process: not_implemented + interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + mpls-enabled: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + reserved-label-blocks: + _process: not_implemented + reserved-label-block: + _process: not_implemented + config: + _process: not_implemented + local-id: + _process: not_implemented + lower-bound: + _process: not_implemented + upper-bound: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +lsps: + _process: not_implemented + constrained-path: + _process: not_implemented + named-explicit-paths: + _process: not_implemented + named-explicit-path: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + sid-protection-required: + _process: not_implemented + sid-selection-mode: + _process: not_implemented + explicit-route-objects: + _process: not_implemented + explicit-route-object: + _process: not_implemented + config: + _process: not_implemented + address: + _process: not_implemented + hop-type: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + state: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + tunnels: + _process: not_implemented + tunnel: + _process: not_implemented + bandwidth: + _process: not_implemented + auto-bandwidth: + _process: not_implemented + config: + _process: not_implemented + adjust-interval: + _process: not_implemented + adjust-threshold: + _process: not_implemented + enabled: + _process: not_implemented + max-bw: + _process: not_implemented + min-bw: + _process: not_implemented + overflow: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + overflow-threshold: + _process: not_implemented + trigger-event-count: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + underflow: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + trigger-event-count: + _process: not_implemented + underflow-threshold: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + set-bandwidth: + _process: not_implemented + specification-type: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + admin-status: + _process: not_implemented + description: + _process: not_implemented + hold-priority: + _process: not_implemented + metric: + _process: not_implemented + metric-type: + _process: not_implemented + name: + _process: not_implemented + preference: + _process: not_implemented + protection-style-requested: + _process: not_implemented + reoptimize-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + shortcut-eligible: + _process: not_implemented + signaling-protocol: + _process: not_implemented + soft-preemption: + _process: not_implemented + source: + _process: not_implemented + type: + _process: not_implemented + name: + _process: not_implemented + p2p-tunnel-attributes: + _process: not_implemented + config: + _process: not_implemented + destination: + _process: not_implemented + p2p-primary-path: + _process: not_implemented + p2p-primary-path: + _process: not_implemented + admin-groups: + _process: not_implemented + config: + _process: not_implemented + exclude-group: + _process: not_implemented + include-all-group: + _process: not_implemented + include-any-group: + _process: not_implemented + state: + _process: not_implemented + candidate-secondary-paths: + _process: not_implemented + candidate-secondary-path: + _process: not_implemented + config: + _process: not_implemented + priority: + _process: not_implemented + secondary-path: + _process: not_implemented + secondary-path: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + cspf-tiebreaker: + _process: not_implemented + explicit-path-name: + _process: not_implemented + hold-priority: + _process: not_implemented + name: + _process: not_implemented + path-computation-method: + _process: not_implemented + path-computation-server: + _process: not_implemented + preference: + _process: not_implemented + retry-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + use-cspf: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + p2p-secondary-paths: + _process: not_implemented + p2p-secondary-path: + _process: not_implemented + admin-groups: + _process: not_implemented + config: + _process: not_implemented + exclude-group: + _process: not_implemented + include-all-group: + _process: not_implemented + include-any-group: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + cspf-tiebreaker: + _process: not_implemented + explicit-path-name: + _process: not_implemented + hold-priority: + _process: not_implemented + name: + _process: not_implemented + path-computation-method: + _process: not_implemented + path-computation-server: + _process: not_implemented + preference: + _process: not_implemented + retry-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + use-cspf: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + static-lsps: + _process: not_implemented + static-lsp: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + egress: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + ingress: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + transit: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + unconstrained-path: + _process: not_implemented + path-setup-protocol: + _process: not_implemented +signaling-protocols: + _process: not_implemented + rsvp-te: + _process: not_implemented + global: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enable: + _process: not_implemented + recovery-time: + _process: not_implemented + restart-time: + _process: not_implemented + state: + _process: not_implemented + hellos: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + refresh-reduction: + _process: not_implemented + state: + _process: not_implemented + soft-preemption: + _process: not_implemented + config: + _process: not_implemented + enable: + _process: not_implemented + soft-preemption-timeout: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + authentication-key: + _process: not_implemented + enable: + _process: not_implemented + state: + _process: not_implemented + bandwidth-reservations: + _process: not_implemented + bandwidth-reservation: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + hellos: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + refresh-reduction: + _process: not_implemented + state: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + protection: + _process: not_implemented + config: + _process: not_implemented + bypass-optimize-interval: + _process: not_implemented + link-protection-style-requested: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + subscription: + _process: not_implemented + config: + _process: not_implemented + subscription: + _process: not_implemented + state: + _process: not_implemented + neighbors: + _process: not_implemented + neighbor: + _process: not_implemented + sessions: + _process: not_implemented + session: + _process: not_implemented + segment-routing: + _process: not_implemented + aggregate-sid-counters: + _process: not_implemented + aggregate-sid-counter: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + sid-counters: + _process: not_implemented + sid-counter: + _process: not_implemented + state: + _process: not_implemented +te-global-attributes: + _process: not_implemented + mpls-admin-groups: + _process: not_implemented + admin-group: + _process: not_implemented + admin-group-name: + _process: not_implemented + config: + _process: not_implemented + admin-group-name: + _process: not_implemented + bit-position: + _process: not_implemented + state: + _process: not_implemented + srlgs: + _process: not_implemented + srlg: + _process: not_implemented + config: + _process: not_implemented + cost: + _process: not_implemented + flooding-type: + _process: not_implemented + name: + _process: not_implemented + value: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + static-srlg-members: + _process: not_implemented + members-list: + _process: not_implemented + config: + _process: not_implemented + from-address: + _process: not_implemented + to-address: + _process: not_implemented + from-address: + _process: not_implemented + state: + _process: not_implemented + te-lsp-timers: + _process: not_implemented + config: + _process: not_implemented + cleanup-delay: + _process: not_implemented + install-delay: + _process: not_implemented + reoptimize-timer: + _process: not_implemented + state: + _process: not_implemented +te-interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + admin-group: + _process: not_implemented + interface-id: + _process: not_implemented + srlg-membership: + _process: not_implemented + te-metric: + _process: not_implemented + igp-flooding-bandwidth: + _process: not_implemented + config: + _process: not_implemented + delta-percentage: + _process: not_implemented + down-thresholds: + _process: not_implemented + threshold-specification: + _process: not_implemented + threshold-type: + _process: not_implemented + up-down-thresholds: + _process: not_implemented + up-thresholds: + _process: not_implemented + state: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/ospfv2.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/ospfv2.yaml new file mode 100644 index 00000000..adf0afef --- /dev/null +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/ospfv2.yaml @@ -0,0 +1,224 @@ +--- +_process: not_implemented +areas: + _process: not_implemented + area: + _process: not_implemented + config: + _process: not_implemented + identifier: + _process: not_implemented + identifier: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + authentication-type: + _process: not_implemented + hide-network: + _process: not_implemented + id: + _process: not_implemented + metric: + _process: not_implemented + multi-area-adjacency-primary: + _process: not_implemented + network-type: + _process: not_implemented + passive: + _process: not_implemented + priority: + _process: not_implemented + id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + lsa-filter: + _process: not_implemented + config: + _process: not_implemented + all: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-metric: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + neighbors: + _process: not_implemented + neighbor: + _process: not_implemented + config: + _process: not_implemented + metric: + _process: not_implemented + router-id: + _process: not_implemented + router-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + dead-interval: + _process: not_implemented + hello-interval: + _process: not_implemented + retransmission-interval: + _process: not_implemented + state: + _process: not_implemented + lsdb: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-enabled: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + virtual-links: + _process: not_implemented + virtual-link: + _process: not_implemented + config: + _process: not_implemented + remote-router-id: + _process: not_implemented + remote-router-id: + _process: not_implemented + state: + _process: not_implemented +global: + _process: not_implemented + config: + _process: not_implemented + hide-transit-only-networks: + _process: not_implemented + igp-shortcuts: + _process: not_implemented + log-adjacency-changes: + _process: not_implemented + router-id: + _process: not_implemented + summary-route-cost-mode: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + state: + _process: not_implemented + inter-area-propagation-policies: + _process: not_implemented + inter-area-propagation-policy: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + dst-area: + _process: not_implemented + import-policy: + _process: not_implemented + src-area: + _process: not_implemented + dst-area: + _process: not_implemented + src-area: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-extensions: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + lsa-generation: + _process: not_implemented + config: + _process: not_implemented + initial-delay: + _process: not_implemented + maximum-delay: + _process: not_implemented + state: + _process: not_implemented + max-metric: + _process: not_implemented + config: + _process: not_implemented + include: + _process: not_implemented + set: + _process: not_implemented + timeout: + _process: not_implemented + trigger: + _process: not_implemented + state: + _process: not_implemented + spf: + _process: not_implemented + config: + _process: not_implemented + initial-delay: + _process: not_implemented + maximum-delay: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/static_routes.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/static_routes.yaml new file mode 100644 index 00000000..2ce18ba9 --- /dev/null +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/includes/static_routes.yaml @@ -0,0 +1,52 @@ +--- +_process: + - mode: gate + when: "{{ protocol_key != 'static static' }}" +static: + _process: + - path: "route" + key: name + config: + _process: unnecessary + prefix: + _process: + - value: "{{ static_key }}" + set-tag: + _process: not_implemented + next-hops: + _process: unnecessary + next-hop: + _process: + - path: "qualified-next-hop" + key: name + config: + _process: unnecessary + index: + _process: not_implemented + metric: + _process: + - path: "metric" + next-hop: + _process: + - value: "{{ next_hop_key }}" + recurse: + _process: not_implemented + index: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/network-instances.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/network-instances.yaml new file mode 100644 index 00000000..07c7c281 --- /dev/null +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-network-instance/network-instances.yaml @@ -0,0 +1,461 @@ +--- +metadata: + processor: XMLParser + execute: + - method: _rpc + kwargs: + get: "" + +network-instances: + _process: + - path: "configuration.routing-instances" + from: root_network-instances.0 + network-instance: + _process: + - path: "configuration" + key: "{{ 'global' }}" + from: root_network-instances.0 + - path: "instance" + key: name + afts: !include includes/afts.yaml + config: + _process: unnecessary + description: + _process: + - path: description + enabled: + _process: + - value: "true" + enabled-address-families: + _process: not_implemented + mtu: + _process: not_implemented + name: + _process: unnecessary + route-distinguisher: + _process: not_implemented + router-id: + _process: not_implemented + type: + _process: + - value: DEFAULT_INSTANCE + when: "{{ network_instance_key == 'global' }}" + - mode: map + path: instance-type + map: + vrf: L3VRF + virtual-router: L2L3 + when: "{{ network_instance_key != 'global' }}" + connection-points: + _process: not_implemented + connection-point: + _process: not_implemented + config: + _process: not_implemented + connection-point-id: + _process: not_implemented + connection-point-id: + _process: not_implemented + endpoints: + _process: not_implemented + endpoint: + _process: not_implemented + config: + _process: not_implemented + endpoint-id: + _process: not_implemented + precedence: + _process: not_implemented + type: + _process: not_implemented + endpoint-id: + _process: not_implemented + local: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + remote: + _process: not_implemented + config: + _process: not_implemented + remote-system: + _process: not_implemented + virtual-circuit-identifier: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + encapsulation: + _process: not_implemented + config: + _process: not_implemented + control-word: + _process: not_implemented + encapsulation-type: + _process: not_implemented + label-allocation-mode: + _process: not_implemented + state: + _process: not_implemented + fdb: + _process: not_implemented + config: + _process: not_implemented + mac-aging-time: + _process: not_implemented + mac-learning: + _process: not_implemented + maximum-entries: + _process: not_implemented + mac-table: + _process: not_implemented + entries: + _process: not_implemented + entry: + _process: not_implemented + config: + _process: not_implemented + mac-address: + _process: not_implemented + vlan: + _process: not_implemented + interface: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + mac-address: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + inter-instance-policies: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + interfaces: + _process: unnecessary + interface: + _process: not_implemented + config: + _process: not_implemented + associated-address-families: + _process: not_implemented + id: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + id: + _process: not_implemented + state: + _process: not_implemented + mpls: !include includes/mpls.yaml + name: + _process: not_implemented + policy-forwarding: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + apply-forwarding-policy: + _process: not_implemented + interface-id: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + path-selection-groups: + _process: not_implemented + path-selection-group: + _process: not_implemented + config: + _process: not_implemented + group-id: + _process: not_implemented + mpls-lsp: + _process: not_implemented + group-id: + _process: not_implemented + state: + _process: not_implemented + policies: + _process: not_implemented + policy: + _process: not_implemented + config: + _process: not_implemented + policy-id: + _process: not_implemented + policy-id: + _process: not_implemented + rules: + _process: not_implemented + rule: + _process: not_implemented + action: + _process: not_implemented + config: + _process: not_implemented + decapsulate-gre: + _process: not_implemented + discard: + _process: not_implemented + network-instance: + _process: not_implemented + next-hop: + _process: not_implemented + path-selection-group: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + sequence-id: + _process: not_implemented + ip: + _process: not_implemented + config: + _process: not_implemented + destination-ip-address: + _process: not_implemented + destination-ip-flow-label: + _process: not_implemented + dscp: + _process: not_implemented + hop-limit: + _process: not_implemented + ip-version: + _process: not_implemented + protocol: + _process: not_implemented + source-ip-address: + _process: not_implemented + source-ip-flow-label: + _process: not_implemented + state: + _process: not_implemented + l2: + _process: not_implemented + config: + _process: not_implemented + destination-mac: + _process: not_implemented + destination-mac-mask: + _process: not_implemented + ethertype: + _process: not_implemented + source-mac: + _process: not_implemented + source-mac-mask: + _process: not_implemented + state: + _process: not_implemented + sequence-id: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + destination-port: + _process: not_implemented + source-port: + _process: not_implemented + tcp-flags: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + protocols: + _process: unnecessary + protocol: + _process: + - path: "protocols.?protocol" + key: "{{ protocol }} {{ protocol }}" + - path: "routing-options.static" + key: "{{ 'static static' }}" + bgp: !include includes/bgp.yaml + config: + _process: not_implemented + default-metric: + _process: not_implemented + enabled: + _process: not_implemented + identifier: + _process: not_implemented + name: + _process: not_implemented + identifier: + _process: unnecessary + isis: !include includes/isis.yaml + local-aggregates: + _process: not_implemented + aggregate: + _process: not_implemented + config: + _process: not_implemented + discard: + _process: not_implemented + prefix: + _process: not_implemented + set-tag: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + name: + _process: unnecessary + ospfv2: !include includes/ospfv2.yaml + state: + _process: not_implemented + static-routes: !include includes/static_routes.yaml + segment-routing: + _process: not_implemented + srgbs: + _process: not_implemented + srgb: + _process: not_implemented + config: + _process: not_implemented + dataplane-type: + _process: not_implemented + ipv6-prefixes: + _process: not_implemented + local-id: + _process: not_implemented + mpls-label-blocks: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented + srlbs: + _process: not_implemented + srlb: + _process: not_implemented + config: + _process: not_implemented + dataplane-type: + _process: not_implemented + ipv6-prefix: + _process: not_implemented + local-id: + _process: not_implemented + mpls-label-block: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + table-connections: + _process: not_implemented + table-connection: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + default-import-policy: + _process: not_implemented + dst-protocol: + _process: not_implemented + import-policy: + _process: not_implemented + src-protocol: + _process: not_implemented + dst-protocol: + _process: not_implemented + src-protocol: + _process: not_implemented + state: + _process: not_implemented + tables: + _process: not_implemented + table: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + protocol: + _process: not_implemented + protocol: + _process: not_implemented + state: + _process: not_implemented + vlans: + _process: not_implemented + vlan: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + status: + _process: not_implemented + tpid: + _process: not_implemented + vlan-id: + _process: not_implemented + members: + _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented + vlan-id: + _process: not_implemented diff --git a/napalm_yang/mappings/junos/parsers/config/openconfig-vlan/vlan.yaml b/napalm_yang/mappings/junos/parsers/config/openconfig-vlan/vlan.yaml index b0db1a24..2c0abe4e 100644 --- a/napalm_yang/mappings/junos/parsers/config/openconfig-vlan/vlan.yaml +++ b/napalm_yang/mappings/junos/parsers/config/openconfig-vlan/vlan.yaml @@ -8,6 +8,4 @@ vlan: _process: unnecessary vlan-id: _process: - mode: xpath - xpath: "vlan-id" - from: "{{ bookmarks['parent'] }}" + - path: "vlan-id" diff --git a/napalm_yang/mappings/junos/parsers/state/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/junos/parsers/state/openconfig-interfaces/interfaces.yaml index ebd61ec4..d951c16b 100644 --- a/napalm_yang/mappings/junos/parsers/state/openconfig-interfaces/interfaces.yaml +++ b/napalm_yang/mappings/junos/parsers/state/openconfig-interfaces/interfaces.yaml @@ -3,17 +3,17 @@ metadata: processor: XMLParser execute: - method: _rpc - args: + kwargs: get: "" interfaces: - _process: not_implemented + _process: + - path: "interface-information" + from: root_interfaces.0 interface: _process: - mode: xpath - xpath: "physical-interface" - key: name - from: "{{ bookmarks.interfaces.0 }}" + - path: "physical-interface" + key: name config: _process: unnecessary hold-time: @@ -27,166 +27,133 @@ interfaces: up: _process: not_implemented state: - _process: not_implemented + _process: unnecessary admin-status: _process: - mode: map - xpath: "admin-status" - from: "{{ bookmarks['parent'] }}" - map: - up: UP - down: DOWN + - mode: map + path: "admin-status" + map: + up: UP + down: DOWN description: _process: - mode: xpath - xpath: "description" - from: "{{ bookmarks['parent'] }}" + - path: "description" enabled: _process: - mode: map - xpath: "admin-status" - from: "{{ bookmarks['parent'] }}" - map: - up: true - down: false + - mode: map + path: "admin-status" + map: + up: true + down: false ifindex: _process: - mode: xpath - xpath: "snmp-index" - from: "{{ bookmarks['parent'] }}" + - path: "snmp-index" last-change: _process: - mode: xpath - xpath: "interface-flapped" - attribute: "seconds" - from: "{{ bookmarks['parent'] }}" + - path: "interface-flapped" + attribute: "seconds" mtu: _process: - mode: xpath - xpath: "mtu" - regexp: "(?P\\d+)" # Someone thought mixing strings and ints was a good idea - from: "{{ bookmarks['parent'] }}" + - path: "mtu" + regexp: "(?P\\d+)" # Someone thought mixing strings and ints was a good idea name: _process: unnecessary oper-status: _process: - mode: map - xpath: "oper-status" - from: "{{ bookmarks['parent'] }}" - map: - up: UP - down: DOWN + - mode: map + path: "oper-status" + map: + up: UP + down: DOWN type: _process: - mode: map - xpath: "if-type" - from: "{{ bookmarks['parent'] }}" - map: - GRE: tunnel - IPIP: tunnel - Logical-tunnel: tunnel - Multicast-GRE: tunnel - Secure-Tunnel: tunnel - Ethernet: ethernetCsmacd - Loopback: softwareLoopback - VLAN: l2vlan - Adaptive-Services: null - Software-Pseudo: null - PIMD: null - PIME: null - PPPoE: null + - mode: map + default: unspecified + path: "if-type" + map: + gre: tunnel + ipip: tunnel + logical-tunnel: tunnel + multicast-gre: tunnel + secure-tunnel: tunnel + ethernet: ethernetCsmacd + mgmt-VLAN: ethernetCsmacd + loopback: softwareLoopback + vlan: l2vlan + adaptive-services: null + software-pseudo: null + pimd: null + pime: null + pppoe: null + unspecified: null counters: - _process: not_implemented + _process: unnecessary in-broadcast-pkts: _process: - mode: xpath - xpath: "ethernet-mac-statistics/input-broadcasts" - from: "{{ bookmarks['parent'] }}" + - path: "ethernet-mac-statistics.input-broadcasts" in-discards: _process: - mode: xpath - xpath: "input-error-list/input-discards" - from: "{{ bookmarks['parent'] }}" + - path: "input-error-list.input-discards" in-errors: _process: - mode: xpath - xpath: "input-error-list/input-errors" - from: "{{ bookmarks['parent'] }}" + - path: "input-error-list.input-errors" in-multicast-pkts: _process: - mode: xpath - xpath: "ethernet-mac-statistics/input-multicasts" - from: "{{ bookmarks['parent'] }}" + - path: "ethernet-mac-statistics.input-multicasts" in-octets: _process: not_implemented in-unicast-pkts: _process: - mode: xpath - xpath: "ethernet-mac-statistics/input-unicasts" - from: "{{ bookmarks['parent'] }}" + - path: "ethernet-mac-statistics.input-unicasts" in-unknown-protos: _process: not_implemented last-clear: _process: not_implemented out-broadcast-pkts: _process: - mode: xpath - xpath: "ethernet-mac-statistics/output-broadcasts" - from: "{{ bookmarks['parent'] }}" + - path: "ethernet-mac-statistics.output-broadcasts" out-discards: _process: not_implemented out-errors: _process: - mode: xpath - xpath: "output-error-list/output-errors" - from: "{{ bookmarks['parent'] }}" + - path: "output-error-list.output-errors" out-multicast-pkts: _process: - mode: xpath - xpath: "ethernet-mac-statistics/output-multicasts" - from: "{{ bookmarks['parent'] }}" + - path: "ethernet-mac-statistics.output-multicasts" out-octets: _process: not_implemented out-unicast-pkts: _process: - mode: xpath - xpath: "ethernet-mac-statistics/output-unicasts" - from: "{{ bookmarks['parent'] }}" + - path: "ethernet-mac-statistics.output-unicasts" subinterfaces: _process: unnecessary subinterface: _process: - mode: xpath - xpath: "logical-interface" - from: "{{ bookmarks['parent'] }}" + - path: "logical-interface" + key: name index: _process: unnecessary config: _process: unnecessary state: - _process: not_implemented + _process: unnecessary index: _process: not_implemented description: _process: - mode: xpath - xpath: "description" - from: "{{ bookmarks['parent'] }}" + - path: "description" enabled: _process: not_implemented admin-status: _process: not_implemented ifindex: _process: - mode: xpath - xpath: "snmp-index" - from: "{{ bookmarks['parent'] }}" + - path: "snmp-index" last-change: _process: not_implemented name: _process: - mode: value - value: "{{ subinterface_key }}" + - value: "{{ subinterface_key }}" oper-status: _process: not_implemented counters: diff --git a/napalm_yang/mappings/junos/translators/openconfig-if-ip/ipv4.yaml b/napalm_yang/mappings/junos/translators/openconfig-if-ip/ipv4.yaml index 386fb5ae..b827d669 100644 --- a/napalm_yang/mappings/junos/translators/openconfig-if-ip/ipv4.yaml +++ b/napalm_yang/mappings/junos/translators/openconfig-if-ip/ipv4.yaml @@ -4,9 +4,8 @@ metadata: ipv4: _process: - mode: container - container: family.inet - when: "{{ model.config.enabled or model.addresses.address|length }}" + - container: "family/inet" + when: "{{ model.config.enabled or model.addresses.address|length }}" config: _process: unnecessary enabled: @@ -17,8 +16,7 @@ ipv4: _process: unnecessary address: _process: - mode: container - container: address + - container: address ip: _process: unnecessary config: @@ -27,8 +25,7 @@ ipv4: _process: unnecessary prefix-length: _process: - - mode: element - element: name + - element: name value: "{{ model._parent.ip }}/{{ model }}" when: "{{ model }}" vrrp: diff --git a/napalm_yang/mappings/junos/translators/openconfig-interfaces/interfaces.yaml b/napalm_yang/mappings/junos/translators/openconfig-interfaces/interfaces.yaml index 492d5892..862bf36b 100644 --- a/napalm_yang/mappings/junos/translators/openconfig-interfaces/interfaces.yaml +++ b/napalm_yang/mappings/junos/translators/openconfig-interfaces/interfaces.yaml @@ -5,15 +5,13 @@ metadata: interfaces: _process: - mode: container - container: interfaces - replace: true + - container: interfaces + replace: true interface: _process: - mode: container - container: interface - key_element: name - key_value: "{{ interface_key }}" + - container: interface + key_element: name + key_value: "{{ interface_key }}" name: _process: unnecessary hold-time: @@ -32,26 +30,22 @@ interfaces: _process: unnecessary enabled: _process: - - mode: element - element: "disable" + - element: "disable" when: "{{ not model }}" value: null description: _process: - - mode: element - element: description + - element: description mtu: _process: - - mode: element - element: mtu + - element: mtu subinterfaces: _process: unnecessary subinterface: _process: - mode: container - container: unit - key_element: name - key_value: "{{ subinterface_key }}" + - container: unit + key_element: name + key_value: "{{ subinterface_key }}" index: _process: unnecessary config: @@ -62,11 +56,9 @@ interfaces: _process: unnecessary enabled: _process: - - mode: element - element: "disable" + - element: "disable" when: "{{ not model }}" value: null description: _process: - - mode: element - element: description + - element: description diff --git a/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/afts.yaml b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/afts.yaml new file mode 100644 index 00000000..86a8b9f7 --- /dev/null +++ b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/afts.yaml @@ -0,0 +1,55 @@ +--- +_process: not_implemented +aft: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + entries: + _process: not_implemented + entry: + _process: not_implemented + config: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + match: + _process: not_implemented + interface-ref: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + next-hops: + _process: not_implemented + next-hop: + _process: not_implemented + config: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/bgp.yaml b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/bgp.yaml new file mode 100644 index 00000000..fb25321f --- /dev/null +++ b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/bgp.yaml @@ -0,0 +1,1167 @@ +--- +_process: + - mode: gate + when: "{{ protocol_key != 'bgp bgp' }}" +global: + _process: unnecessary + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + confederation: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + identifier: + _process: not_implemented + member-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: unnecessary + as: + _process: + - element: "routing-options/autonomous-system/as-number" + in: "network_instance.{{ network_instance_key }}" + router-id: + _process: + - element: "routing-options/router-id" + in: "network_instance.{{ network_instance_key }}" + default-route-distance: + _process: not_implemented + config: + _process: not_implemented + external-route-distance: + _process: not_implemented + internal-route-distance: + _process: not_implemented + state: + _process: not_implemented + dynamic-neighbor-prefixes: + _process: not_implemented + dynamic-neighbor-prefix: + _process: not_implemented + config: + _process: not_implemented + peer-group: + _process: not_implemented + prefix: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +neighbors: + _process: unnecessary + neighbor: + _process: + - container: "group" + delete_on_merge: false + key_element: name + key_value: "{{ model.config.peer_group }}" + - container: "neighbor" + key_element: name + key_value: "{{ neighbor_key }}" + add-paths: + _process: not_implemented + config: + _process: not_implemented + eligible-prefix-policy: + _process: not_implemented + receive: + _process: not_implemented + send-max: + _process: not_implemented + state: + _process: not_implemented + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + as-path-options: + _process: not_implemented + config: + _process: not_implemented + allow-own-as: + _process: not_implemented + replace-peer-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: unnecessary + auth-password: + _process: not_implemented + description: + _process: + - element: description + enabled: + _process: not_implemented + local-as: + _process: + - element: "local-as/as-number" + neighbor-address: + _process: unnecessary + peer-as: + _process: + - element: "peer-as" + peer-group: + _process: unnecessary + peer-type: + _process: not_implemented + remove-private-as: + _process: not_implemented + route-flap-damping: + _process: not_implemented + send-community: + _process: not_implemented + ebgp-multihop: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + multihop-ttl: + _process: not_implemented + state: + _process: not_implemented + error-handling: + _process: not_implemented + config: + _process: not_implemented + treat-as-withdraw: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + logging-options: + _process: not_implemented + config: + _process: not_implemented + log-neighbor-state-changes: + _process: not_implemented + state: + _process: not_implemented + neighbor-address: + _process: not_implemented + route-reflector: + _process: not_implemented + config: + _process: not_implemented + route-reflector-client: + _process: not_implemented + route-reflector-cluster-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + connect-retry: + _process: not_implemented + hold-time: + _process: not_implemented + keepalive-interval: + _process: not_implemented + minimum-advertisement-interval: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + local-address: + _process: not_implemented + mtu-discovery: + _process: not_implemented + passive-mode: + _process: not_implemented + tcp-mss: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +peer-groups: + _process: not_implemented + peer-group: + _process: not_implemented + add-paths: + _process: not_implemented + config: + _process: not_implemented + eligible-prefix-policy: + _process: not_implemented + receive: + _process: not_implemented + send-max: + _process: not_implemented + state: + _process: not_implemented + afi-safis: + _process: not_implemented + afi-safi: + _process: not_implemented + afi-safi-name: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + afi-safi-name: + _process: not_implemented + enabled: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + ipv4-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv4-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + ipv6-labeled-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + ipv6-unicast: + _process: not_implemented + config: + _process: not_implemented + send-default-route: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + l2vpn-evpn: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l2vpn-vpls: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv4-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-multicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + l3vpn-ipv6-unicast: + _process: not_implemented + prefix-limit: + _process: not_implemented + config: + _process: not_implemented + max-prefixes: + _process: not_implemented + prevent-teardown: + _process: not_implemented + restart-timer: + _process: not_implemented + shutdown-threshold-pct: + _process: not_implemented + state: + _process: not_implemented + route-selection-options: + _process: not_implemented + config: + _process: not_implemented + advertise-inactive-routes: + _process: not_implemented + always-compare-med: + _process: not_implemented + enable-aigp: + _process: not_implemented + external-compare-router-id: + _process: not_implemented + ignore-as-path-length: + _process: not_implemented + ignore-next-hop-igp-metric: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + as-path-options: + _process: not_implemented + config: + _process: not_implemented + allow-own-as: + _process: not_implemented + replace-peer-as: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + description: + _process: not_implemented + local-as: + _process: not_implemented + peer-as: + _process: not_implemented + peer-group-name: + _process: not_implemented + peer-type: + _process: not_implemented + remove-private-as: + _process: not_implemented + route-flap-damping: + _process: not_implemented + send-community: + _process: not_implemented + ebgp-multihop: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + multihop-ttl: + _process: not_implemented + state: + _process: not_implemented + error-handling: + _process: not_implemented + config: + _process: not_implemented + treat-as-withdraw: + _process: not_implemented + state: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + restart-time: + _process: not_implemented + stale-routes-time: + _process: not_implemented + state: + _process: not_implemented + logging-options: + _process: not_implemented + config: + _process: not_implemented + log-neighbor-state-changes: + _process: not_implemented + state: + _process: not_implemented + peer-group-name: + _process: not_implemented + route-reflector: + _process: not_implemented + config: + _process: not_implemented + route-reflector-client: + _process: not_implemented + route-reflector-cluster-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + connect-retry: + _process: not_implemented + hold-time: + _process: not_implemented + keepalive-interval: + _process: not_implemented + minimum-advertisement-interval: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + local-address: + _process: not_implemented + mtu-discovery: + _process: not_implemented + passive-mode: + _process: not_implemented + tcp-mss: + _process: not_implemented + state: + _process: not_implemented + use-multiple-paths: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ebgp: + _process: not_implemented + config: + _process: not_implemented + allow-multiple-as: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + ibgp: + _process: not_implemented + config: + _process: not_implemented + maximum-paths: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/connection_points.yaml b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/connection_points.yaml new file mode 100644 index 00000000..e4034df4 --- /dev/null +++ b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/connection_points.yaml @@ -0,0 +1,48 @@ +--- +_process: not_implemented +connection-point: + _process: not_implemented + config: + _process: not_implemented + connection-point-id: + _process: not_implemented + connection-point-id: + _process: not_implemented + endpoints: + _process: not_implemented + endpoint: + _process: not_implemented + config: + _process: not_implemented + endpoint-id: + _process: not_implemented + precedence: + _process: not_implemented + type: + _process: not_implemented + endpoint-id: + _process: not_implemented + local: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + remote: + _process: not_implemented + config: + _process: not_implemented + remote-system: + _process: not_implemented + virtual-circuit-identifier: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/isis.yaml b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/isis.yaml new file mode 100644 index 00000000..463623fd --- /dev/null +++ b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/isis.yaml @@ -0,0 +1,508 @@ +--- +_process: not_implemented +global: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + metric: + _process: not_implemented + safi-name: + _process: not_implemented + multi-topology: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + authentication-check: + _process: not_implemented + fast-flooding: + _process: not_implemented + iid-tlv: + _process: not_implemented + instance: + _process: not_implemented + level-capability: + _process: not_implemented + max-ecmp-paths: + _process: not_implemented + maximum-area-addresses: + _process: not_implemented + net: + _process: not_implemented + poi-tlv: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + state: + _process: not_implemented + igp-shortcuts: + _process: not_implemented + afi: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + nh-type: + _process: not_implemented + state: + _process: not_implemented + inter-level-propagation-policies: + _process: not_implemented + level1-to-level2: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + level2-to-level1: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + lsp-bit: + _process: not_implemented + attached-bit: + _process: not_implemented + config: + _process: not_implemented + ignore-bit: + _process: not_implemented + suppress-bit: + _process: not_implemented + state: + _process: not_implemented + overload-bit: + _process: not_implemented + config: + _process: not_implemented + advertise-high-metric: + _process: not_implemented + set-bit: + _process: not_implemented + set-bit-on-boot: + _process: not_implemented + reset-triggers: + _process: not_implemented + reset-trigger: + _process: not_implemented + config: + _process: not_implemented + delay: + _process: not_implemented + reset-trigger: + _process: not_implemented + reset-trigger: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + nsr: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + state: + _process: not_implemented + reference-bandwidth: + _process: not_implemented + config: + _process: not_implemented + reference-bandwidth: + _process: not_implemented + state: + _process: not_implemented + segment-routing: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + srgb: + _process: not_implemented + srlb: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + lsp-lifetime-interval: + _process: not_implemented + lsp-refresh-interval: + _process: not_implemented + lsp-generation: + _process: not_implemented + config: + _process: not_implemented + lsp-first-wait-interval: + _process: not_implemented + lsp-max-wait-interval: + _process: not_implemented + lsp-second-wait-interval: + _process: not_implemented + state: + _process: not_implemented + spf: + _process: not_implemented + config: + _process: not_implemented + spf-first-interval: + _process: not_implemented + spf-hold-interval: + _process: not_implemented + spf-second-interval: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + lsp-mtu-size: + _process: not_implemented + state: + _process: not_implemented +interfaces: + _process: not_implemented + interface: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + safi-name: + _process: not_implemented + safi-name: + _process: not_implemented + state: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + hello-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + bfd: + _process: not_implemented + config: + _process: not_implemented + bfd-tlv: + _process: not_implemented + state: + _process: not_implemented + circuit-counters: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + circuit-type: + _process: not_implemented + enabled: + _process: not_implemented + hello-padding: + _process: not_implemented + interface-id: + _process: not_implemented + passive: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + levels: + _process: not_implemented + level: + _process: not_implemented + adjacencies: + _process: not_implemented + afi-safi: + _process: not_implemented + af: + _process: not_implemented + afi-name: + _process: not_implemented + config: + _process: not_implemented + afi-name: + _process: not_implemented + enabled: + _process: not_implemented + metric: + _process: not_implemented + safi-name: + _process: not_implemented + safi-name: + _process: not_implemented + segment-routing: + _process: not_implemented + adjacency-sids: + _process: not_implemented + adjacency-sid: + _process: not_implemented + config: + _process: not_implemented + group: + _process: not_implemented + neighbor: + _process: not_implemented + protection-eligible: + _process: not_implemented + sid-id: + _process: not_implemented + neighbor: + _process: not_implemented + sid-id: + _process: not_implemented + state: + _process: not_implemented + prefix-sids: + _process: not_implemented + prefix-sid: + _process: not_implemented + config: + _process: not_implemented + label-options: + _process: not_implemented + prefix: + _process: not_implemented + sid-id: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + level-number: + _process: not_implemented + passive: + _process: not_implemented + priority: + _process: not_implemented + hello-authentication: + _process: not_implemented + config: + _process: not_implemented + hello-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + level-number: + _process: not_implemented + packet-counters: + _process: not_implemented + cnsp: + _process: not_implemented + state: + _process: not_implemented + esh: + _process: not_implemented + state: + _process: not_implemented + iih: + _process: not_implemented + state: + _process: not_implemented + ish: + _process: not_implemented + state: + _process: not_implemented + lsp: + _process: not_implemented + state: + _process: not_implemented + psnp: + _process: not_implemented + state: + _process: not_implemented + unknown: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + hello-multiplier: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + csnp-interval: + _process: not_implemented + lsp-pacing-interval: + _process: not_implemented + state: + _process: not_implemented +levels: + _process: not_implemented + level: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + csnp-authentication: + _process: not_implemented + lsp-authentication: + _process: not_implemented + psnp-authentication: + _process: not_implemented + key: + _process: not_implemented + config: + _process: not_implemented + auth-password: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + authentication-check: + _process: not_implemented + enabled: + _process: not_implemented + level-number: + _process: not_implemented + metric-style: + _process: not_implemented + level-number: + _process: not_implemented + link-state-database: + _process: not_implemented + route-preference: + _process: not_implemented + config: + _process: not_implemented + external-route-preference: + _process: not_implemented + internal-route-preference: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + system-level-counters: + _process: not_implemented + state: + _process: not_implemented + traffic-engineering: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + ipv4-router-id: + _process: not_implemented + ipv6-router-id: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/mpls.yaml b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/mpls.yaml new file mode 100644 index 00000000..2922a092 --- /dev/null +++ b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/mpls.yaml @@ -0,0 +1,585 @@ +--- +_process: not_implemented +global: + _process: not_implemented + config: + _process: not_implemented + null-label: + _process: not_implemented + interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + mpls-enabled: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + reserved-label-blocks: + _process: not_implemented + reserved-label-block: + _process: not_implemented + config: + _process: not_implemented + local-id: + _process: not_implemented + lower-bound: + _process: not_implemented + upper-bound: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented +lsps: + _process: not_implemented + constrained-path: + _process: not_implemented + named-explicit-paths: + _process: not_implemented + named-explicit-path: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + sid-protection-required: + _process: not_implemented + sid-selection-mode: + _process: not_implemented + explicit-route-objects: + _process: not_implemented + explicit-route-object: + _process: not_implemented + config: + _process: not_implemented + address: + _process: not_implemented + hop-type: + _process: not_implemented + index: + _process: not_implemented + index: + _process: not_implemented + state: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + tunnels: + _process: not_implemented + tunnel: + _process: not_implemented + bandwidth: + _process: not_implemented + auto-bandwidth: + _process: not_implemented + config: + _process: not_implemented + adjust-interval: + _process: not_implemented + adjust-threshold: + _process: not_implemented + enabled: + _process: not_implemented + max-bw: + _process: not_implemented + min-bw: + _process: not_implemented + overflow: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + overflow-threshold: + _process: not_implemented + trigger-event-count: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + underflow: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + trigger-event-count: + _process: not_implemented + underflow-threshold: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + set-bandwidth: + _process: not_implemented + specification-type: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + admin-status: + _process: not_implemented + description: + _process: not_implemented + hold-priority: + _process: not_implemented + metric: + _process: not_implemented + metric-type: + _process: not_implemented + name: + _process: not_implemented + preference: + _process: not_implemented + protection-style-requested: + _process: not_implemented + reoptimize-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + shortcut-eligible: + _process: not_implemented + signaling-protocol: + _process: not_implemented + soft-preemption: + _process: not_implemented + source: + _process: not_implemented + type: + _process: not_implemented + name: + _process: not_implemented + p2p-tunnel-attributes: + _process: not_implemented + config: + _process: not_implemented + destination: + _process: not_implemented + p2p-primary-path: + _process: not_implemented + p2p-primary-path: + _process: not_implemented + admin-groups: + _process: not_implemented + config: + _process: not_implemented + exclude-group: + _process: not_implemented + include-all-group: + _process: not_implemented + include-any-group: + _process: not_implemented + state: + _process: not_implemented + candidate-secondary-paths: + _process: not_implemented + candidate-secondary-path: + _process: not_implemented + config: + _process: not_implemented + priority: + _process: not_implemented + secondary-path: + _process: not_implemented + secondary-path: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + cspf-tiebreaker: + _process: not_implemented + explicit-path-name: + _process: not_implemented + hold-priority: + _process: not_implemented + name: + _process: not_implemented + path-computation-method: + _process: not_implemented + path-computation-server: + _process: not_implemented + preference: + _process: not_implemented + retry-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + use-cspf: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + p2p-secondary-paths: + _process: not_implemented + p2p-secondary-path: + _process: not_implemented + admin-groups: + _process: not_implemented + config: + _process: not_implemented + exclude-group: + _process: not_implemented + include-all-group: + _process: not_implemented + include-any-group: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + cspf-tiebreaker: + _process: not_implemented + explicit-path-name: + _process: not_implemented + hold-priority: + _process: not_implemented + name: + _process: not_implemented + path-computation-method: + _process: not_implemented + path-computation-server: + _process: not_implemented + preference: + _process: not_implemented + retry-timer: + _process: not_implemented + setup-priority: + _process: not_implemented + use-cspf: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + static-lsps: + _process: not_implemented + static-lsp: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + egress: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + ingress: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + transit: + _process: not_implemented + config: + _process: not_implemented + incoming-label: + _process: not_implemented + next-hop: + _process: not_implemented + push-label: + _process: not_implemented + state: + _process: not_implemented + unconstrained-path: + _process: not_implemented + path-setup-protocol: + _process: not_implemented +signaling-protocols: + _process: not_implemented + rsvp-te: + _process: not_implemented + global: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enable: + _process: not_implemented + recovery-time: + _process: not_implemented + restart-time: + _process: not_implemented + state: + _process: not_implemented + hellos: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + refresh-reduction: + _process: not_implemented + state: + _process: not_implemented + soft-preemption: + _process: not_implemented + config: + _process: not_implemented + enable: + _process: not_implemented + soft-preemption-timeout: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + authentication: + _process: not_implemented + config: + _process: not_implemented + authentication-key: + _process: not_implemented + enable: + _process: not_implemented + state: + _process: not_implemented + bandwidth-reservations: + _process: not_implemented + bandwidth-reservation: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + hellos: + _process: not_implemented + config: + _process: not_implemented + hello-interval: + _process: not_implemented + refresh-reduction: + _process: not_implemented + state: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + protection: + _process: not_implemented + config: + _process: not_implemented + bypass-optimize-interval: + _process: not_implemented + link-protection-style-requested: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + subscription: + _process: not_implemented + config: + _process: not_implemented + subscription: + _process: not_implemented + state: + _process: not_implemented + neighbors: + _process: not_implemented + neighbor: + _process: not_implemented + sessions: + _process: not_implemented + session: + _process: not_implemented + segment-routing: + _process: not_implemented + aggregate-sid-counters: + _process: not_implemented + aggregate-sid-counter: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + interface-id: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + sid-counters: + _process: not_implemented + sid-counter: + _process: not_implemented + state: + _process: not_implemented +te-global-attributes: + _process: not_implemented + mpls-admin-groups: + _process: not_implemented + admin-group: + _process: not_implemented + admin-group-name: + _process: not_implemented + config: + _process: not_implemented + admin-group-name: + _process: not_implemented + bit-position: + _process: not_implemented + state: + _process: not_implemented + srlgs: + _process: not_implemented + srlg: + _process: not_implemented + config: + _process: not_implemented + cost: + _process: not_implemented + flooding-type: + _process: not_implemented + name: + _process: not_implemented + value: + _process: not_implemented + name: + _process: not_implemented + state: + _process: not_implemented + static-srlg-members: + _process: not_implemented + members-list: + _process: not_implemented + config: + _process: not_implemented + from-address: + _process: not_implemented + to-address: + _process: not_implemented + from-address: + _process: not_implemented + state: + _process: not_implemented + te-lsp-timers: + _process: not_implemented + config: + _process: not_implemented + cleanup-delay: + _process: not_implemented + install-delay: + _process: not_implemented + reoptimize-timer: + _process: not_implemented + state: + _process: not_implemented +te-interface-attributes: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + admin-group: + _process: not_implemented + interface-id: + _process: not_implemented + srlg-membership: + _process: not_implemented + te-metric: + _process: not_implemented + igp-flooding-bandwidth: + _process: not_implemented + config: + _process: not_implemented + delta-percentage: + _process: not_implemented + down-thresholds: + _process: not_implemented + threshold-specification: + _process: not_implemented + threshold-type: + _process: not_implemented + up-down-thresholds: + _process: not_implemented + up-thresholds: + _process: not_implemented + state: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/ospfv2.yaml b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/ospfv2.yaml new file mode 100644 index 00000000..adf0afef --- /dev/null +++ b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/ospfv2.yaml @@ -0,0 +1,224 @@ +--- +_process: not_implemented +areas: + _process: not_implemented + area: + _process: not_implemented + config: + _process: not_implemented + identifier: + _process: not_implemented + identifier: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + authentication-type: + _process: not_implemented + hide-network: + _process: not_implemented + id: + _process: not_implemented + metric: + _process: not_implemented + multi-area-adjacency-primary: + _process: not_implemented + network-type: + _process: not_implemented + passive: + _process: not_implemented + priority: + _process: not_implemented + id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + lsa-filter: + _process: not_implemented + config: + _process: not_implemented + all: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-metric: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + neighbors: + _process: not_implemented + neighbor: + _process: not_implemented + config: + _process: not_implemented + metric: + _process: not_implemented + router-id: + _process: not_implemented + router-id: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + config: + _process: not_implemented + dead-interval: + _process: not_implemented + hello-interval: + _process: not_implemented + retransmission-interval: + _process: not_implemented + state: + _process: not_implemented + lsdb: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-enabled: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + virtual-links: + _process: not_implemented + virtual-link: + _process: not_implemented + config: + _process: not_implemented + remote-router-id: + _process: not_implemented + remote-router-id: + _process: not_implemented + state: + _process: not_implemented +global: + _process: not_implemented + config: + _process: not_implemented + hide-transit-only-networks: + _process: not_implemented + igp-shortcuts: + _process: not_implemented + log-adjacency-changes: + _process: not_implemented + router-id: + _process: not_implemented + summary-route-cost-mode: + _process: not_implemented + graceful-restart: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + helper-only: + _process: not_implemented + state: + _process: not_implemented + inter-area-propagation-policies: + _process: not_implemented + inter-area-propagation-policy: + _process: not_implemented + config: + _process: not_implemented + default-import-policy: + _process: not_implemented + dst-area: + _process: not_implemented + import-policy: + _process: not_implemented + src-area: + _process: not_implemented + dst-area: + _process: not_implemented + src-area: + _process: not_implemented + state: + _process: not_implemented + mpls: + _process: not_implemented + config: + _process: not_implemented + traffic-engineering-extensions: + _process: not_implemented + igp-ldp-sync: + _process: not_implemented + config: + _process: not_implemented + enabled: + _process: not_implemented + post-session-up-delay: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + timers: + _process: not_implemented + lsa-generation: + _process: not_implemented + config: + _process: not_implemented + initial-delay: + _process: not_implemented + maximum-delay: + _process: not_implemented + state: + _process: not_implemented + max-metric: + _process: not_implemented + config: + _process: not_implemented + include: + _process: not_implemented + set: + _process: not_implemented + timeout: + _process: not_implemented + trigger: + _process: not_implemented + state: + _process: not_implemented + spf: + _process: not_implemented + config: + _process: not_implemented + initial-delay: + _process: not_implemented + maximum-delay: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/segment_routing.yaml b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/segment_routing.yaml new file mode 100644 index 00000000..58593331 --- /dev/null +++ b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/segment_routing.yaml @@ -0,0 +1,38 @@ +--- +_process: not_implemented +srgbs: + _process: not_implemented + srgb: + _process: not_implemented + config: + _process: not_implemented + dataplane-type: + _process: not_implemented + ipv6-prefixes: + _process: not_implemented + local-id: + _process: not_implemented + mpls-label-blocks: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented +srlbs: + _process: not_implemented + srlb: + _process: not_implemented + config: + _process: not_implemented + dataplane-type: + _process: not_implemented + ipv6-prefix: + _process: not_implemented + local-id: + _process: not_implemented + mpls-label-block: + _process: not_implemented + local-id: + _process: not_implemented + state: + _process: not_implemented diff --git a/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/static_routes.yaml b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/static_routes.yaml new file mode 100644 index 00000000..9e52db43 --- /dev/null +++ b/napalm_yang/mappings/junos/translators/openconfig-network-instance/includes/static_routes.yaml @@ -0,0 +1,52 @@ +--- +_process: + - mode: gate + when: "{{ protocol_key != 'static static' }}" +static: + _process: + - container: "route" + key_element: name + key_value: "{{ static_key }}" + config: + _process: unnecessary + prefix: + _process: unnecessary + set-tag: + _process: not_implemented + next-hops: + _process: unnecessary + next-hop: + _process: + - container: "qualified-next-hop" + key_element: name + key_value: "{{ next_hop_key }}" + config: + _process: unnecessary + index: + _process: not_implemented + metric: + _process: + - element: metric + next-hop: + _process: unnecessary + recurse: + _process: not_implemented + index: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + diff --git a/napalm_yang/mappings/junos/translators/openconfig-network-instance/network-instances.yaml b/napalm_yang/mappings/junos/translators/openconfig-network-instance/network-instances.yaml new file mode 100644 index 00000000..a5d1701d --- /dev/null +++ b/napalm_yang/mappings/junos/translators/openconfig-network-instance/network-instances.yaml @@ -0,0 +1,374 @@ +--- +metadata: + processor: XMLTranslator + xml_root: configuration + +network-instances: + _process: unnecessary + network-instance: + _process: + - container: "routing-instances" + replace: true + delete_on_merge: false + reuse: true + when: "{{ network_instance_key != 'global' }}" + - container: instance + key_element: name + key_value: "{{ network_instance_key }}" + when: "{{ network_instance_key != 'global' }}" + afts: !include includes/afts.yaml + config: + _process: unnecessary + description: + _process: + - element: description + enabled: + _process: unnecessary + enabled-address-families: + _process: not_implemented + mtu: + _process: not_implemented + name: + _process: unnecessary + route-distinguisher: + _process: not_implemented + router-id: + _process: not_implemented + type: + _process: + - mode: map + element: instance-type + map: + L3VRF: vrf + L2L3: virtual-router + when: "{{ network_instance_key != 'global' }}" + connection-points: !include includes/connection_points.yaml + encapsulation: + _process: not_implemented + config: + _process: not_implemented + control-word: + _process: not_implemented + encapsulation-type: + _process: not_implemented + label-allocation-mode: + _process: not_implemented + state: + _process: not_implemented + fdb: + _process: not_implemented + config: + _process: not_implemented + mac-aging-time: + _process: not_implemented + mac-learning: + _process: not_implemented + maximum-entries: + _process: not_implemented + mac-table: + _process: not_implemented + entries: + _process: not_implemented + entry: + _process: not_implemented + config: + _process: not_implemented + mac-address: + _process: not_implemented + vlan: + _process: not_implemented + interface: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + mac-address: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + inter-instance-policies: + _process: not_implemented + apply-policy: + _process: not_implemented + config: + _process: not_implemented + default-export-policy: + _process: not_implemented + default-import-policy: + _process: not_implemented + export-policy: + _process: not_implemented + import-policy: + _process: not_implemented + state: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + associated-address-families: + _process: not_implemented + id: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + id: + _process: not_implemented + state: + _process: not_implemented + mpls: !include includes/mpls.yaml + name: + _process: unnecessary + policy-forwarding: + _process: not_implemented + interfaces: + _process: not_implemented + interface: + _process: not_implemented + config: + _process: not_implemented + apply-forwarding-policy: + _process: not_implemented + interface-id: + _process: not_implemented + interface-id: + _process: not_implemented + interface-ref: + _process: not_implemented + config: + _process: not_implemented + interface: + _process: not_implemented + subinterface: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + path-selection-groups: + _process: not_implemented + path-selection-group: + _process: not_implemented + config: + _process: not_implemented + group-id: + _process: not_implemented + mpls-lsp: + _process: not_implemented + group-id: + _process: not_implemented + state: + _process: not_implemented + policies: + _process: not_implemented + policy: + _process: not_implemented + config: + _process: not_implemented + policy-id: + _process: not_implemented + policy-id: + _process: not_implemented + rules: + _process: not_implemented + rule: + _process: not_implemented + action: + _process: not_implemented + config: + _process: not_implemented + decapsulate-gre: + _process: not_implemented + discard: + _process: not_implemented + network-instance: + _process: not_implemented + next-hop: + _process: not_implemented + path-selection-group: + _process: not_implemented + state: + _process: not_implemented + config: + _process: not_implemented + sequence-id: + _process: not_implemented + ip: + _process: not_implemented + config: + _process: not_implemented + destination-ip-address: + _process: not_implemented + destination-ip-flow-label: + _process: not_implemented + dscp: + _process: not_implemented + hop-limit: + _process: not_implemented + ip-version: + _process: not_implemented + protocol: + _process: not_implemented + source-ip-address: + _process: not_implemented + source-ip-flow-label: + _process: not_implemented + state: + _process: not_implemented + l2: + _process: not_implemented + config: + _process: not_implemented + destination-mac: + _process: not_implemented + destination-mac-mask: + _process: not_implemented + ethertype: + _process: not_implemented + source-mac: + _process: not_implemented + source-mac-mask: + _process: not_implemented + state: + _process: not_implemented + sequence-id: + _process: not_implemented + state: + _process: not_implemented + transport: + _process: not_implemented + config: + _process: not_implemented + destination-port: + _process: not_implemented + source-port: + _process: not_implemented + tcp-flags: + _process: not_implemented + state: + _process: not_implemented + state: + _process: not_implemented + protocols: + _process: unnecessary + protocol: + _process: + - container: "protocols/{{ model.identifier }}" + replace: true + when: "{{ protocol_key != 'static static' }}" + - container: "routing-options/static" + when: "{{ protocol_key == 'static static' }}" + bgp: !include includes/bgp.yaml + config: + _process: not_implemented + default-metric: + _process: not_implemented + enabled: + _process: not_implemented + identifier: + _process: not_implemented + name: + _process: not_implemented + identifier: + _process: unnecessary + isis: !include includes/isis.yaml + local-aggregates: + _process: not_implemented + aggregate: + _process: not_implemented + config: + _process: not_implemented + discard: + _process: not_implemented + prefix: + _process: not_implemented + set-tag: + _process: not_implemented + prefix: + _process: not_implemented + state: + _process: not_implemented + name: + _process: unnecessary + ospfv2: !include includes/ospfv2.yaml + state: + _process: not_implemented + static-routes: !include includes/static_routes.yaml + segment-routing: !include includes/segment_routing.yaml + state: + _process: not_implemented + table-connections: + _process: not_implemented + table-connection: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + default-import-policy: + _process: not_implemented + dst-protocol: + _process: not_implemented + import-policy: + _process: not_implemented + src-protocol: + _process: not_implemented + dst-protocol: + _process: not_implemented + src-protocol: + _process: not_implemented + state: + _process: not_implemented + tables: + _process: not_implemented + table: + _process: not_implemented + address-family: + _process: not_implemented + config: + _process: not_implemented + address-family: + _process: not_implemented + protocol: + _process: not_implemented + protocol: + _process: not_implemented + state: + _process: not_implemented + vlans: + _process: not_implemented + vlan: + _process: not_implemented + config: + _process: not_implemented + name: + _process: not_implemented + status: + _process: not_implemented + tpid: + _process: not_implemented + vlan-id: + _process: not_implemented + members: + _process: not_implemented + member: + _process: not_implemented + state: + _process: not_implemented + vlan-id: + _process: not_implemented diff --git a/napalm_yang/mappings/junos/translators/openconfig-vlan/vlan.yaml b/napalm_yang/mappings/junos/translators/openconfig-vlan/vlan.yaml index ba20d4b7..0d728150 100644 --- a/napalm_yang/mappings/junos/translators/openconfig-vlan/vlan.yaml +++ b/napalm_yang/mappings/junos/translators/openconfig-vlan/vlan.yaml @@ -8,11 +8,9 @@ vlan: _process: unnecessary vlan-id: _process: - - mode: element - element: "vlan-tagging" + - element: "vlan-tagging" in: "interface.{{ interface_key }}" when: "{{ model > 0 }}" value: null - - mode: element - element: "vlan-id" + - element: "vlan-id" when: "{{ model > 0 }}" diff --git a/napalm_yang/mappings/templates/parsers/state/openconfig-platform/components.yaml b/napalm_yang/mappings/templates/parsers/state/openconfig-platform/components.yaml new file mode 100644 index 00000000..fb9468d1 --- /dev/null +++ b/napalm_yang/mappings/templates/parsers/state/openconfig-platform/components.yaml @@ -0,0 +1,72 @@ +--- +metadata: + parser: + execute: + - method: + args: [] + kwargs: + commands: [ ] + +components: + _parse: unnecessary + component: + _parse: not_implemented + name: + _parse: not_implemented + config: + _parse: unnecessary + state: + _parse: not_implemented + name: + _parse: not_implemented + type: + _parse: not_implemented + id: + _parse: not_implemented + description: + _parse: not_implemented + mfg-name: + _parse: not_implemented + version: + _parse: not_implemented + serial-no: + _parse: not_implemented + part-no: + _parse: not_implemented + temperature: + _parse: not_implemented + instant: + _parse: not_implemented + avg: + _parse: not_implemented + min: + _parse: not_implemented + max: + _parse: not_implemented + properties: + _parse: not_implemented + property: + _parse: not_implemented + name: + _parse: not_implemented + config: + _parse: unnecessary + state: + _parse: not_implemented + name: + _parse: not_implemented + value: + _parse: not_implemented + configurable: + _parse: not_implemented + subcomponents: + _parse: not_implemented + subcomponent: + _parse: not_implemented + name: + _parse: not_implemented + config: + _parse: unnecessary + state: + _parse: not_implemented + name: not_implemented diff --git a/napalm_yang/parser.py b/napalm_yang/parser.py index dd956769..883b4724 100644 --- a/napalm_yang/parser.py +++ b/napalm_yang/parser.py @@ -1,7 +1,9 @@ import os + import copy from napalm_yang import helpers +from napalm_yang.parsers import get_parser import logging logger = logging.getLogger("napalm-yang") @@ -26,17 +28,17 @@ def __init__(self, model, device=None, profile=None, is_config=None, self.extra_vars = extra_vars or {} if self.mapping and device: - device_config = self._execute_methods(device, + device_output = self._execute_methods(device, self.mapping["metadata"].get("execute", [])) else: - device_config = [] + device_output = [] native = native or [] self.native = [] - for n in native + device_config: + for n in native + device_output: if isinstance(n, basestring): self.native.append(n.replace("\r", "")) # Parsing will be easier else: @@ -45,11 +47,11 @@ def __init__(self, model, device=None, profile=None, is_config=None, if not self.native: raise Exception("I don't have any data to operate with") - self.bookmarks = {self._yang_name: self.native, "parent": self.native} - self.bookmarks = bookmarks or self.bookmarks - if self.mapping: - self.parser = helpers.get_parser(self.mapping["metadata"]["processor"]) + self.parser = get_parser(self.mapping["metadata"]["processor"])(self.keys, + self.extra_vars) + + self.bookmarks = bookmarks or {} def _execute_methods(self, device, methods): result = [] @@ -57,7 +59,13 @@ def _execute_methods(self, device, methods): attr = device for p in m["method"].split("."): attr = getattr(attr, p) - r = attr(**m["args"]) + args = m.get("args", []) + if not isinstance(args, list): + raise TypeError("args must be type list, not type {}".format(type(args))) + kwargs = m.get("kwargs", {}) + if not isinstance(kwargs, dict): + raise TypeError("kwargs must be type dict, not type {}".format(type(kwargs))) + r = attr(*args, **kwargs) if isinstance(r, dict) and all([isinstance(x, (str, unicode)) for x in r.values()]): # Some vendors like junos return commands enclosed by a key @@ -70,6 +78,10 @@ def _execute_methods(self, device, methods): def parse(self): if not self.mapping: return + self.native = self.parser.init_native(self.native) + self.bookmarks["root_{}".format(self._yang_name)] = self.native + if "parent" not in self.bookmarks: + self.bookmarks["parent".format(self._yang_name)] = self.native self._parse(self._yang_name, self.model, self.mapping[self._yang_name]) def _parse(self, attribute, model, mapping): @@ -84,7 +96,25 @@ def _parse(self, attribute, model, mapping): def _parse_container(self, attribute, model, mapping): mapping["_process"] = helpers.resolve_rule(mapping["_process"], attribute, self.keys, - self.extra_vars, None, self.bookmarks) + self.extra_vars, None, self.bookmarks, + process_all=False) + + # Saving state + old_parent_key = self.keys["parent_key"] + old_parent_bookmark = self.bookmarks["parent"] + old_parent_extra_vars = self.extra_vars + + if model._yang_type is not None: + # None means it's an element of a list + block, extra_vars = self.parser.parse_container(mapping["_process"], self.bookmarks) + + if block is None: + return + elif block != "" or extra_vars: + self.bookmarks["parent"] = block + self.bookmarks[attribute] = block + self.extra_vars[attribute] = extra_vars + for k, v in model: logger.debug("Parsing attribute: {}".format(v._yang_path())) if self.is_config and (not v._is_config or k == "state"): @@ -101,11 +131,16 @@ def _parse_container(self, attribute, model, mapping): else: self._parse(k, v, mapping[v._yang_name]) + # Restoring state + self.keys["parent_key"] = old_parent_key + self.bookmarks["parent"] = old_parent_bookmark + self.extra_vars = old_parent_extra_vars + def _parse_list(self, attribute, model, mapping): mapping_copy = copy.deepcopy(mapping) mapping_copy["_process"] = helpers.resolve_rule(mapping_copy["_process"], attribute, self.keys, self.extra_vars, None, - self.bookmarks) + self.bookmarks, process_all=False) # Saving state to restore them later old_parent_key = self.keys["parent_key"] old_parent_bookmark = self.bookmarks["parent"] @@ -115,9 +150,18 @@ def _parse_list(self, attribute, model, mapping): # for each individual element of the list self.bookmarks[attribute] = {} - for key, block, extra_vars in self.parser.parse_list(mapping_copy["_process"]): + for key, block, extra_vars in self.parser.parse_list(mapping_copy["_process"], + self.bookmarks): logger.debug("Parsing element {}[{}]".format(attribute, key)) - obj = model.add(key) + + try: + obj = model.add(key) + except KeyError as e: + if "is already defined as a list entry" in e.message and \ + extra_vars.get("_get_duplicates"): + obj = model[key] + else: + raise key_name = "{}_key".format(attribute) self.keys[key_name] = key @@ -128,7 +172,7 @@ def _parse_list(self, attribute, model, mapping): # example, ipv4.config.enabled is present in both interfaces and subinterfaces self.keys["parent_key"] = key self.bookmarks["parent"] = block - self.extra_vars = extra_vars + self.extra_vars["parent"] = extra_vars element_mapping = copy.deepcopy(mapping) self._parse(key, obj, element_mapping) @@ -140,17 +184,22 @@ def _parse_list(self, attribute, model, mapping): def _parse_leaf(self, attribute, model, mapping): mapping["_process"] = helpers.resolve_rule(mapping["_process"], attribute, self.keys, - self.extra_vars, None, self.bookmarks) + self.extra_vars, None, self.bookmarks, + process_all=False) # We can't set attributes that are keys if model._is_keyval: return - value = self.parser.parse_leaf(mapping["_process"]) + value = self.parser.parse_leaf(mapping["_process"], self.bookmarks) - if value is not None and (value != model.default() or isinstance(value, bool)): + if value is not None: setter = getattr(model._parent, "_set_{}".format(attribute)) - setter(value) + try: + setter(value) + except ValueError: + logger.error("Wrong value for {}: {}".format(attribute, value)) + raise # parent.model is now a new class model = getattr(model._parent, attribute) diff --git a/napalm_yang/parsers/__init__.py b/napalm_yang/parsers/__init__.py index e69de29b..ba286138 100644 --- a/napalm_yang/parsers/__init__.py +++ b/napalm_yang/parsers/__init__.py @@ -0,0 +1,19 @@ +from napalm_yang.parsers.jsonp import JSONParser +from napalm_yang.parsers.text import TextParser +from napalm_yang.parsers.text_tree import TextTree +from napalm_yang.parsers.xml import XMLParser + +from napalm_yang.translators.text import TextTranslator +from napalm_yang.translators.xml import XMLTranslator + + +def get_parser(parser): + parsers = { + "JSONParser": JSONParser, + "TextParser": TextParser, + "TextTree": TextTree, + "XMLParser": XMLParser, + "TextTranslator": TextTranslator, + "XMLTranslator": XMLTranslator, + } + return parsers[parser] diff --git a/napalm_yang/parsers/base.py b/napalm_yang/parsers/base.py index 7a8349e5..cdf78d16 100644 --- a/napalm_yang/parsers/base.py +++ b/napalm_yang/parsers/base.py @@ -1,49 +1,142 @@ +import ast + +from napalm_yang.helpers import template class BaseParser(object): - @classmethod - def init_config(cls, config): - return config + def __init__(self, keys, extra_vars): + self.keys = keys + self.extra_vars = extra_vars - @classmethod - def parse_list(cls, mapping): - method_name = "_parse_list_{}".format(mapping["mode"]) - for key, block, extra_vars in getattr(cls, method_name)(mapping): - yield key, block, extra_vars + def resolve_path(self, my_dict, path, default=None, check_presence=False): + if path is None: + return - @classmethod - def parse_leaf(cls, mapping): - method_name = "_parse_leaf_{}".format(mapping["mode"]) - return getattr(cls, method_name)(mapping) + b = my_dict + path_split = path.split(".") if len(path) else [] + result = None - @classmethod - def _parse_leaf_skip(cls, mapping): - return + for i, p in enumerate(path_split): + if p[0] == "?": + result = [] if result is None else result - @classmethod - def _parse_list_skip(cls, mapping): - return {} + if isinstance(b, dict) and ":" not in p: + iterator = b.items() + else: + if isinstance(b, dict): + b = [b] + p, var_name = p.split(":") + try: + iterator = {e[var_name]: e for e in b}.items() + except Exception: + iterator = {e[var_name]["#text"]: e for e in b}.items() - @classmethod - def _parse_leaf_value(cls, mapping): - return mapping["value"] + for k, v in iterator: + if k.startswith("#"): + continue + r = self.resolve_path(v, ".".join(path_split[i+1:]), default, check_presence) + if isinstance(r, list): + for rr in r: + rr[p[1:]] = k + for kk, vv in v.items(): + if kk != path_split[i+1]: + rr[kk] = vv + result.append(rr) + else: + r[p[1:]] = k + result.append(r) + break + try: + if isinstance(b, dict): + b = b[p] + elif isinstance(b, list): + b = b[int(p)] + elif p == "#text": + continue + else: + raise Exception(b) + except (KeyError, TypeError, IndexError, ValueError): + return default + else: + if check_presence: + return i == len(path_split) - 1 - """ - @classmethod - def _parse_leaf_key(cls, mapping, texts, keys, extra_vars): - leaf_extraction = mapping["_leaf_extraction"] - value = keys[leaf_extraction["value"]] + if not result: + result = b - if "regexp" in leaf_extraction.keys(): - value = re.search(mapping["_leaf_extraction"]["regexp"], value).group("value") - return value + return result - @classmethod - def _parse_list_not_implemented(cls, mapping, texts, keys, extra_vars): - return {} + def init_native(self, native): + return native + + def parse_list(self, mapping, bookmarks): + for m in mapping: + # parent will change as the tree is processed so we save it + # so we can restore it + parent = bookmarks["parent"] + + data = self.resolve_path(bookmarks, m.get("from", "parent")) + method_name = "_parse_list_{}".format(m.get("mode", "default")) + + if method_name == "_parse_list_manual": + m["block"] = self.resolve_path(bookmarks, m["block"], + default=m["block"]) + + for key, block, extra_vars in getattr(self, method_name)(m, data): + yield key, block, extra_vars + + # we restore the parent + bookmarks["parent"] = parent + + def _parse_list_manual(self, mapping, data): + yield mapping["key"], mapping["block"], mapping["extra_vars"] + + def parse_leaf(self, mapping, bookmarks): + for m in mapping: + data = self.resolve_path(bookmarks, m.get("from", "parent")) + method_name = "_parse_leaf_{}".format(m.get("mode", "default")) + result = getattr(self, method_name)(m, data) - @classmethod - def _parse_leaf_not_implemented(cls, mapping, texts, keys, extra_vars): + if result is not None: + try: + result = ast.literal_eval(result) + except (ValueError, SyntaxError): + pass + return result + + def parse_container(self, mapping, bookmarks): + for m in mapping: + # parent will change as the tree is processed so we save it + # so we can restore it + parent = bookmarks["parent"] + data = self.resolve_path(bookmarks, m.get("from", "parent")) + method_name = "_parse_container_{}".format(m.get("mode", "default")) + result, extra_vars = getattr(self, method_name)(m, data) + if result or extra_vars: + break + + # we restore the parent + bookmarks["parent"] = parent + return result, extra_vars + + def _parse_leaf_skip(self, mapping, bookmarks): return - """ + + _parse_leaf_gate = _parse_leaf_skip + + def _parse_container_skip(self, mapping, bookmarks): + return "", {} + + def _parse_list_skip(self, mapping, bookmarks): + return {} + + _parse_list_gate = _parse_list_skip + + def _parse_container_gate(self, mapping, bookmarks): + """This basically stops parsing the tree by returning None""" + return None, {} + + def _parse_post_process_filter(self, post_process_filter, **kwargs): + kwargs.update(self.keys) + return template(post_process_filter, extra_vars=self.extra_vars, **kwargs) diff --git a/napalm_yang/parsers/jsonp.py b/napalm_yang/parsers/jsonp.py new file mode 100644 index 00000000..fe74255b --- /dev/null +++ b/napalm_yang/parsers/jsonp.py @@ -0,0 +1,125 @@ +from __future__ import absolute_import + +import re +import json + +from collections import OrderedDict + +from napalm_yang.parsers.base import BaseParser + + +def get_element_with_cdata(dictionary, element): + e = dictionary[element] + if isinstance(e, OrderedDict): + # this is for xmltodict + return e["#text"] + else: + return e + + +class JSONParser(BaseParser): + + def init_native(self, native): + resp = [] + for k in native: + if isinstance(k, dict): + resp.append(k) + else: + resp.append(json.loads(k)) + + return resp + + def _parse_list_default(self, mapping, data, key=None): + def _eval_key(key_mapping, **kwargs): + if "{{" in key_mapping: + try: + return self._parse_post_process_filter(key_mapping, **kwargs) + except Exception as e: + return "{}".format(e) + else: + return get_element_with_cdata(kwargs, key_mapping) + + def _iterator(d, key_mapping): + if key_mapping and d: + if isinstance(d, dict): + # xmltodict returns a dict when there is only one element + d = [d] + for v in d: + if not isinstance(v, dict): + # Nothing to resolve + k = _eval_key(key_mapping) + else: + k = _eval_key(key_mapping, **v) + yield k, v + elif d: + # If there is no key_mapping we can only assume it's a dict + # so the key is implicit + for k, v in d.items(): + yield k, v + + def _process_key_value(key, value, regexp, mapping): + extra_vars = {} + if regexp: + match = regexp.match(key) + if match: + key = match.group('value') + extra_vars = match.groupdict() + else: + return None, {} + return key, extra_vars + + d = self.resolve_path(data, mapping["path"], mapping.get("default")) + + regexp = mapping.get('regexp') + if regexp: + regexp = re.compile(regexp) + + for k, v in _iterator(d, mapping.get("key")): + if k.startswith("#"): + continue + key, extra_vars = _process_key_value(k, v, regexp, mapping) + if key: + yield key, v, extra_vars + + def _parse_leaf_default(self, mapping, data, check_default=True, check_presence=False): + if "path" in mapping: + d = self.resolve_path(data, mapping["path"], mapping.get("default"), check_presence) + else: + d = None + + if "value" in mapping: + d = self._parse_post_process_filter(mapping["value"], value=d) + + if d and not check_presence: + regexp = mapping.get('regexp', None) + if regexp: + match = re.search(mapping['regexp'], d) + if match: + return match.group('value') + else: + return d + else: + if d and check_presence: + return True + if check_default: + return mapping.get('default', None) + return + return + + def _parse_container_default(self, mapping, data): + d = self.resolve_path(data, mapping["path"], mapping.get("default")) + return d, {} + + def _parse_leaf_map(self, mapping, data): + v = self._parse_leaf_default(mapping, data) + if v: + return mapping['map'][v.lower()] + else: + return + + def _parse_leaf_is_present(self, mapping, data): + return self._parse_leaf_default(mapping, data, + check_default=False, check_presence=True) is True + + def _parse_leaf_is_absent(self, mapping, data): + return not self._parse_leaf_is_present(mapping, data) diff --git a/napalm_yang/parsers/text.py b/napalm_yang/parsers/text.py index 8be9fdcd..b4118452 100644 --- a/napalm_yang/parsers/text.py +++ b/napalm_yang/parsers/text.py @@ -5,19 +5,33 @@ class TextParser(BaseParser): - @classmethod - def _parse_list_block(cls, mapping): - block_matches = re.finditer(mapping["regexp"], mapping["from"], re.MULTILINE + re.I) + def _parse_list_default(self, mapping, data): + block_matches = re.finditer(mapping["regexp"], data, re.MULTILINE + re.I) for match in block_matches: + composite_key = mapping.get("composite_key", None) + forced_key = mapping.get("key", None) + post_process_filter = mapping.get("post_process_filter", None) + extra_vars = match.groupdict() - key = extra_vars.pop("key") block = extra_vars.pop("block") + + if composite_key: + key = " ".join([match.group(k) for k in composite_key]) + elif forced_key: + key = forced_key + else: + key = extra_vars.pop("key") + + if post_process_filter: + key = self._parse_post_process_filter(post_process_filter, key, extra_vars) + + extra_vars["_get_duplicates"] = mapping.get("flat", False) + yield key, block, extra_vars - @classmethod - def _parse_leaf_search(cls, mapping, check_default=True): - match = re.search(mapping["regexp"], mapping["from"], re.MULTILINE + re.I) + def _parse_leaf_default(self, mapping, data, check_default=True): + match = re.search(mapping["regexp"], data, re.MULTILINE + re.I) if match: return match.group("value") @@ -26,17 +40,14 @@ def _parse_leaf_search(cls, mapping, check_default=True): else: return None - @classmethod - def _parse_leaf_is_present(cls, mapping): - value = cls._parse_leaf_search(mapping, check_default=False) + def _parse_leaf_is_present(self, mapping, data): + value = self._parse_leaf_default(mapping, data, check_default=False) return bool(value) - @classmethod - def _parse_leaf_is_absent(cls, mapping): - value = cls._parse_leaf_search(mapping, check_default=False) + def _parse_leaf_is_absent(self, mapping, data): + value = self._parse_leaf_default(mapping, data, check_default=False) return not bool(value) - @classmethod - def _parse_leaf_map(cls, mapping): - value = cls._parse_leaf_search(mapping) + def _parse_leaf_map(self, mapping, data): + value = self._parse_leaf_default(mapping, data) return mapping["map"][value] diff --git a/napalm_yang/parsers/text_tree.py b/napalm_yang/parsers/text_tree.py new file mode 100644 index 00000000..d5a5503b --- /dev/null +++ b/napalm_yang/parsers/text_tree.py @@ -0,0 +1,113 @@ +from builtins import super +from collections import OrderedDict + +from napalm_yang.parsers.jsonp import JSONParser + + +def _attach_data_to_path(obj, path, data, list_=False): + if "#list" not in obj: + obj["#list"] = [] + + path = path.split(" ") + o = obj + first = True + + while True: + o["#text"] = " ".join(path) + p = path.pop(0) + if not path: + break + else: + if p not in o: + o[p] = OrderedDict() + o = o[p] + + if first and list_: + obj["#list"].append({p: o}) + first = False + if p in o: + o[p].update(data) + else: + o[p] = data + + # We add a standalong flag to be able to distinguish this situation: + # switchport + # switchport mode access + o[p]["#standalone"] = True + + +def parse_indented_config(config, current_indent=0, previous_indent=0, nested=False): + """ + This methid basically reads a configuration that conforms to a very poor industry standard + and returns a nested structure that behaves like a dict. For example: + {'enable password whatever': {}, + 'interface GigabitEthernet1': { + 'description "bleh"': {}, + 'fake nested': { + 'nested nested configuration': {}}, + 'switchport mode trunk': {}}, + 'interface GigabitEthernet2': { + 'no ip address': {}}, + 'interface GigabitEthernet3': { + 'negotiation auto': {}, + 'no ip address': {}, + 'shutdown': {}}, + 'interface Loopback0': { + 'description "blah"': {}}} + """ + parsed = OrderedDict() + while True: + if not config: + break + line = config.pop(0) + + if line.startswith("!"): + continue + + last = line.lstrip() + leading_spaces = len(line) - len(last) + + # print("current_indent:{}, previous:{}, leading:{} - {}".format( + # current_indent, previous_indent, leading_spaces, line)) + + if leading_spaces > current_indent: + current = parse_indented_config(config, leading_spaces, current_indent, True) + _attach_data_to_path(parsed, last, current, nested) + elif leading_spaces < current_indent: + config.insert(0, line) + break + else: + if not nested: + current = parse_indented_config(config, leading_spaces, current_indent, True) + _attach_data_to_path(parsed, last, current, nested) + else: + config.insert(0, line) + break + + return parsed + + +class TextTree(JSONParser): + + def init_native(self, native): + resp = [] + for n in native: + if isinstance(n, dict): + resp.append(n) + else: + resp.append(parse_indented_config(n.splitlines())) + + # with open("/tmp/napalm-tree-parser", "w+") as f: + # import json + # f.write(json.dumps(resp[0]["interface"]["Ethernet1"], indent=4)) + # raise Exception + + return resp + + def _parse_leaf_default(self, mapping, data, check_default=True, check_presence=False): + extra_path = "#standalone" if check_presence else "#text" + if "path" in mapping: + mapping["path"] = "{}.{}".format(mapping["path"], extra_path) + else: + mapping["path"] = extra_path + return super()._parse_leaf_default(mapping, data, check_default, check_presence) diff --git a/napalm_yang/parsers/xml.py b/napalm_yang/parsers/xml.py index 2784fd46..992d0a29 100644 --- a/napalm_yang/parsers/xml.py +++ b/napalm_yang/parsers/xml.py @@ -1,57 +1,29 @@ -from lxml import etree -import re +from builtins import super -from napalm_yang.parsers.base import BaseParser +from napalm_yang.parsers.jsonp import JSONParser +import xmltodict -class XMLParser(BaseParser): - @classmethod - def _parse_list_xpath(cls, mapping): - xml = etree.fromstring(mapping["from"]) +class XMLParser(JSONParser): - for element in xml.xpath(mapping["xpath"]): - key = element.xpath("name")[0].text.strip() - yield key, etree.tostring(element), {} - - @classmethod - def _parse_leaf_xpath(cls, mapping, check_default=True, check_presence=False): - xml = etree.fromstring(mapping["from"]) - element = xml.xpath(mapping["xpath"]) - - if element and not check_presence: - if "attribute" in mapping.keys(): - element = element[0].get(mapping["attribute"]) + def init_native(self, native): + resp = [] + for n in native: + if isinstance(n, dict): + resp.append(n) else: - element = element[0].text.strip() - - regexp = mapping.get("regexp", None) - if regexp: - match = re.search(mapping["regexp"], element) - if match: - return match.group("value") - else: - return element - elif element and check_presence: - return True - elif check_default: - return mapping.get("default", None) - else: - return None - - @classmethod - def _parse_leaf_map(cls, mapping): - value = cls._parse_leaf_xpath(mapping) - - if "regex" in mapping.keys(): - value = re.search(mapping["regexp"], value).group("value") - - return mapping["map"][value] if value else None - - @classmethod - def _parse_leaf_is_present(cls, mapping): - return cls._parse_leaf_xpath(mapping, check_default=False, check_presence=True) - - @classmethod - def _parse_leaf_is_absent(cls, mapping): - return not cls._parse_leaf_xpath(mapping, check_default=False, check_presence=True) + resp.append(xmltodict.parse(n, force_cdata=True)) + + return resp + + def _parse_leaf_default(self, mapping, data, check_default=True, check_presence=False): + attribute = mapping.get("attribute", None) + path = mapping.get("path", None) + if attribute and path: + attribute = "@{}".format(attribute) + mapping["path"] = "{}.{}".format(mapping["path"], attribute) + elif not check_presence and path: + attribute = "#text" + mapping["path"] = "{}.{}".format(mapping["path"], "#text") + return super()._parse_leaf_default(mapping, data, check_default, check_presence) diff --git a/napalm_yang/parsers/xml_deprecated.py b/napalm_yang/parsers/xml_deprecated.py new file mode 100644 index 00000000..b9508b7e --- /dev/null +++ b/napalm_yang/parsers/xml_deprecated.py @@ -0,0 +1,175 @@ +from lxml import etree + +import itertools + +import re + +from napalm_yang.parsers.base import BaseParser + + +class XMLParser(BaseParser): + + @classmethod + def init_native(cls, native): + r = [] + for n in native: + if hasattr(n, "xpath"): + r.append(n) + else: + r.append(etree.fromstring(n)) + return r + + @classmethod + def _parse_list_default(cls, mapping, data): + post_process_filter = mapping.pop("post_process_filter", None) + + for element in data.xpath(mapping["xpath"]): + key = element.xpath(mapping["key"])[0].text.strip() + if post_process_filter: + key = cls._parse_post_process_filter(post_process_filter, key) + yield key, element, {} + + @classmethod + def _parse_list_nested(cls, mapping, data): + path = mapping["xpath"].split("/") + iterators = [] + list_vars = [] + cls._parse_list_nested_recursive(data, path, iterators, list_vars) + return cls._parse_list_container_helper(mapping, iterators, data, list_vars) + + @classmethod + def _parse_list_nested_recursive(cls, data, path, iterators, list_vars, cur_vars=None): + """ + This helps parsing shit like: + + + + + my_peers + + 192.168.100.2 + adsasd + 65100 + + + 192.168.100.3 + 65100 + + + + my_other_peers + + 172.20.0.1 + 65200 + + + + + + """ + cur_vars = dict(cur_vars) if cur_vars else {} + if path: + p = path[0] + path = path[1:] + else: + for _ in data: + list_vars.append(cur_vars) + iterators.append(data) + return data + + if p.startswith("?"): + for x in data: + key, var_path = p.split(".") + cur_vars.update({key.lstrip("?"): x.xpath(var_path)[0].text}) + cls._parse_list_nested_recursive(x, path, iterators, list_vars, cur_vars) + else: + x = data.xpath(p) + cls._parse_list_nested_recursive(x, path, iterators, list_vars, cur_vars) + + @classmethod + def _parse_list_container_helper(cls, mapping, iterators, root, list_vars=None): + mandatory_elements = mapping.pop("mandatory", []) + + iterators = itertools.chain.from_iterable(iterators) + + for element in itertools.chain(iterators, mandatory_elements): + if isinstance(element, dict): + yield element["key"], element["block"], element["extra_vars"] + else: + key_name = "{}_name".format(root.tag if mapping.get("nested", False) + else root[0].tag) + extra_vars = { + key_name: element.tag + } + + if list_vars: + extra_vars.update(list_vars.pop(0)) + + composite_key = mapping.get("composite_key", None) + forced_key = mapping.get("key", None) + key_attribute = mapping.get("key_attribute", None) + post_process_filter = mapping.pop("post_process_filter", None) + + if composite_key: + key = " ".join([extra_vars[k] for k in composite_key]) + elif forced_key: + key = forced_key + elif key_attribute: + key = element.xpath(key_attribute)[0].text.strip() + else: + key = element.tag + + if post_process_filter: + key = cls._parse_post_process_filter(post_process_filter, key, extra_vars) + + yield key, element, extra_vars + + @classmethod + def _parse_list_container(cls, mapping, data): + data = data.xpath(mapping["xpath"]) + + nested = mapping.get("nested", False) + root = data[0] if nested and len(data) else data + + return cls._parse_list_container_helper(mapping, [root], root) + + @classmethod + def _parse_leaf_default(cls, mapping, data, check_default=True, check_presence=False): + element = data.xpath(mapping["xpath"]) + + if element and not check_presence: + if "attribute" in mapping.keys(): + element = element[0].get(mapping["attribute"]) + else: + element = element[0].text.strip() + + regexp = mapping.get("regexp", None) + if regexp: + match = re.search(mapping["regexp"], element) + if match: + return match.group("value") + else: + return element + elif element and check_presence: + return True + elif check_default: + return mapping.get("default", None) + else: + return None + + @classmethod + def _parse_leaf_map(cls, mapping, data): + value = cls._parse_leaf_default(mapping, data) + + if "regex" in mapping.keys(): + value = re.search(mapping["regexp"], value).group("value") + + return mapping["map"][value] if value else None + + @classmethod + def _parse_leaf_is_present(cls, mapping, data): + return cls._parse_leaf_default(mapping, data, check_default=False, check_presence=True) + + @classmethod + def _parse_leaf_is_absent(cls, mapping, data): + return not cls._parse_leaf_default(mapping, data, check_default=False, check_presence=True) diff --git a/napalm_yang/supported_models.py b/napalm_yang/supported_models.py new file mode 100644 index 00000000..11b00d73 --- /dev/null +++ b/napalm_yang/supported_models.py @@ -0,0 +1,7 @@ +SUPPORTED_MODELS = ( + # module_name, models + ("openconfig-interfaces", ["interfaces"]), + ("openconfig-network-instance", ["network_instances"]), + ("openconfig-platform", ["components"]), + ("openconfig-vlan", ["vlans"]), +) diff --git a/napalm_yang/translator.py b/napalm_yang/translator.py index a124ccf7..65b33d4d 100644 --- a/napalm_yang/translator.py +++ b/napalm_yang/translator.py @@ -1,27 +1,17 @@ from napalm_yang import helpers +from napalm_yang.parsers import get_parser +import copy import logging logger = logging.getLogger("napalm-yang") -def _find_translation_point(rule, bookmarks, translation): - if "in" in rule.keys(): - t = bookmarks - for p in rule["in"].split("."): - try: - t = t[p] - except TypeError: - t = t[int(p)] - translation = t - return translation - - class Translator(object): def __init__(self, model, profile, translation=None, keys=None, bookmarks=None, - merge=None, replace=None, other=None): + merge=None, replace=None, other=None, extra_vars=None): self.model = model self.profile = profile self._defining_module = model._defining_module @@ -29,7 +19,7 @@ def __init__(self, model, profile, self.translation = translation self.keys = keys or {"parent_key": None} - self.bookmarks = bookmarks or {self._yang_name: translation, "parent": translation} + self.extra_vars = extra_vars or {} self.merge = merge self.replace = replace @@ -39,13 +29,16 @@ def __init__(self, model, profile, self.profile, "translators") if self.mapping: - translator = helpers.get_parser(self.mapping["metadata"]["processor"]) + translator = get_parser(self.mapping["metadata"]["processor"]) self.translator = translator(merge=bool(merge), replace=bool(replace)) if translation is None: self.translation = self.translator.init_translation(self.mapping["metadata"], self.translation) + self.bookmarks = bookmarks or {"root_{}".format(self._yang_name): translation, + "parent": translation} + def translate(self): if not self.mapping: return "" @@ -63,19 +56,27 @@ def _translate(self, attribute, model, mapping, translation, other): else: self._translate_leaf(attribute, model, mapping, translation, other) + def _translate_leaf(self, attribute, model, mapping, translation, other): + rule = helpers.resolve_rule(mapping["_process"], attribute, self.keys, self.extra_vars, + model, self.bookmarks, bool(self.replace), bool(self.merge)) + self.translator.translate_leaf(attribute, model, other, rule, translation, self.bookmarks) + def _translate_container(self, attribute, model, mapping, translation, other): if model._yang_type: self.bookmarks["parent"] = translation - rule = helpers.resolve_rule(mapping["_process"], attribute, self.keys, - None, model, self.bookmarks) + rule = helpers.resolve_rule(mapping["_process"], attribute, self.keys, self.extra_vars, + model, self.bookmarks, bool(self.replace), bool(self.merge)) + + et, extra_vars = self.translator.translate_container(attribute, model, other, rule, + translation, self.bookmarks) - translation_point = _find_translation_point(rule, self.bookmarks, translation) - et = self.translator.parse_container(attribute, model, other, rule, translation_point) + if et is None: + return self.bookmarks[attribute] = et + self.extra_vars.update(extra_vars) else: - translation_point = _find_translation_point(mapping, self.bookmarks, translation) et = translation for k, v in model: @@ -87,16 +88,17 @@ def _translate_container(self, attribute, model, mapping, translation, other): if v._defining_module != self._defining_module and v._defining_module is not None: logger.debug("Skipping attribute: {}:{}".format(v._defining_module, attribute)) - translator = Translator(v, self.profile, translation_point, self.keys, - self.bookmarks, self.merge, self.replace, other_attr) + translator = Translator(v, self.profile, et, self.keys, self.bookmarks, self.merge, + self.replace, other_attr, self.extra_vars) translator.translate() else: - self._translate(v._yang_name, v, mapping[v._yang_name], et, other_attr) + self._translate(k, v, mapping[v._yang_name], et, other_attr) def _translate_list(self, attribute, model, mapping, translation, other): # Saving state to restore them later old_parent_key = self.keys["parent_key"] old_parent_bookmark = self.bookmarks["parent"] + old_extra_vars = copy.deepcopy(self.extra_vars) # We will use this to store blocks of configuration # for each individual element of the list @@ -115,14 +117,20 @@ def _translate_list(self, attribute, model, mapping, translation, other): self.keys[key_name] = key self.keys["parent_key"] = key + translation_rule_negate = helpers.resolve_rule(mapping["_process"], attribute, + self.keys, self.extra_vars, element, + self.bookmarks, bool(self.replace), + bool(self.merge), True) translation_rule = helpers.resolve_rule(mapping["_process"], attribute, - self.keys, None, element, self.bookmarks) - translation_point = _find_translation_point(translation_rule, self.bookmarks, - translation) + self.keys, self.extra_vars, element, + self.bookmarks, bool(self.replace), + bool(self.merge), False) - self.translator.default_element(translation_rule, translation_point, replacing=True) - et = self.translator.init_element(attribute, element, other_element, translation_rule, - translation_point) + self.translator.default_element(translation_rule_negate, translation, self.bookmarks, + replacing=True) + et, extra_vars = self.translator.init_element(attribute, element, other_element, + translation_rule, translation, + self.bookmarks) if et is None: logger.info("Skipping {} as not implemented or objects are equal".format(attribute)) @@ -130,35 +138,58 @@ def _translate_list(self, attribute, model, mapping, translation, other): self.bookmarks[attribute][key] = et self.bookmarks["parent"] = et + self.extra_vars.update(extra_vars) self._translate(attribute, element, mapping, et, other_element) # Restore state self.keys["parent_key"] = old_parent_key self.bookmarks["parent"] = old_parent_bookmark + self.extra_vars = old_extra_vars if other: # Let's default elements not present in the model - for key in other: - element = other[key] - if key not in model.keys(): - key_name = "{}_key".format(attribute) - self.keys[key_name] = key - self.keys["parent_key"] = key + self._default_element_list(attribute, other, mapping, translation, model) - translation_rule = helpers.resolve_rule(mapping["_process"], attribute, - self.keys, None, element, - self.bookmarks) - translation_point = _find_translation_point(translation_rule, self.bookmarks, - translation) + def _default_element_list(self, attribute, running, mapping, translation, candidate): + # we'll restore old values when we leave this branch + old_extra_vars = copy.deepcopy(self.extra_vars) + for key in running: + logger.info("Defaulting {}: {}".format(attribute, key)) + element = running[key] - self.translator.default_element(translation_rule, translation_point) + candidate = candidate or {} - def _translate_leaf(self, attribute, model, mapping, translation, other): - rules = [mapping["_process"]] if isinstance(mapping["_process"], str) \ - else mapping["_process"] - for rule in rules: - rule = helpers.resolve_rule(rule, attribute, self.keys, None, model, self.bookmarks) - translation_point = _find_translation_point(rule, self.bookmarks, - translation) - self.translator.parse_leaf(attribute, model, other, rule, translation_point) + if key not in candidate.keys(): + key_name = "{}_key".format(attribute) + self.keys[key_name] = key + self.keys["parent_key"] = key + + translation_rule = helpers.resolve_rule(mapping["_process"], attribute, + self.keys, self.extra_vars, element, + self.bookmarks, bool(self.replace), + bool(self.merge), True) + + extra_vars = self.translator.default_element(translation_rule, translation, + self.bookmarks) + self.extra_vars.update(extra_vars) + + if any([t.get("continue_negating", False) for t in translation_rule]): + self._default_child(attribute, element, mapping, translation) + + # Restore state + self.extra_vars = old_extra_vars + + def _default_child(self, attribute, running, mapping, translation): + logger.debug("Defaulting child attribute: {}".format(running._yang_path())) + + if running._is_container in ("container", ): + for k, v in running: + if not v._is_config or k == "state": + continue + elif v._defining_module != self._defining_module and v._defining_module is not None: + continue + else: + self._default_child(k, v, mapping[v._yang_name], translation) + elif running._yang_type in ("list", ): + self._default_element_list(attribute, running, mapping, translation, None) diff --git a/napalm_yang/translators/base.py b/napalm_yang/translators/base.py index 035af341..f988323b 100644 --- a/napalm_yang/translators/base.py +++ b/napalm_yang/translators/base.py @@ -1,29 +1,87 @@ +def _find_translation_point(rule, bookmarks, translation): + if "in" in rule.keys(): + t = bookmarks + for p in rule["in"].split("."): + try: + t = t[p] + except TypeError: + t = t[int(p)] + translation = t + return translation + + class BaseTranslator(object): def __init__(self, merge, replace): self.merge = merge self.replace = replace - def init_element(self, attribute, model, other, mapping, translation): - method_name = "_init_element_{}".format(mapping["mode"]) - return getattr(self, method_name)(attribute, model, other, mapping, translation) + def init_element(self, attribute, model, other, mapping, translation, bookmarks): + et = translation + extra_vars = {} + for m in mapping: + mode = m.get("mode", "default") + if mode == "skip": + continue + elif mode == "gate": + return None, {} + + t = _find_translation_point(m, bookmarks, et) + method_name = "_init_element_{}".format(mode) + et = getattr(self, method_name)(attribute, model, other, m, t) + if isinstance(et, tuple): + extra_vars = et[1] + et = et[0] + if et is False: + # if it's False we want to return None to signal we want to abort + return None, {} + return et, extra_vars + + def default_element(self, mapping, translation, bookmarks, replacing=False): + t = translation + extra_vars = {} + for m in mapping: + mode = m.get("mode", "default") + if mode == "skip": + continue + elif mode == "gate": + return {} - def default_element(self, mapping, translation, replacing=False): - method_name = "_default_element_{}".format(mapping["mode"]) - return getattr(self, method_name)(mapping, translation, replacing) + t = _find_translation_point(m, bookmarks, t) + method_name = "_default_element_{}".format(mode) + t, ev = getattr(self, method_name)(m, t, replacing) + extra_vars.update(ev) + return extra_vars - def parse_leaf(self, attribute, model, other, mapping, translation): - method_name = "_parse_leaf_{}".format(mapping["mode"]) - return getattr(self, method_name)(attribute, model, other, mapping, translation) + def translate_leaf(self, attribute, model, other, mapping, translation, bookmarks): + for m in mapping: + mode = m.get("mode", "default") + if mode == "skip": + continue + elif mode == "gate": + return - def parse_container(self, attribute, model, other, mapping, translation): - method_name = "_parse_container_{}".format(mapping["mode"]) - return getattr(self, method_name)(attribute, model, other, mapping, translation) + t = _find_translation_point(m, bookmarks, translation) + method_name = "_translate_leaf_{}".format(mode) + getattr(self, method_name)(attribute, model, other, m, t) - def _parse_leaf_skip(self, attribute, model, other, mapping, translation): - return translation - _init_element_skip = _parse_leaf_skip - _parse_container_skip = _parse_leaf_skip + def translate_container(self, attribute, model, other, mapping, translation, bookmarks): + et = translation + extra_vars = {} + for m in mapping: + mode = m.get("mode", "default") + if mode == "skip": + continue + elif mode == "gate": + return None, {} - def _default_element_skip(self, mapping, translation, replacing): - return + t = _find_translation_point(m, bookmarks, et) + method_name = "_translate_container_{}".format(mode) + et = getattr(self, method_name)(attribute, model, other, m, t) + if isinstance(et, tuple): + extra_vars = et[1] + et = et[0] + if et is False: + # if it's False we want to return None to signal we want to abort + return None, {} + return et, extra_vars diff --git a/napalm_yang/translators/text.py b/napalm_yang/translators/text.py index 6dbec162..2199f226 100644 --- a/napalm_yang/translators/text.py +++ b/napalm_yang/translators/text.py @@ -17,7 +17,7 @@ def init_translation(self, metadata, translation): def post_processing(self, translator): return self._xml_to_text(translator.translation) - def _parse_leaf_element(self, attribute, model, other, mapping, translation): + def _translate_leaf_default(self, attribute, model, other, mapping, translation): force = False if model == other and not self.replace: @@ -30,53 +30,61 @@ def _parse_leaf_element(self, attribute, model, other, mapping, translation): return mapping["element"] = "command" - super()._parse_leaf_element(attribute, model, other, mapping, translation, force) + super()._translate_leaf_default(attribute, model, other, mapping, translation, force) - def _init_element_container(self, attribute, model, other, mapping, translation): + def _init_element_default(self, attribute, model, other, mapping, translation): + extra_vars = {} if other is not None: if not napalm_yang.utils.diff(model, other) and not self.replace: # If objects are equal we return None as that aborts translating # the rest of the object - return + return False, {} if not model._changed() and other is not None and not self.replace: mapping["key_value"] = mapping["negate"] if not model._changed() and other is not None and self.replace: - return translation + return translation, {} mapping["key_element"] = "command" mapping["container"] = model._yang_name - t = super()._init_element_container(attribute, model, other, mapping, translation) + for i in ('prefix', 'negate_prefix'): + if i in mapping: + extra_vars[i] = mapping.get(i) + + t = super()._init_element_default(attribute, model, other, mapping, translation) end = mapping.get("end", "") if end and t is not None: e = etree.SubElement(translation, "command") e.text = end - return t + return t, extra_vars - # def _parse_container_container(self, attribute, model, other, mapping, translation): - # mapping["key_element"] = "container" - # mapping["container"] = model._yang_name - # return super()._init_element_container(attribute, model, other, mapping, translation) + def _default_element_default(self, mapping, translation, replacing): + extra_vars = {} - def _default_element_container(self, mapping, translation, replacing): if (replacing or self.replace) and not mapping.get("replace", True): - return + return None, {} if not self.merge and not self.replace: - return + return None, {} if self.merge and replacing: - return + return None, {} e = etree.SubElement(translation, "command") e.text = mapping["negate"] + for i in ('prefix', 'negate_prefix'): + if i in mapping: + extra_vars[i] = mapping.get(i) + + return None, extra_vars + def _xml_to_text(self, xml, text=""): for element in xml: - if element.tag == "command": + if element.tag == "command" and element.text is not None: text += element.text text += self._xml_to_text(element) return text diff --git a/napalm_yang/translators/xml.py b/napalm_yang/translators/xml.py index aa00dde7..87e4c0ea 100644 --- a/napalm_yang/translators/xml.py +++ b/napalm_yang/translators/xml.py @@ -14,11 +14,17 @@ def init_translation(self, metadata, translation): else: return translation - def _init_element_container(self, attribute, model, other, mapping, translation): + def _init_element_default(self, attribute, model, other, mapping, translation): t = translation - for element in mapping["container"].split("."): - t = etree.SubElement(t, element) + for element in mapping["container"].split("/"): + try: + if mapping.get("reuse", False): + t = t.xpath(element)[0] + else: + t = etree.SubElement(t, element) + except IndexError: + t = etree.SubElement(t, element) key_element = mapping.get("key_element", None) if key_element: @@ -34,14 +40,14 @@ def _init_element_container(self, attribute, model, other, mapping, translation) return t - _parse_container_container = _init_element_container + _translate_container_default = _init_element_default - def _default_element_container(self, mapping, translation, replacing): + def _default_element_default(self, mapping, translation, replacing): if not self.merge: - return + return None, {} if self.merge and replacing: - return + return None, {} t = translation @@ -53,11 +59,12 @@ def _default_element_container(self, mapping, translation, replacing): key = etree.SubElement(t, key_element) key.text = "{}".format(mapping["key_value"]) - t.set("delete", "delete") + if mapping.get("delete_on_merge", True): + t.set("delete", "delete") - return t + return t, {} - def _parse_leaf_element(self, attribute, model, other, mapping, translation, force=False): + def _translate_leaf_default(self, attribute, model, other, mapping, translation, force=False): delete = False if not model._changed() and other and self.merge: delete = True @@ -70,10 +77,16 @@ def _parse_leaf_element(self, attribute, model, other, mapping, translation, for except Exception: value = None if not model._changed() else model - e = etree.SubElement(translation, mapping["element"]) + e = translation + for element in mapping["element"].split("/"): + e = etree.SubElement(e, element) if delete: e.set("delete", "delete") if value is not None: e.text = "{}".format(value) + + def _translate_leaf_map(self, attribute, model, other, mapping, translation): + mapping["value"] = mapping["map"][model] + self._translate_leaf_default(attribute, model, other, mapping, translation) diff --git a/napalm_yang/utils.py b/napalm_yang/utils.py index 62d67209..f52e75c4 100644 --- a/napalm_yang/utils.py +++ b/napalm_yang/utils.py @@ -1,7 +1,7 @@ from napalm_yang import base -def model_to_dict(model): +def model_to_dict(model, mode=""): """ Given a model, return a representation of the model in a dict. @@ -10,6 +10,7 @@ def model_to_dict(model): Args: model (PybindBase): Model to transform. + mode (string): Whether to print config, state or all elements ("" for all) Returns: @@ -41,6 +42,16 @@ def model_to_dict(model): >>> "up [rw]": "uint32" (trimmed for clarity) """ + def is_mode(obj, mode): + if mode == "": + return True + elif mode == "config": + return obj._yang_name == "config" or obj._is_config + elif mode == "state": + return obj._yang_name == "state" or not obj._is_config + else: + raise ValueError("mode can only be config, state or ''. Passed: {}".format(mode)) + def get_key(key, model, parent_defining_module): key = "{} {}".format(key, "[rw]" if model._is_config else "[ro]") @@ -48,14 +59,16 @@ def get_key(key, model, parent_defining_module): key = "{}:{}".format(model._defining_module, key) return key - if model._yang_type in ("container", ): - return {get_key(k, v, model._defining_module): model_to_dict(v) - for k, v in model} - elif model._yang_type in ("list", ): - return {get_key(k, v, model._defining_module): model_to_dict(v) - for k, v in model._contained_class()} + if model._yang_type in ("container", "list", ): + cls = model if model._yang_type in ("container", ) else model._contained_class() + result = {} + for k, v in cls: + r = model_to_dict(v, mode) + if r: + result[get_key(k, v, model._defining_module)] = r + return result else: - return model._yang_type + return model._yang_type if is_mode(model, mode) else None def _diff_root(f, s): diff --git a/requirements.txt b/requirements.txt index ff4ce162..d1cee7c6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ future netaddr -lxml jinja2 +xmltodict PyYAML napalm-base -e git://github.com/napalm-automation/pyangbind.git@napalm_custom#egg=pyangbind diff --git a/setup.cfg b/setup.cfg index d7f0a392..685690ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,7 +8,7 @@ max_line_length = 100 [tool:pytest] python_paths = ./ -addopts = --cov=./napalm_yang/ -vs +addopts = --cov=./napalm_yang/ -vs --pylama json_report = report.json jsonapi = true diff --git a/setup.py b/setup.py index 0b5be1e2..14af13ef 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="napalm-yang", - version="0.0.6", + version="0.0.7", packages=find_packages(), author="David Barroso", author_email="dbarrosop@dravetech.com", diff --git a/test/integration/test_profiles.py b/test/integration/test_profiles.py index c2432ff4..3d9943c9 100644 --- a/test/integration/test_profiles.py +++ b/test/integration/test_profiles.py @@ -1,28 +1,28 @@ from __future__ import unicode_literals +# from napalm_base import get_network_driver + import napalm_yang +from napalm_base.mock import MockDriver import pytest import json import os -import sys - - -import logging -logger = logging.getLogger("napalm-yang") -def config_logging(): - logger.setLevel(logging.DEBUG) - ch = logging.StreamHandler(sys.stdout) - formatter = logging.Formatter('%(name)s - %(levelname)s - %(message)s') - ch.setFormatter(formatter) - logger.addHandler(ch) +# napalm_yang.helpers.config_logging() -# config_logging() +device_configuration = { + "junos": { + 'hostname': '127.0.0.1', + 'username': 'vagrant', + 'password': '', + 'optional_args': {'port': 12203, 'config_lock': False} + } +} def pretty_json(dictionary): @@ -32,66 +32,94 @@ def pretty_json(dictionary): BASE_PATH = os.path.dirname(__file__) -test_config_profile_models = [ - ["ios", napalm_yang.models.openconfig_interfaces, "default"], -] - -test_state_profile_models = [ - ["junos", napalm_yang.models.openconfig_interfaces, "default"], +test_parse_models = [ + ["ios", "config", napalm_yang.models.openconfig_interfaces, "default"], + ["eos", "config", napalm_yang.models.openconfig_network_instance, "default"], + ["eos", "config", napalm_yang.models.openconfig_interfaces, "default"], + ["eos", "config", napalm_yang.models.openconfig_interfaces, "l2_ports"], + ["eos", "config", napalm_yang.models.openconfig_vlan, "default"], + ["eos", "state", napalm_yang.models.openconfig_interfaces, "default"], + ["junos", "config", napalm_yang.models.openconfig_network_instance, "default"], + ["junos", "state", napalm_yang.models.openconfig_interfaces, "default"], ] -def read_file_content(profile, model, case, filename): - full_path = os.path.join(BASE_PATH, "profiles_data", - profile, model._yang_name, case, filename) +def read_file_content(base, profile, model, mode, case, filename): + full_path = os.path.join(BASE_PATH, base, + profile, model._yang_name, mode, case, filename) with open(full_path, "r") as f: return f.read() -def read_json(profile, model, case, filename): - return json.loads(read_file_content(profile, model, case, filename)) +def read_json(base, profile, model, mode, case, filename): + return json.loads(read_file_content(base, profile, model, mode, case, filename)) -class Tests(object): - - @pytest.mark.parametrize("profile, model, case", test_config_profile_models) - def test_parse_config(self, profile, model, case): - config_txt = read_file_content(profile, model, case, "config.txt") - expected_json = read_json(profile, model, case, "expected.json") - - config = napalm_yang.base.Root() - config.add_model(model) - config.parse_config(native=[config_txt], profile=[profile]) - - expected = napalm_yang.base.Root() - expected.add_model(model) - expected.load_dict(expected_json) +def load_json_model(base, profile, model, mode, case, filename): + expected_json = read_json(base, profile, model, mode, case, "expected.json") + expected = napalm_yang.base.Root() + expected.add_model(model) + expected.load_dict(expected_json) + return expected - # print(pretty_json(config.get(filter=True))) - assert not napalm_yang.utils.diff(config, expected) +class Tests(object): - @pytest.mark.parametrize("profile, model, case", test_config_profile_models) - def test_translate(self, profile, model, case): - json_blob = read_json(profile, model, case, "expected.json") - expected_translation = read_file_content(profile, model, case, "translation.txt") + @pytest.mark.parametrize("profile, mode, model, case", test_parse_models) + def test_parse(self, profile, mode, model, case): + expected = load_json_model("test_profiles", profile, model, mode, case, "expected.json") + + optional_args = { + "path": os.path.join(BASE_PATH, "test_profiles", + profile, model._yang_name, mode, case, "mocked"), + "profile": profile if isinstance(profile, list) else [profile], + } + with MockDriver("hostname", "username", "password", optional_args=optional_args) as d: + yang = napalm_yang.base.Root() + yang.add_model(model) + + if mode == "config": + yang.parse_config(device=d) + else: + yang.parse_state(device=d) + + # print(pretty_json(yang.get(filter=True))) + # print(pretty_json(expected.get(filter=True))) + assert not napalm_yang.utils.diff(yang, expected) + + @pytest.mark.parametrize("profile, mode, model, case", test_parse_models) + def test_translate(self, profile, mode, model, case): + if mode == "state": + return + + json_blob = read_json("test_profiles", profile, model, mode, case, "expected.json") + expected_translation = read_file_content("test_profiles", profile, model, mode, case, + "translation.txt") config = napalm_yang.base.Root() config.add_model(model) config.load_dict(json_blob) configuration = config.translate_config(profile=[profile]) - # print(configuration) + + # driver = get_network_driver(profile) + # with driver(**device_configuration[profile]) as d: + # d.load_merge_candidate(config=configuration) + # print(d.compare_config()) assert configuration == expected_translation @pytest.mark.parametrize("action", ["merge", "replace"]) - @pytest.mark.parametrize("profile, model, case", test_config_profile_models) - def test_translate_merge(self, action, profile, model, case): - json_running = read_json(profile, model, case, "expected.json") - json_candidate = read_json(profile, model, case, "candidate.json") + @pytest.mark.parametrize("profile, mode, model, case", test_parse_models) + def test_translate_merge(self, mode, action, profile, model, case): + if mode == "state": + return + + json_running = read_json("test_profiles", profile, model, mode, case, "expected.json") + json_candidate = read_json("test_profiles", profile, model, mode, case, "candidate.json") - expected_translation = read_file_content(profile, model, case, "{}.txt".format(action)) + expected_translation = read_file_content("test_profiles", profile, model, mode, case, + "{}.txt".format(action)) candidate = napalm_yang.base.Root() candidate.add_model(model) @@ -109,19 +137,10 @@ def test_translate_merge(self, action, profile, model, case): # print(pretty_json(napalm_yang.utils.diff(candidate, running))) # print(configuration) - assert configuration == expected_translation - - @pytest.mark.parametrize("profile, model, case", test_state_profile_models) - def test_parse_state(self, profile, model, case): - native = read_file_content(profile, model, case, "{}.native".format(model._yang_name)) - expected_json = read_json(profile, model, case, "{}.expected".format(model._yang_name)) - - state = napalm_yang.base.Root() - state.add_model(model) - state.parse_state(native=[native], profile=[profile]) + # driver = get_network_driver(profile) + # with driver(**device_configuration[profile]) as d: + # d.load_merge_candidate(config=configuration) + # print(d.compare_config()) + # d.discard_config() - expected = napalm_yang.base.Root() - expected.add_model(model) - expected.load_dict(expected_json) - - assert not napalm_yang.utils.diff(state, expected) + assert configuration == expected_translation diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/default/candidate.json b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/candidate.json new file mode 100644 index 00000000..074b3c68 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/candidate.json @@ -0,0 +1,217 @@ +{ + "interfaces": { + "interface": { + "Ethernet1": { + "config": { + "description": "Changed description", + "enabled": true, + "type": "ethernetCsmacd" + }, + "ethernet": { + "switched-vlan": { + "config": { + "access-vlan": 1, + "interface-mode": "ACCESS", + "native-vlan": 1, + "trunk-vlans": [ + "1..4094" + ] + } + } + }, + "name": "Ethernet1", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false + } + } + } + }, + "Ethernet2": { + "config": { + "description": "so much oc", + "enabled": false, + "mtu": 1500, + "type": "ethernetCsmacd" + }, + "name": "Ethernet2", + "routed-vlan": { + "ipv4": { + "addresses": { + "address": { + "192.168.0.1": { + "config": { + "ip": "192.168.0.1", + "prefix-length": 24, + "secondary": false + }, + "ip": "192.168.0.1" + }, + "192.168.1.1": { + "config": { + "ip": "192.168.1.1", + "prefix-length": 24, + "secondary": true + }, + "ip": "192.168.1.1" + } + } + }, + "config": { + "enabled": true + } + } + }, + "subinterfaces": { + "subinterface": { + "1": { + "config": { + "description": "another subiface", + "enabled": false, + "name": "Ethernet2.1" + }, + "index": "1", + "ipv4": { + "addresses": { + "address": { + "172.20.1.1": { + "config": { + "ip": "172.20.1.1", + "prefix-length": 24, + "secondary": true + }, + "ip": "172.20.1.1" + }, + "192.168.1.1": { + "config": { + "ip": "192.168.1.1", + "prefix-length": 24, + "secondary": false + }, + "ip": "192.168.1.1" + } + } + }, + "config": { + "enabled": true + } + }, + "vlan": { + "config": { + "vlan-id": 1 + } + } + }, + "2": { + "config": { + "description": "asdasdasd", + "enabled": true, + "name": "Ethernet2.2" + }, + "index": "2", + "ipv4": { + "addresses": { + "address": { + "192.168.2.1": { + "config": { + "ip": "192.168.2.1", + "prefix-length": 24, + "secondary": false + }, + "ip": "192.168.2.1" + } + } + }, + "config": { + "enabled": true + } + }, + "vlan": { + "config": { + "vlan-id": 2 + } + } + } + } + } + }, + "Loopback0": { + "config": { + "description": "a loopback", + "enabled": true, + "mtu": 1500, + "type": "softwareLoopback" + }, + "name": "Loopback0", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": true + } + } + } + }, + "Management1": { + "config": { + "enabled": true, + "mtu": 1500, + "type": "ethernetCsmacd" + }, + "name": "Management1", + "routed-vlan": { + "ipv4": { + "addresses": { + "address": { + "10.0.2.15": { + "config": { + "ip": "10.0.2.15", + "prefix-length": 24, + "secondary": false + }, + "ip": "10.0.2.15" + } + } + }, + "config": { + "enabled": true + } + } + } + }, + "Port-Channel1": { + "config": { + "description": "blah", + "enabled": true, + "mtu": 9000, + "type": "ieee8023adLag" + }, + "name": "Port-Channel1", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": true + } + } + }, + "subinterfaces": { + "subinterface": { + "1": { + "config": { + "enabled": true, + "name": "Port-Channel1.1" + }, + "index": "1", + "ipv4": { + "config": { + "enabled": true + } + } + } + } + } + } + } + } +} + diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/default/expected.json b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/expected.json new file mode 100644 index 00000000..e4cc9ab9 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/expected.json @@ -0,0 +1,208 @@ +{ + "interfaces": { + "interface": { + "Ethernet1": { + "config": { + "description": "This is a description", + "enabled": true, + "type": "ethernetCsmacd" + }, + "ethernet": { + "switched-vlan": { + "config": { + "access-vlan": 1, + "interface-mode": "ACCESS", + "native-vlan": 1, + "trunk-vlans": [ + "1..4094" + ] + } + } + }, + "name": "Ethernet1", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false + } + } + } + }, + "Ethernet2": { + "config": { + "description": "so much oc", + "enabled": false, + "mtu": 1500, + "type": "ethernetCsmacd" + }, + "name": "Ethernet2", + "routed-vlan": { + "ipv4": { + "addresses": { + "address": { + "192.168.0.1": { + "config": { + "ip": "192.168.0.1", + "prefix-length": 24, + "secondary": false + }, + "ip": "192.168.0.1" + } + } + }, + "config": { + "enabled": true + } + } + }, + "subinterfaces": { + "subinterface": { + "1": { + "config": { + "description": "another subiface", + "enabled": false, + "name": "Ethernet2.1" + }, + "index": "1", + "ipv4": { + "addresses": { + "address": { + "172.20.0.1": { + "config": { + "ip": "172.20.0.1", + "prefix-length": 24, + "secondary": true + }, + "ip": "172.20.0.1" + }, + "192.168.1.1": { + "config": { + "ip": "192.168.1.1", + "prefix-length": 24, + "secondary": false + }, + "ip": "192.168.1.1" + } + } + }, + "config": { + "enabled": true + } + }, + "vlan": { + "config": { + "vlan-id": 1 + } + } + }, + "2": { + "config": { + "description": "asdasdasd", + "enabled": true, + "name": "Ethernet2.2" + }, + "index": "2", + "ipv4": { + "addresses": { + "address": { + "192.168.2.1": { + "config": { + "ip": "192.168.2.1", + "prefix-length": 24, + "secondary": false + }, + "ip": "192.168.2.1" + } + } + }, + "config": { + "enabled": true + } + }, + "vlan": { + "config": { + "vlan-id": 2 + } + } + } + } + } + }, + "Loopback1": { + "config": { + "description": "a loopback", + "enabled": true, + "mtu": 1500, + "type": "softwareLoopback" + }, + "name": "Loopback1", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": true + } + } + } + }, + "Management1": { + "config": { + "enabled": true, + "mtu": 1500, + "type": "ethernetCsmacd" + }, + "name": "Management1", + "routed-vlan": { + "ipv4": { + "addresses": { + "address": { + "10.0.2.15": { + "config": { + "ip": "10.0.2.15", + "prefix-length": 24, + "secondary": false + }, + "ip": "10.0.2.15" + } + } + }, + "config": { + "enabled": true + } + } + } + }, + "Port-Channel1": { + "config": { + "description": "blah", + "enabled": true, + "mtu": 9000, + "type": "ieee8023adLag" + }, + "name": "Port-Channel1", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": true + } + } + }, + "subinterfaces": { + "subinterface": { + "1": { + "config": { + "enabled": true, + "name": "Port-Channel1.1" + }, + "index": "1", + "ipv4": { + "config": { + "enabled": true + } + } + } + } + } + } + } + } +} diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/default/merge.txt b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/merge.txt new file mode 100644 index 00000000..00e3065c --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/merge.txt @@ -0,0 +1,15 @@ +interface Ethernet2 + ip address 192.168.1.1/24 secondary + exit +interface Ethernet2.1 + ip address 172.20.1.1/24 secondary + default ip address 172.20.0.1/24 secondary + exit +interface Ethernet1 + description Changed description + exit +interface Loopback0 + description a loopback + mtu 1500 + exit +no interface Loopback1 diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/default/mocked/cli.1.show_running_config_all.0 b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/mocked/cli.1.show_running_config_all.0 new file mode 100644 index 00000000..34c434fa --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/mocked/cli.1.show_running_config_all.0 @@ -0,0 +1,1746 @@ +! Command: show running-config all +! device: localhost (vEOS, EOS-4.15.2.1F) +! +! boot system flash:/vEOS-lab.swi +! +hardware access-list ipv6 implicit-permit icmpv6 all +! +no deep-inspection payload l2 skip +no deep-inspection payload l4 skip +! +agent fatal-error action reload +! +bfd slow-timer 2000 +bfd interval 300 min_rx 300 multiplier 3 default +! +prompt %H%R%v%P +no service configuration session max completed +no service configuration session max pending +! +schedule config max-concurrent-jobs 1 +schedule tech-support interval 60 max-log-files 100 command show tech-support +! +no logging event storm-control discards global +no logging event storm-control discards interval +! +cvx + shutdown + port 9979 + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 + service hsc + vtep flood list type any + service openstack + shutdown + grace-period 60 + name-resolution interval 21600 + service vxlan + shutdown + vtep mac-learning control-plane + resync-period 300 +! +no dcbx application +! +no ip dhcp relay information option +no ip dhcp relay always-on +no ip dhcp smart-relay global +! +no ip dhcp snooping +no ip dhcp snooping information option +ip dhcp snooping information option circuit-id type 0 format %p:%v +! +default switch forwarding-mode +! +vlan internal allocation policy ascending +! +email + no from-user + no server + no auth username + no auth password + no tls +! +errdisable detect cause arp-inspection +errdisable detect cause link-flap +no errdisable recovery cause arp-inspection +no errdisable recovery cause bpduguard +no errdisable recovery cause hitless-reload-down +no errdisable recovery cause link-flap +no errdisable recovery cause loopprotectguard +no errdisable recovery cause no-internal-vlan +no errdisable recovery cause portchannelguard +no errdisable recovery cause portsec +no errdisable recovery cause tapagg +no errdisable recovery cause uplink-failure-detection +no errdisable recovery cause xcvr-unsupported +errdisable recovery interval 300 +! +event-handler dhclient + trigger on-boot + action bash sudo /mnt/flash/initialize_ma1.sh + delay 20 + no asynchronous + timeout 10 +! +ip igmp snooping +no ip igmp snooping report-flooding +ip igmp snooping robustness-variable 2 +no ip igmp snooping restart query-interval +ip igmp snooping immediate-leave +default ip igmp snooping vlan 1 +default ip igmp snooping vlan 1 querier +no ip igmp snooping vlan 1 querier address +no ip igmp snooping vlan 1 querier query-interval +no ip igmp snooping vlan 1 querier max-response-time +no ip igmp snooping vlan 1 querier last-member-query-interval +no ip igmp snooping vlan 1 querier last-member-query-count +no ip igmp snooping vlan 1 querier startup-query-interval +no ip igmp snooping vlan 1 querier startup-query-count +no ip igmp snooping vlan 1 querier version +no ip igmp snooping vlan 1 max-groups +default ip igmp snooping vlan 1 immediate-leave +no ip igmp snooping querier +no ip igmp snooping querier address +ip igmp snooping querier query-interval 125 +ip igmp snooping querier max-response-time 10 +ip igmp snooping querier last-member-query-interval 1 +no ip igmp snooping querier last-member-query-count +no ip igmp snooping querier startup-query-interval +no ip igmp snooping querier startup-query-count +no ip igmp snooping querier version +! +default logging event congestion-drops +! +no service interface inactive expose +! +no service interface unconnected expose +! +default load-interval default +! +transceiver qsfp default-mode 4x10G +! +ip pim log-neighbor-changes +no ip pim bfd +no ip pim ssm range +ip pim sparse-mode sg-expiry-timer 210 +ip pim spt-threshold 0 +! +ip msdp timer 30 +! +no ip pim rp-candidate +no ip pim bsr-holdtime +no ip pim bsr-sztimeout +no ip pim bsr-candidate +no ip pim bsr rp-candidate advertisement-filter +! +no ip pim register-source +! +lacp system-priority 32768 +! +no queue-monitor length +no queue-monitor length notifying +! +queue-monitor length global-buffer thresholds 512 256 +no queue-monitor length mirror +! +queue-monitor length global-buffer +! +errdisable flap-setting cause link-flap max-flaps 5 time 10 +! +lldp timer 30 +lldp holdtime 120 +lldp reinit 2 +lldp tlv-select link-aggregation +lldp tlv-select management-address +lldp tlv-select max-frame-size +lldp tlv-select port-description +lldp tlv-select port-vlan +lldp tlv-select system-capabilities +lldp tlv-select system-description +lldp tlv-select system-name +lldp run +no lldp management-address +! +logging on +logging buffered 32 debugging +logging trap informational +logging console errors +no logging synchronous +logging format timestamp traditional +no logging format hostname fqdn +logging facility local4 +no logging source-interface +! +logging level AAA debugging +logging level ACCOUNTING debugging +logging level ACL debugging +logging level AGENT debugging +logging level ALE debugging +logging level ARP debugging +logging level BFD debugging +logging level BGP debugging +logging level CAPACITY debugging +logging level CAPI debugging +logging level CLEAR debugging +logging level DATAPLANE debugging +logging level DOT1X debugging +logging level ENVMON debugging +logging level ETH debugging +logging level EVENTMON debugging +logging level EXTENSION debugging +logging level FHRP debugging +logging level FLOW debugging +logging level FORWARDING debugging +logging level FRU debugging +logging level FWK debugging +logging level GMP debugging +logging level HARDWARE debugging +logging level IGMP debugging +logging level IGMPSNOOPING debugging +logging level INTF debugging +logging level IP6ROUTING debugging +logging level IRA debugging +logging level ISIS debugging +logging level KERNELFIB debugging +logging level LACP debugging +logging level LAG debugging +logging level LAUNCHER debugging +logging level LINEPROTO debugging +logging level LLDP debugging +logging level LOGMGR debugging +logging level LOOPBACK debugging +logging level LOOPPROTECT debugging +logging level MAPREDUCEMONITOR debugging +logging level MDIO debugging +logging level MIRRORING debugging +logging level MLAG debugging +logging level MMODE debugging +logging level MROUTE debugging +logging level MRP debugging +logging level MSDP debugging +logging level MSRP debugging +logging level MVRP debugging +logging level NAT debugging +logging level OPENFLOW debugging +logging level OSPF debugging +logging level OSPF3 debugging +logging level PFC debugging +logging level PIM debugging +logging level PIMBSR debugging +logging level PORTSECURITY debugging +logging level PTP debugging +logging level PWRMGMT debugging +logging level QOS debugging +logging level QUEUEMONITOR debugging +logging level REACHABILITYMONITOR debugging +logging level REDUNDANCY debugging +logging level RIB debugging +logging level ROUTING debugging +logging level SECURITY debugging +logging level SERVERMONITOR debugging +logging level SPANTREE debugging +logging level STAGEMGR debugging +logging level SYS debugging +logging level SYSDB debugging +logging level TAPAGG debugging +logging level TCP debugging +logging level TRANSCEIVER debugging +logging level TUNNEL debugging +logging level VM debugging +logging level VMTRACERSESS debugging +logging level VMWAREVI debugging +logging level VMWAREVS debugging +logging level VRF debugging +logging level VRRP debugging +logging level VXLAN debugging +logging level XMPP debugging +logging level ZTP debugging +! +logging event link-status global +! +no ip virtual-router mac-address mlag-peer +! +no msrp streams load-file +! +no hostname +no ip domain lookup source-interface +no ip name-server +no ip domain-name +no ip host +no ipv6 host +! +no ntp trusted-key +no ntp authenticate +no ntp serve all +! +power poll-interval 5 +! +no radius-server key +radius-server timeout 5 +radius-server retransmit 3 +no radius-server deadtime +no radius-server attribute 32 include-in-access-req format +! +router msdp + vrf devel + ip msdp timer 30 + ! + vrf prod + ip msdp timer 30 +! +sflow sample 1048576 +sflow polling-interval 2 +no sflow source +no sflow source-interface +sflow sample output interface +sflow extension switch +sflow extension router +no sflow sample rewrite dscp +no sflow run +! +no sflow extension bgp +! +no snmp-server engineID local +no snmp-server chassis-id +no snmp-server contact +no snmp-server location +no snmp-server source-interface +default snmp-server enable traps +default snmp-server enable traps bgp +default snmp-server enable traps bgp arista-backward-transition +default snmp-server enable traps bgp arista-established +default snmp-server enable traps bgp backward-transition +default snmp-server enable traps bgp established +default snmp-server enable traps entity +default snmp-server enable traps entity arista-ent-sensor-alarm +default snmp-server enable traps entity ent-config-change +default snmp-server enable traps entity ent-state-oper-disabled +default snmp-server enable traps entity ent-state-oper-enabled +default snmp-server enable traps lldp +default snmp-server enable traps lldp rem-tables-change +default snmp-server enable traps msdp +default snmp-server enable traps msdp backward-transition +default snmp-server enable traps msdp established +default snmp-server enable traps ospf +default snmp-server enable traps ospf if-auth-failure +default snmp-server enable traps ospf if-config-error +default snmp-server enable traps ospf if-state-change +default snmp-server enable traps ospf nbr-state-change +default snmp-server enable traps pim +default snmp-server enable traps pim neighbor-loss +default snmp-server enable traps snmp +default snmp-server enable traps snmp authentication +default snmp-server enable traps snmp link-down +default snmp-server enable traps snmp link-up +default snmp-server enable traps snmpConfigManEvent +default snmp-server enable traps snmpConfigManEvent arista-config-man-event +default snmp-server enable traps switchover +default snmp-server enable traps switchover arista-redundancy-switch-over-notif +default snmp-server enable traps test +default snmp-server enable traps test arista-test-notification +default snmp-server enable traps vrrp +default snmp-server enable traps vrrp trap-new-master +snmp-server vrf default +! +spanning-tree mode mstp +spanning-tree hello-time 2000 +spanning-tree max-age 20 +spanning-tree forward-time 15 +spanning-tree transmit hold-count 6 +spanning-tree max-hops 20 +no spanning-tree mst pvst border +no spanning-tree portfast bpduguard default +no spanning-tree portfast bpdufilter default +spanning-tree bridge assurance +no spanning-tree loopguard default +no spanning-tree portchannel guard misconfig +spanning-tree bpduguard rate-limit default +logging event spanning-tree global +spanning-tree mst 0 priority 32768 +! +spanning-tree mst configuration + no name + revision 0 +! +no service sequence-numbers +no service running-config timestamp +! +no tacacs-server key +tacacs-server timeout 5 +! +aaa authentication login default local +no aaa authentication login console +aaa authentication enable default local +no aaa authentication policy on-success log +no aaa authentication policy on-failure log +no aaa authorization console +aaa authorization exec default local +no aaa authorization commands all default +aaa authorization config-commands +no aaa accounting exec console +no aaa accounting commands all console +no aaa accounting exec default +no aaa accounting system default +no aaa accounting dot1x default +no aaa accounting commands all default +! +no enable secret +aaa root secret 5 $1$1s8ATte8$cvMSZw6BlLGJVo61p88cP. +no aaa authentication policy local allow-nopassword-remote-login +no aaa authorization policy local default-role +! +username admin privilege 15 role network-admin secret 5 $1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1 +username vagrant privilege 15 role network-admin secret 5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0 +! +role network-admin + 10 permit command .* +! +role network-operator + 10 deny mode exec command configure|bash|python-shell|\| + 20 permit mode exec command .* +! +tap aggregation + no mode + no service-policy type tapagg mac access-list match ip +! +environment overheat action shutdown +environment insufficient-fans action shutdown +environment fan-speed auto +! +clock timezone UTC +! +no virtual-cable +! +vlan 1 + name default + state active + no private-vlan + no mac-address-table sharing +! +vrf definition devel + rd 1:2 + no description +! +vrf definition prod + rd 1:1 + description Production VRF +! +interface Port-Channel1 + description blah + no shutdown + default load-interval + mtu 9000 + logging event link-status use-global + switchport dot1q ethertype 0x8100 + no switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + no ip address + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no bfd per-link + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Port-Channel1 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no port-channel min-links + no port-channel lacp fallback + port-channel lacp fallback timeout 90 + no l2 mtu + no ip multicast static + ip mfib fastdrop + no mlag + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable +! +interface Port-Channel1.1 + no description + no shutdown + default load-interval + logging event link-status use-global + no encapsulation dot1q vlan 0 + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + no ip address + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Port-Channel1.1 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no ip multicast static + ip mfib fastdrop + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable +! +interface Ethernet1 + description This is a description + no shutdown + default load-interval + logging event link-status use-global + dcbx mode ieee + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport access vlan 1 + switchport trunk native vlan 1 + switchport trunk allowed vlan 1-4094 + no switchport asym vlan + switchport mode access + switchport dot1q ethertype 0x8100 + no switchport trunk private-vlan secondary + switchport mac address learning + no switchport private-vlan mapping + switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + channel-group 1 mode active + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no msrp + no mvrp + no switchport port-security + switchport port-security maximum 1 + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable + no spanning-tree portfast + spanning-tree portfast auto + no spanning-tree link-type + no spanning-tree bpduguard + no spanning-tree bpdufilter + no spanning-tree cost + spanning-tree port-priority 128 + no spanning-tree guard + no spanning-tree bpduguard rate-limit + logging event spanning-tree use-global + switchport tap native vlan 1 + no switchport tap identity + no switchport tap mpls pop all + switchport tap allowed vlan 1-4094 + switchport tool allowed vlan 1-4094 + no switchport tool identity + no switchport tap truncation + no switchport tool truncation + no switchport tap default group + no switchport tap default interface + no switchport tool group + no switchport tool dot1q remove outer +! +interface Ethernet2 + description so much oc + shutdown + default load-interval + mtu 1500 + logging event link-status use-global + no dcbx mode + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport dot1q ethertype 0x8100 + no switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + ip address 192.168.0.1/24 + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Ethernet2 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no channel-group + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no ip multicast static + ip mfib fastdrop + no msrp + no mvrp + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable +! +interface Ethernet2.1 + description another subiface + shutdown + default load-interval + logging event link-status use-global + encapsulation dot1q vlan 1 + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + vrf forwarding prod + no ip proxy-arp + no ip local-proxy-arp + ip address 192.168.1.1/24 + ip address 172.20.0.1/24 secondary + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Ethernet2.1 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no ip multicast static + ip mfib fastdrop + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + sflow enable +! +interface Ethernet2.2 + description asdasdasd + no shutdown + default load-interval + logging event link-status use-global + encapsulation dot1q vlan 2 + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + vrf forwarding devel + no ip proxy-arp + no ip local-proxy-arp + ip address 192.168.2.1/24 + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Ethernet2.2 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no ip multicast static + ip mfib fastdrop + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + sflow enable +! +interface Loopback1 + description a loopback + no shutdown + default load-interval + mtu 1500 + logging event link-status use-global + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + no ip address + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + default ntp serve +! +interface Management1 + no description + no shutdown + default load-interval + mtu 1500 + logging event link-status use-global + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + ip address 10.0.2.15/24 + no ip verify unicast + default arp timeout 300 + default ipv6 nd cache expire 300 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + ipv6 nd ra suppress all + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + lldp transmit + lldp receive + default ntp serve +! +mac address-table aging-time 300 +! +monitor hadoop + shutdown +! +no ip fhrp accept-mode +! +no ip virtual-router mac-address +ip virtual-router mac-address advertisement-interval 30 +! +no ipv6 hardware fib nexthop-index +! +ip route 10.0.0.0/24 192.168.0.2 10 tag 0 +ip route 10.0.0.0/24 192.168.0.3 1 tag 0 +ip route 10.0.1.0/24 192.168.0.2 1 tag 0 +ip route vrf prod 10.0.0.0/24 172.20.0.2 1 tag 0 +ip route vrf prod 10.0.1.0/24 172.20.0.2 1 tag 0 +ip route vrf devel 10.0.0.0/24 192.168.2.2 1 tag 0 +ip route vrf devel 10.0.1.0/24 192.168.2.2 1 tag 0 +! +ip routing +ip icmp redirect +no ip icmp source-interface +ip hardware fib route unprogrammed parent-drop +no ip hardware fib route delete delay +ip hardware fib next-hop update event bfd +no ip hardware fib maximum routes +no ip hardware forwarding mpls gre-key +no ip icmp rate-limit-unreachable 0 +no ip hardware fib next-hop sharing +no ip routing vrf prod +no ip icmp source-interface vrf prod +no ip routing vrf devel +no ip icmp source-interface vrf devel +ipv6 icmp redirect +no ip hardware fib maximum routes-v6 +! +no ip multicast-routing +ip multicast multipath deterministic +ip mfib max-fastdrops 1024 +no ip multicast count +ip mfib activity polling-interval 60 +! +ip mfib cache-entries unresolved max 4000 +ip mfib packet-buffers unresolved max 3 +! +ip as-path regex-mode asn +! +no ipv6 unicast-routing +no ipv6 unicast-routing vrf prod +no ipv6 unicast-routing vrf devel +! +control-plane + ip access-group default-control-plane-acl in + ip access-group default-control-plane-acl vrf prod in + ip access-group default-control-plane-acl vrf devel in + ipv6 access-group default-control-plane-acl in + ipv6 access-group default-control-plane-acl vrf prod in + ipv6 access-group default-control-plane-acl vrf devel in +! +mac address-table notification host-flap logging +mac address-table notification host-flap detection window 15 +! +mlag configuration + no domain-id + heartbeat-interval 4000 + no local-interface + no peer-address + no peer-link + reload-delay 0 + no reload-delay non-mlag + no reload-delay mode + no shutdown +! +monitor loop-protection + rate-limit 1000 + transmit-interval 5 + disabled-time 604800 +! +no mpls ip +! +no ip ftp client source-interface +no ip http client source-interface +no ip ssh client source-interface +no ip telnet client source-interface +no ip tftp client source-interface +! +no qos random-detect ecn global-buffer +qos map cos 0 1 2 3 4 5 6 7 to traffic-class 8 +qos map dscp 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to cos 3 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to uc-tx-queue 4 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4 +! +policy-map type control-plane copp-system-policy + class copp-system-bpdu + shape pps 6000 + bandwidth pps 5000 + class copp-system-arp + shape pps 25000 + bandwidth pps 1000 + class copp-system-igmp + shape pps 5000 + bandwidth pps 4000 + class copp-system-default + no shape + no bandwidth +! +no ip radius source-interface +! +monitor reachability + shutdown + probe receiver max-streams 50000 + probe checkpoint-interval 60 + destination port 49152 + default ignore-checksum + default preserve-streams +! +router bgp 65001 + no shutdown + router-id 1.1.1.1 + bgp convergence time 300 + bgp convergence slow-peer time 90 + no bgp confederation identifier + no update wait-for-convergence + no update wait-install + bgp log-neighbor-changes + bgp default ipv4-unicast + no bgp default ipv4-unicast transport ipv6 + no bgp default ipv6-unicast + timers bgp 60 180 + distance bgp 200 200 200 + graceful-restart restart-time 300 + graceful-restart stalepath-time 300 + no bgp cluster-id + bgp client-to-client reflection + no graceful-restart + graceful-restart-helper + bgp peer-mac-resolution-timeout 0 + bgp enforce-first-as + no bgp route install-map + no bgp transport listen-port + no default-metric + no bgp always-compare-med + no bgp bestpath med missing-as-worst + no bgp bestpath med confed + no bgp host-routes fib direct-install + no bgp route-reflector preserve-attributes + maximum-paths 1 ecmp 128 + no bgp additional-paths install + bgp additional-paths receive + bgp listen limit 1000 + bgp bestpath as-path multipath-relax + no bgp aspath-cmp-include-nexthop + bgp bestpath ecmp-fast + no bgp bestpath tie-break age + no bgp bestpath tie-break router-id + no bgp bestpath tie-break originator-id + no bgp bestpath tie-break cluster-list-length + no bgp advertise-inactive + no bgp auto-local-addr + no neighbor 192.168.0.200 peer-group + neighbor 192.168.0.200 remote-as 65100 + no neighbor 192.168.0.200 import-localpref + no neighbor 192.168.0.200 export-localpref + neighbor 192.168.0.200 description asdasd qweq asdasd + no neighbor 192.168.0.200 next-hop-self + no neighbor 192.168.0.200 next-hop-peer + no neighbor 192.168.0.200 allowas-in + neighbor 192.168.0.200 send-community + no neighbor 192.168.0.200 shutdown + neighbor 192.168.0.200 remove-private-as + no neighbor 192.168.0.200 out-delay + no neighbor 192.168.0.200 local-as + no neighbor 192.168.0.200 weight + no neighbor 192.168.0.200 transport connection-mode passive + no neighbor 192.168.0.200 update-source + no neighbor 192.168.0.200 dont-capability-negotiate + no neighbor 192.168.0.200 fall-over bfd + no neighbor 192.168.0.200 local-v6-addr + no neighbor 192.168.0.200 auto-local-addr + no neighbor 192.168.0.200 next-hop-v6-addr + neighbor 192.168.0.200 soft-reconfiguration inbound + no neighbor 192.168.0.200 ebgp-multihop + no neighbor 192.168.0.200 route-reflector-client + no neighbor 192.168.0.200 timers + no neighbor 192.168.0.200 route-map in + no neighbor 192.168.0.200 graceful-restart + neighbor 192.168.0.200 graceful-restart-helper + neighbor 192.168.0.200 additional-paths receive + no neighbor 192.168.0.200 route-map out + no neighbor 192.168.0.200 prefix-list in + no neighbor 192.168.0.200 prefix-list out + no neighbor 192.168.0.200 password + no neighbor 192.168.0.200 default-originate + neighbor 192.168.0.200 enforce-first-as + no neighbor 192.168.0.200 metric-out + no neighbor 192.168.0.200 idle-restart-timer + neighbor 192.168.0.200 maximum-routes 12000 + bgp redistribute-internal + no redistribute connected + no redistribute isis + no redistribute ospf match internal + no redistribute ospf match external + no redistribute ospf match nssa-external + no redistribute ospf3 match internal + no redistribute ospf3 match external + no redistribute static + no redistribute rip + no redistribute aggregate + address-family ipv4 + bgp additional-paths receive + no bgp route install-map + default neighbor 192.168.0.200 activate + no neighbor 192.168.0.200 route-map in + no neighbor 192.168.0.200 route-map out + no neighbor 192.168.0.200 default-originate + neighbor 192.168.0.200 additional-paths receive + no neighbor 192.168.0.200 weight + ! + address-family ipv6 + no bgp additional-paths install + bgp additional-paths receive + no bgp route install-map + default neighbor 192.168.0.200 activate + no neighbor 192.168.0.200 route-map in + no neighbor 192.168.0.200 route-map out + no neighbor 192.168.0.200 prefix-list in + no neighbor 192.168.0.200 prefix-list out + no neighbor 192.168.0.200 default-originate + neighbor 192.168.0.200 additional-paths receive + no neighbor 192.168.0.200 weight + vrf devel + local-as 65001 + no shutdown + router-id 3.3.3.3 + bgp convergence time 300 + bgp convergence slow-peer time 90 + no bgp confederation identifier + no update wait-for-convergence + no update wait-install + bgp log-neighbor-changes + bgp default ipv4-unicast + no bgp default ipv4-unicast transport ipv6 + no bgp default ipv6-unicast + timers bgp 60 180 + distance bgp 200 200 200 + graceful-restart restart-time 300 + graceful-restart stalepath-time 300 + no bgp cluster-id + bgp client-to-client reflection + no graceful-restart + graceful-restart-helper + bgp peer-mac-resolution-timeout 0 + bgp enforce-first-as + no bgp route install-map + no bgp transport listen-port + no default-metric + no bgp always-compare-med + no bgp bestpath med missing-as-worst + no bgp bestpath med confed + no bgp route-reflector preserve-attributes + maximum-paths 1 ecmp 128 + no bgp additional-paths install + bgp additional-paths receive + bgp listen limit 1000 + bgp bestpath as-path multipath-relax + no bgp aspath-cmp-include-nexthop + bgp bestpath ecmp-fast + no bgp bestpath tie-break age + no bgp bestpath tie-break router-id + no bgp bestpath tie-break originator-id + no bgp bestpath tie-break cluster-list-length + no bgp advertise-inactive + no bgp auto-local-addr + bgp redistribute-internal + no redistribute connected + no redistribute isis + no redistribute ospf match internal + no redistribute ospf match external + no redistribute ospf match nssa-external + no redistribute ospf3 match internal + no redistribute ospf3 match external + no redistribute static + no redistribute rip + no redistribute aggregate + address-family ipv4 + bgp additional-paths receive + no bgp route install-map + ! + address-family ipv6 + no bgp additional-paths install + bgp additional-paths receive + no bgp route install-map + ! + vrf prod + local-as 65001 + no shutdown + router-id 2.2.2.2 + bgp convergence time 300 + bgp convergence slow-peer time 90 + no bgp confederation identifier + no update wait-for-convergence + no update wait-install + bgp log-neighbor-changes + bgp default ipv4-unicast + no bgp default ipv4-unicast transport ipv6 + no bgp default ipv6-unicast + timers bgp 60 180 + distance bgp 200 200 200 + graceful-restart restart-time 300 + graceful-restart stalepath-time 300 + no bgp cluster-id + bgp client-to-client reflection + no graceful-restart + graceful-restart-helper + bgp peer-mac-resolution-timeout 0 + bgp enforce-first-as + no bgp route install-map + no bgp transport listen-port + no default-metric + no bgp always-compare-med + no bgp bestpath med missing-as-worst + no bgp bestpath med confed + no bgp route-reflector preserve-attributes + maximum-paths 1 ecmp 128 + no bgp additional-paths install + bgp additional-paths receive + bgp listen limit 1000 + bgp bestpath as-path multipath-relax + no bgp aspath-cmp-include-nexthop + bgp bestpath ecmp-fast + no bgp bestpath tie-break age + no bgp bestpath tie-break router-id + no bgp bestpath tie-break originator-id + no bgp bestpath tie-break cluster-list-length + no bgp advertise-inactive + no bgp auto-local-addr + no neighbor 172.20.0.200 peer-group + neighbor 172.20.0.200 remote-as 65100 + no neighbor 172.20.0.200 import-localpref + no neighbor 172.20.0.200 export-localpref + no neighbor 172.20.0.200 description + no neighbor 172.20.0.200 next-hop-self + no neighbor 172.20.0.200 next-hop-peer + no neighbor 172.20.0.200 allowas-in + no neighbor 172.20.0.200 send-community + no neighbor 172.20.0.200 shutdown + no neighbor 172.20.0.200 remove-private-as + no neighbor 172.20.0.200 out-delay + neighbor 172.20.0.200 local-as 100 no-prepend replace-as + no neighbor 172.20.0.200 weight + no neighbor 172.20.0.200 transport connection-mode passive + no neighbor 172.20.0.200 update-source + no neighbor 172.20.0.200 dont-capability-negotiate + no neighbor 172.20.0.200 fall-over bfd + no neighbor 172.20.0.200 local-v6-addr + no neighbor 172.20.0.200 auto-local-addr + no neighbor 172.20.0.200 next-hop-v6-addr + neighbor 172.20.0.200 soft-reconfiguration inbound + no neighbor 172.20.0.200 ebgp-multihop + no neighbor 172.20.0.200 route-reflector-client + no neighbor 172.20.0.200 timers + no neighbor 172.20.0.200 route-map in + no neighbor 172.20.0.200 graceful-restart + neighbor 172.20.0.200 graceful-restart-helper + neighbor 172.20.0.200 additional-paths receive + no neighbor 172.20.0.200 route-map out + no neighbor 172.20.0.200 prefix-list in + no neighbor 172.20.0.200 prefix-list out + no neighbor 172.20.0.200 password + no neighbor 172.20.0.200 default-originate + neighbor 172.20.0.200 enforce-first-as + no neighbor 172.20.0.200 metric-out + no neighbor 172.20.0.200 idle-restart-timer + neighbor 172.20.0.200 maximum-routes 12000 + bgp redistribute-internal + no redistribute connected + no redistribute isis + no redistribute ospf match internal + no redistribute ospf match external + no redistribute ospf match nssa-external + no redistribute ospf3 match internal + no redistribute ospf3 match external + no redistribute static + no redistribute rip + no redistribute aggregate + address-family ipv4 + bgp additional-paths receive + no bgp route install-map + default neighbor 172.20.0.200 activate + no neighbor 172.20.0.200 route-map in + no neighbor 172.20.0.200 route-map out + no neighbor 172.20.0.200 default-originate + neighbor 172.20.0.200 additional-paths receive + no neighbor 172.20.0.200 weight + ! + address-family ipv6 + no bgp additional-paths install + bgp additional-paths receive + no bgp route install-map + default neighbor 172.20.0.200 activate + no neighbor 172.20.0.200 route-map in + no neighbor 172.20.0.200 route-map out + no neighbor 172.20.0.200 prefix-list in + no neighbor 172.20.0.200 prefix-list out + no neighbor 172.20.0.200 default-originate + neighbor 172.20.0.200 additional-paths receive + no neighbor 172.20.0.200 weight +! +router multicast + vrf devel + no ip multicast-routing + ip multicast multipath deterministic + ip mfib max-fastdrops 1024 + ip mfib cache-entries unresolved max 4000 + ip mfib packet-buffers unresolved max 3 + ! + vrf prod + no ip multicast-routing + ip multicast multipath deterministic + ip mfib max-fastdrops 1024 + ip mfib cache-entries unresolved max 4000 + ip mfib packet-buffers unresolved max 3 +! +router pim sparse-mode + vrf devel + ip pim log-neighbor-changes + no ip pim ssm range + ip pim sparse-mode sg-expiry-timer 210 + ip pim spt-threshold 0 + no ip pim rp-candidate + no ip pim register-source + ! + vrf prod + ip pim log-neighbor-changes + no ip pim ssm range + ip pim sparse-mode sg-expiry-timer 210 + ip pim spt-threshold 0 + no ip pim rp-candidate + no ip pim register-source +! +router pim bidirectional + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate + vrf devel + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate + ! + vrf prod + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate +! +router pim bsr + vrf devel + no ip pim bsr-holdtime + no ip pim bsr-sztimeout + no ip pim bsr-candidate + no ip pim bsr rp-candidate advertisement-filter + ! + vrf prod + no ip pim bsr-holdtime + no ip pim bsr-sztimeout + no ip pim bsr-candidate + no ip pim bsr rp-candidate advertisement-filter +! +no ip tacacs source-interface +! +no vxlan vni notation dotted +! +no banner login +no banner motd +! +system coredump compressed +! +no dot1x system-auth-control +! +management api http-commands + protocol https port 443 + no protocol http port 80 + no protocol http localhost port 8080 + no protocol unix-socket + no protocol https certificate + no protocol https ssl profile + no cors allowed-origin + protocol https cipher aes256-cbc aes128-cbc + protocol https key-exchange rsa diffie-hellman-ephemeral-rsa + protocol https mac hmac-sha1 + qos dscp 0 + no shutdown + vrf default + no shutdown +! +management cim-provider + shutdown + http 7778 + https 7779 + idle-timeout 90 + default live-time + default trace + default ssl certificate + default ssl key +! +management console + idle-timeout 0 +! +management cvx + shutdown + no server host + no source-interface + no server port + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 +! +management defaults + secret hash md5 +! +management security + no entropy source hardware + no password minimum length +! +management ssh + idle-timeout 0 + authentication mode keyboard-interactive + server-port 22 + hostkey server rsa dsa + no fips restrictions + no hostkey client strict-checking + no shutdown + login timeout 120 + log-level info +! +management telnet + shutdown + idle-timeout 0 +! +management xmpp + shutdown + vrf default + session privilege 1 +! +! +end diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/default/replace.txt b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/replace.txt new file mode 100644 index 00000000..40af721c --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/replace.txt @@ -0,0 +1,54 @@ +default interface Ethernet2 +interface Ethernet2 + no switchport + ip address 192.168.0.1/24 + ip address 192.168.1.1/24 secondary + no switchport + no switchport + shutdown + description so much oc + mtu 1500 + exit +no interface Ethernet2.1 +interface Ethernet2.1 + encapsulation dot1q vlan 1 + ip address 172.20.1.1/24 secondary + ip address 192.168.1.1/24 + shutdown + description another subiface + exit +no interface Ethernet2.2 +interface Ethernet2.2 + encapsulation dot1q vlan 2 + ip address 192.168.2.1/24 + description asdasdasd + exit +default interface Management1 +interface Management1 + ip address 10.0.2.15/24 + mtu 1500 + exit +default interface Ethernet1 +interface Ethernet1 + switchport native vlan 1 + switchport access vlan 1 + switchport trunk vlan 1-4094 + switchport mode access + description Changed description + exit +no interface Loopback0 +interface Loopback0 + description a loopback + mtu 1500 + exit +no interface Port-Channel1 +interface Port-Channel1 + no switchport + no switchport + description blah + mtu 9000 + exit +no interface Port-Channel1.1 +interface Port-Channel1.1 + exit +no interface Loopback1 diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/default/translation.txt b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/translation.txt new file mode 100644 index 00000000..2aea5b01 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/default/translation.txt @@ -0,0 +1,44 @@ +interface Ethernet2 + no switchport + ip address 192.168.0.1/24 + no switchport + no switchport + shutdown + description so much oc + mtu 1500 + exit +interface Ethernet2.1 + encapsulation dot1q vlan 1 + ip address 172.20.0.1/24 secondary + ip address 192.168.1.1/24 + shutdown + description another subiface + exit +interface Ethernet2.2 + encapsulation dot1q vlan 2 + ip address 192.168.2.1/24 + description asdasdasd + exit +interface Management1 + ip address 10.0.2.15/24 + mtu 1500 + exit +interface Ethernet1 + switchport native vlan 1 + switchport access vlan 1 + switchport trunk vlan 1-4094 + switchport mode access + description This is a description + exit +interface Loopback1 + description a loopback + mtu 1500 + exit +interface Port-Channel1 + no switchport + no switchport + description blah + mtu 9000 + exit +interface Port-Channel1.1 + exit diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/candidate.json b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/candidate.json new file mode 100644 index 00000000..b7db6f9a --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/candidate.json @@ -0,0 +1,85 @@ +{ + "interfaces": { + "interface": { + "Ethernet1": { + "config": { + "enabled": true, + "type": "ethernetCsmacd" + }, + "ethernet": { + "switched-vlan": { + "config": { + "access-vlan": 20, + "interface-mode": "ACCESS", + "native-vlan": 30, + "trunk-vlans": [ + "1..4094" + ] + } + } + }, + "name": "Ethernet1", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false + } + } + } + }, + "Ethernet2": { + "config": { + "enabled": true, + "type": "ethernetCsmacd" + }, + "ethernet": { + "switched-vlan": { + "config": { + "access-vlan": 1, + "interface-mode": "TRUNK", + "native-vlan": 20, + "trunk-vlans": [ + "30" + ] + } + } + }, + "name": "Ethernet2", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false + } + } + } + }, + "Management1": { + "config": { + "enabled": true, + "mtu": 1500, + "type": "ethernetCsmacd" + }, + "name": "Management1", + "routed-vlan": { + "ipv4": { + "addresses": { + "address": { + "10.0.2.15": { + "config": { + "ip": "10.0.2.15", + "prefix-length": 24, + "secondary": false + }, + "ip": "10.0.2.15" + } + } + }, + "config": { + "enabled": true + } + } + } + } + } + } +} diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/expected.json b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/expected.json new file mode 100644 index 00000000..d2a519d4 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/expected.json @@ -0,0 +1,86 @@ +{ + "interfaces": { + "interface": { + "Ethernet1": { + "config": { + "enabled": true, + "type": "ethernetCsmacd" + }, + "ethernet": { + "switched-vlan": { + "config": { + "access-vlan": 1, + "interface-mode": "TRUNK", + "native-vlan": 30, + "trunk-vlans": [ + "20..22", + 40 + ] + } + } + }, + "name": "Ethernet1", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false + } + } + } + }, + "Ethernet2": { + "config": { + "enabled": true, + "type": "ethernetCsmacd" + }, + "ethernet": { + "switched-vlan": { + "config": { + "access-vlan": 30, + "interface-mode": "ACCESS", + "native-vlan": 1, + "trunk-vlans": [ + "1..4094" + ] + } + } + }, + "name": "Ethernet2", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false + } + } + } + }, + "Management1": { + "config": { + "enabled": true, + "mtu": 1500, + "type": "ethernetCsmacd" + }, + "name": "Management1", + "routed-vlan": { + "ipv4": { + "addresses": { + "address": { + "10.0.2.15": { + "config": { + "ip": "10.0.2.15", + "prefix-length": 24, + "secondary": false + }, + "ip": "10.0.2.15" + } + } + }, + "config": { + "enabled": true + } + } + } + } + } + } +} diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/merge.txt b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/merge.txt new file mode 100644 index 00000000..50c972a1 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/merge.txt @@ -0,0 +1,11 @@ +interface Ethernet2 + switchport native vlan 20 + switchport access vlan 1 + switchport trunk vlan 30 + switchport mode trunk + exit +interface Ethernet1 + switchport access vlan 20 + switchport trunk vlan 1-4094 + switchport mode access + exit diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/mocked/cli.1.show_running_config_all.0 b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/mocked/cli.1.show_running_config_all.0 new file mode 100644 index 00000000..3e06920a --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/mocked/cli.1.show_running_config_all.0 @@ -0,0 +1,1014 @@ +! Command: show running-config all +! device: localhost (vEOS, EOS-4.15.2.1F) +! +! boot system flash:/vEOS-lab.swi +! +hardware access-list ipv6 implicit-permit icmpv6 all +! +no deep-inspection payload l2 skip +no deep-inspection payload l4 skip +! +agent fatal-error action reload +! +bfd slow-timer 2000 +bfd interval 300 min_rx 300 multiplier 3 default +! +prompt %H%R%v%P +no service configuration session max completed +no service configuration session max pending +! +schedule config max-concurrent-jobs 1 +schedule tech-support interval 60 max-log-files 100 command show tech-support +! +no logging event storm-control discards global +no logging event storm-control discards interval +! +cvx + shutdown + port 9979 + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 + service hsc + vtep flood list type any + service openstack + shutdown + grace-period 60 + name-resolution interval 21600 + service vxlan + shutdown + vtep mac-learning control-plane + resync-period 300 +! +no dcbx application +! +no ip dhcp relay information option +no ip dhcp relay always-on +no ip dhcp smart-relay global +! +no ip dhcp snooping +no ip dhcp snooping information option +ip dhcp snooping information option circuit-id type 0 format %p:%v +! +default switch forwarding-mode +! +vlan internal allocation policy ascending +! +email + no from-user + no server + no auth username + no auth password + no tls +! +errdisable detect cause arp-inspection +errdisable detect cause link-flap +no errdisable recovery cause arp-inspection +no errdisable recovery cause bpduguard +no errdisable recovery cause hitless-reload-down +no errdisable recovery cause link-flap +no errdisable recovery cause loopprotectguard +no errdisable recovery cause no-internal-vlan +no errdisable recovery cause portchannelguard +no errdisable recovery cause portsec +no errdisable recovery cause tapagg +no errdisable recovery cause uplink-failure-detection +no errdisable recovery cause xcvr-unsupported +errdisable recovery interval 300 +! +event-handler dhclient + trigger on-boot + action bash sudo /mnt/flash/initialize_ma1.sh + delay 20 + no asynchronous + timeout 10 +! +ip igmp snooping +no ip igmp snooping report-flooding +ip igmp snooping robustness-variable 2 +no ip igmp snooping restart query-interval +ip igmp snooping immediate-leave +default ip igmp snooping vlan 1 +default ip igmp snooping vlan 1 querier +no ip igmp snooping vlan 1 querier address +no ip igmp snooping vlan 1 querier query-interval +no ip igmp snooping vlan 1 querier max-response-time +no ip igmp snooping vlan 1 querier last-member-query-interval +no ip igmp snooping vlan 1 querier last-member-query-count +no ip igmp snooping vlan 1 querier startup-query-interval +no ip igmp snooping vlan 1 querier startup-query-count +no ip igmp snooping vlan 1 querier version +no ip igmp snooping vlan 1 max-groups +default ip igmp snooping vlan 1 immediate-leave +default ip igmp snooping vlan 20 +default ip igmp snooping vlan 20 querier +no ip igmp snooping vlan 20 querier address +no ip igmp snooping vlan 20 querier query-interval +no ip igmp snooping vlan 20 querier max-response-time +no ip igmp snooping vlan 20 querier last-member-query-interval +no ip igmp snooping vlan 20 querier last-member-query-count +no ip igmp snooping vlan 20 querier startup-query-interval +no ip igmp snooping vlan 20 querier startup-query-count +no ip igmp snooping vlan 20 querier version +no ip igmp snooping vlan 20 max-groups +default ip igmp snooping vlan 20 immediate-leave +default ip igmp snooping vlan 21 +default ip igmp snooping vlan 21 querier +no ip igmp snooping vlan 21 querier address +no ip igmp snooping vlan 21 querier query-interval +no ip igmp snooping vlan 21 querier max-response-time +no ip igmp snooping vlan 21 querier last-member-query-interval +no ip igmp snooping vlan 21 querier last-member-query-count +no ip igmp snooping vlan 21 querier startup-query-interval +no ip igmp snooping vlan 21 querier startup-query-count +no ip igmp snooping vlan 21 querier version +no ip igmp snooping vlan 21 max-groups +default ip igmp snooping vlan 21 immediate-leave +default ip igmp snooping vlan 22 +default ip igmp snooping vlan 22 querier +no ip igmp snooping vlan 22 querier address +no ip igmp snooping vlan 22 querier query-interval +no ip igmp snooping vlan 22 querier max-response-time +no ip igmp snooping vlan 22 querier last-member-query-interval +no ip igmp snooping vlan 22 querier last-member-query-count +no ip igmp snooping vlan 22 querier startup-query-interval +no ip igmp snooping vlan 22 querier startup-query-count +no ip igmp snooping vlan 22 querier version +no ip igmp snooping vlan 22 max-groups +default ip igmp snooping vlan 22 immediate-leave +default ip igmp snooping vlan 30 +default ip igmp snooping vlan 30 querier +no ip igmp snooping vlan 30 querier address +no ip igmp snooping vlan 30 querier query-interval +no ip igmp snooping vlan 30 querier max-response-time +no ip igmp snooping vlan 30 querier last-member-query-interval +no ip igmp snooping vlan 30 querier last-member-query-count +no ip igmp snooping vlan 30 querier startup-query-interval +no ip igmp snooping vlan 30 querier startup-query-count +no ip igmp snooping vlan 30 querier version +no ip igmp snooping vlan 30 max-groups +default ip igmp snooping vlan 30 immediate-leave +default ip igmp snooping vlan 40 +default ip igmp snooping vlan 40 querier +no ip igmp snooping vlan 40 querier address +no ip igmp snooping vlan 40 querier query-interval +no ip igmp snooping vlan 40 querier max-response-time +no ip igmp snooping vlan 40 querier last-member-query-interval +no ip igmp snooping vlan 40 querier last-member-query-count +no ip igmp snooping vlan 40 querier startup-query-interval +no ip igmp snooping vlan 40 querier startup-query-count +no ip igmp snooping vlan 40 querier version +no ip igmp snooping vlan 40 max-groups +default ip igmp snooping vlan 40 immediate-leave +no ip igmp snooping querier +no ip igmp snooping querier address +ip igmp snooping querier query-interval 125 +ip igmp snooping querier max-response-time 10 +ip igmp snooping querier last-member-query-interval 1 +no ip igmp snooping querier last-member-query-count +no ip igmp snooping querier startup-query-interval +no ip igmp snooping querier startup-query-count +no ip igmp snooping querier version +! +default logging event congestion-drops +! +no service interface inactive expose +! +no service interface unconnected expose +! +default load-interval default +! +transceiver qsfp default-mode 4x10G +! +ip pim log-neighbor-changes +no ip pim bfd +no ip pim ssm range +ip pim sparse-mode sg-expiry-timer 210 +ip pim spt-threshold 0 +! +ip msdp timer 30 +! +no ip pim rp-candidate +no ip pim bsr-holdtime +no ip pim bsr-sztimeout +no ip pim bsr-candidate +no ip pim bsr rp-candidate advertisement-filter +! +no ip pim register-source +! +lacp system-priority 32768 +! +no queue-monitor length +no queue-monitor length notifying +! +queue-monitor length global-buffer thresholds 512 256 +no queue-monitor length mirror +! +queue-monitor length global-buffer +! +errdisable flap-setting cause link-flap max-flaps 5 time 10 +! +lldp timer 30 +lldp holdtime 120 +lldp reinit 2 +lldp tlv-select link-aggregation +lldp tlv-select management-address +lldp tlv-select max-frame-size +lldp tlv-select port-description +lldp tlv-select port-vlan +lldp tlv-select system-capabilities +lldp tlv-select system-description +lldp tlv-select system-name +lldp run +no lldp management-address +! +logging on +logging buffered 32 debugging +logging trap informational +logging console errors +no logging synchronous +logging format timestamp traditional +no logging format hostname fqdn +logging facility local4 +no logging source-interface +! +logging level AAA debugging +logging level ACCOUNTING debugging +logging level ACL debugging +logging level AGENT debugging +logging level ALE debugging +logging level ARP debugging +logging level BFD debugging +logging level BGP debugging +logging level CAPACITY debugging +logging level CAPI debugging +logging level CLEAR debugging +logging level DATAPLANE debugging +logging level DOT1X debugging +logging level ENVMON debugging +logging level ETH debugging +logging level EVENTMON debugging +logging level EXTENSION debugging +logging level FHRP debugging +logging level FLOW debugging +logging level FORWARDING debugging +logging level FRU debugging +logging level FWK debugging +logging level GMP debugging +logging level HARDWARE debugging +logging level IGMP debugging +logging level IGMPSNOOPING debugging +logging level INTF debugging +logging level IP6ROUTING debugging +logging level IRA debugging +logging level ISIS debugging +logging level KERNELFIB debugging +logging level LACP debugging +logging level LAG debugging +logging level LAUNCHER debugging +logging level LINEPROTO debugging +logging level LLDP debugging +logging level LOGMGR debugging +logging level LOOPBACK debugging +logging level LOOPPROTECT debugging +logging level MAPREDUCEMONITOR debugging +logging level MDIO debugging +logging level MIRRORING debugging +logging level MLAG debugging +logging level MMODE debugging +logging level MROUTE debugging +logging level MRP debugging +logging level MSDP debugging +logging level MSRP debugging +logging level MVRP debugging +logging level NAT debugging +logging level OPENFLOW debugging +logging level OSPF debugging +logging level OSPF3 debugging +logging level PFC debugging +logging level PIM debugging +logging level PIMBSR debugging +logging level PORTSECURITY debugging +logging level PTP debugging +logging level PWRMGMT debugging +logging level QOS debugging +logging level QUEUEMONITOR debugging +logging level REACHABILITYMONITOR debugging +logging level REDUNDANCY debugging +logging level RIB debugging +logging level ROUTING debugging +logging level SECURITY debugging +logging level SERVERMONITOR debugging +logging level SPANTREE debugging +logging level STAGEMGR debugging +logging level SYS debugging +logging level SYSDB debugging +logging level TAPAGG debugging +logging level TCP debugging +logging level TRANSCEIVER debugging +logging level TUNNEL debugging +logging level VM debugging +logging level VMTRACERSESS debugging +logging level VMWAREVI debugging +logging level VMWAREVS debugging +logging level VRF debugging +logging level VRRP debugging +logging level VXLAN debugging +logging level XMPP debugging +logging level ZTP debugging +! +logging event link-status global +! +no ip virtual-router mac-address mlag-peer +! +no msrp streams load-file +! +no hostname +no ip domain lookup source-interface +no ip name-server +no ip domain-name +no ip host +no ipv6 host +! +no ntp trusted-key +no ntp authenticate +no ntp serve all +! +power poll-interval 5 +! +no radius-server key +radius-server timeout 5 +radius-server retransmit 3 +no radius-server deadtime +no radius-server attribute 32 include-in-access-req format +! +sflow sample 1048576 +sflow polling-interval 2 +no sflow source +no sflow source-interface +sflow sample output interface +sflow extension switch +sflow extension router +no sflow sample rewrite dscp +no sflow run +! +no sflow extension bgp +! +no snmp-server engineID local +no snmp-server chassis-id +no snmp-server contact +no snmp-server location +no snmp-server source-interface +default snmp-server enable traps +default snmp-server enable traps bgp +default snmp-server enable traps bgp arista-backward-transition +default snmp-server enable traps bgp arista-established +default snmp-server enable traps bgp backward-transition +default snmp-server enable traps bgp established +default snmp-server enable traps entity +default snmp-server enable traps entity arista-ent-sensor-alarm +default snmp-server enable traps entity ent-config-change +default snmp-server enable traps entity ent-state-oper-disabled +default snmp-server enable traps entity ent-state-oper-enabled +default snmp-server enable traps lldp +default snmp-server enable traps lldp rem-tables-change +default snmp-server enable traps msdp +default snmp-server enable traps msdp backward-transition +default snmp-server enable traps msdp established +default snmp-server enable traps ospf +default snmp-server enable traps ospf if-auth-failure +default snmp-server enable traps ospf if-config-error +default snmp-server enable traps ospf if-state-change +default snmp-server enable traps ospf nbr-state-change +default snmp-server enable traps pim +default snmp-server enable traps pim neighbor-loss +default snmp-server enable traps snmp +default snmp-server enable traps snmp authentication +default snmp-server enable traps snmp link-down +default snmp-server enable traps snmp link-up +default snmp-server enable traps snmpConfigManEvent +default snmp-server enable traps snmpConfigManEvent arista-config-man-event +default snmp-server enable traps switchover +default snmp-server enable traps switchover arista-redundancy-switch-over-notif +default snmp-server enable traps test +default snmp-server enable traps test arista-test-notification +default snmp-server enable traps vrrp +default snmp-server enable traps vrrp trap-new-master +snmp-server vrf default +! +spanning-tree mode mstp +spanning-tree hello-time 2000 +spanning-tree max-age 20 +spanning-tree forward-time 15 +spanning-tree transmit hold-count 6 +spanning-tree max-hops 20 +no spanning-tree mst pvst border +no spanning-tree portfast bpduguard default +no spanning-tree portfast bpdufilter default +spanning-tree bridge assurance +no spanning-tree loopguard default +no spanning-tree portchannel guard misconfig +spanning-tree bpduguard rate-limit default +logging event spanning-tree global +spanning-tree mst 0 priority 32768 +! +spanning-tree mst configuration + no name + revision 0 +! +no service sequence-numbers +no service running-config timestamp +! +no tacacs-server key +tacacs-server timeout 5 +! +aaa authentication login default local +no aaa authentication login console +aaa authentication enable default local +no aaa authentication policy on-success log +no aaa authentication policy on-failure log +no aaa authorization console +aaa authorization exec default local +no aaa authorization commands all default +aaa authorization config-commands +no aaa accounting exec console +no aaa accounting commands all console +no aaa accounting exec default +no aaa accounting system default +no aaa accounting dot1x default +no aaa accounting commands all default +! +no enable secret +aaa root secret 5 $1$rocf65Tl$ePLSZB6dgP1SG5rG/XsbD/ +no aaa authentication policy local allow-nopassword-remote-login +no aaa authorization policy local default-role +! +username admin privilege 15 role network-admin secret 5 $1$h67i2ZFw$82tSTs0XITPorHfEdXnSU. +username vagrant privilege 15 role network-admin secret 5 $1$Q8bvfX3E$P61EO6yNiQEn0RUUeyWmX/ +! +role network-admin + 10 permit command .* +! +role network-operator + 10 deny mode exec command configure|bash|python-shell|\| + 20 permit mode exec command .* +! +tap aggregation + no mode + no service-policy type tapagg mac access-list match ip +! +environment overheat action shutdown +environment insufficient-fans action shutdown +environment fan-speed auto +! +clock timezone UTC +! +no virtual-cable +! +vlan 1 + name default + state active + no private-vlan + no mac-address-table sharing +! +vlan 20 + name prod + state active + no private-vlan + no mac-address-table sharing +! +vlan 21 + name VLAN0021 + state active + no private-vlan + no mac-address-table sharing +! +vlan 22 + name VLAN0022 + state active + no private-vlan + no mac-address-table sharing +! +vlan 30 + name devel + state active + no private-vlan + no mac-address-table sharing +! +vlan 40 + name VLAN0040 + state active + no private-vlan + no mac-address-table sharing +! +interface Ethernet1 + no description + no shutdown + default load-interval + logging event link-status use-global + no dcbx mode + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport access vlan 1 + switchport trunk native vlan 30 + switchport trunk allowed vlan 20-22,40 + no switchport asym vlan + switchport mode trunk + switchport dot1q ethertype 0x8100 + no switchport trunk private-vlan secondary + switchport mac address learning + no switchport private-vlan mapping + switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no channel-group + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no msrp + no mvrp + no switchport port-security + switchport port-security maximum 1 + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable + no spanning-tree portfast + spanning-tree portfast auto + no spanning-tree link-type + no spanning-tree bpduguard + no spanning-tree bpdufilter + no spanning-tree cost + spanning-tree port-priority 128 + no spanning-tree guard + no spanning-tree bpduguard rate-limit + logging event spanning-tree use-global + switchport tap native vlan 1 + no switchport tap identity + no switchport tap mpls pop all + switchport tap allowed vlan 1-4094 + switchport tool allowed vlan 1-4094 + no switchport tool identity + no switchport tap truncation + no switchport tool truncation + no switchport tap default group + no switchport tap default interface + no switchport tool group + no switchport tool dot1q remove outer +! +interface Ethernet2 + no description + no shutdown + default load-interval + logging event link-status use-global + no dcbx mode + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport access vlan 30 + switchport trunk native vlan 1 + switchport trunk allowed vlan 1-4094 + no switchport asym vlan + switchport mode access + switchport dot1q ethertype 0x8100 + no switchport trunk private-vlan secondary + switchport mac address learning + no switchport private-vlan mapping + switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no channel-group + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no msrp + no mvrp + no switchport port-security + switchport port-security maximum 1 + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable + no spanning-tree portfast + spanning-tree portfast auto + no spanning-tree link-type + no spanning-tree bpduguard + no spanning-tree bpdufilter + no spanning-tree cost + spanning-tree port-priority 128 + no spanning-tree guard + no spanning-tree bpduguard rate-limit + logging event spanning-tree use-global + switchport tap native vlan 1 + no switchport tap identity + no switchport tap mpls pop all + switchport tap allowed vlan 1-4094 + switchport tool allowed vlan 1-4094 + no switchport tool identity + no switchport tap truncation + no switchport tool truncation + no switchport tap default group + no switchport tap default interface + no switchport tool group + no switchport tool dot1q remove outer +! +interface Management1 + no description + no shutdown + default load-interval + mtu 1500 + logging event link-status use-global + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + ip address 10.0.2.15/24 + no ip verify unicast + default arp timeout 300 + default ipv6 nd cache expire 300 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + ipv6 nd ra suppress all + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + lldp transmit + lldp receive + default ntp serve +! +mac address-table aging-time 300 +! +monitor hadoop + shutdown +! +no ip fhrp accept-mode +! +no ip virtual-router mac-address +ip virtual-router mac-address advertisement-interval 30 +! +no ipv6 hardware fib nexthop-index +! +no ip routing +ip icmp redirect +no ip icmp source-interface +ip hardware fib route unprogrammed parent-drop +no ip hardware fib route delete delay +ip hardware fib next-hop update event bfd +no ip hardware fib maximum routes +no ip hardware forwarding mpls gre-key +no ip hardware fib next-hop sharing +ipv6 icmp redirect +no ip hardware fib maximum routes-v6 +! +no ip multicast-routing +ip multicast multipath deterministic +ip mfib max-fastdrops 1024 +no ip multicast count +ip mfib activity polling-interval 60 +! +ip mfib cache-entries unresolved max 4000 +ip mfib packet-buffers unresolved max 3 +! +ip as-path regex-mode asn +! +no ipv6 unicast-routing +! +control-plane + ip access-group default-control-plane-acl in + ipv6 access-group default-control-plane-acl in +! +mac address-table notification host-flap logging +mac address-table notification host-flap detection window 15 +! +mlag configuration + no domain-id + heartbeat-interval 4000 + no local-interface + no peer-address + no peer-link + reload-delay 0 + no reload-delay non-mlag + no reload-delay mode + no shutdown +! +monitor loop-protection + rate-limit 1000 + transmit-interval 5 + disabled-time 604800 +! +no mpls ip +! +no ip ftp client source-interface +no ip http client source-interface +no ip ssh client source-interface +no ip telnet client source-interface +no ip tftp client source-interface +! +no qos random-detect ecn global-buffer +qos map cos 0 1 2 3 4 5 6 7 to traffic-class 8 +qos map dscp 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to cos 3 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to uc-tx-queue 4 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4 +! +policy-map type control-plane copp-system-policy + class copp-system-bpdu + shape pps 6000 + bandwidth pps 5000 + class copp-system-arp + shape pps 25000 + bandwidth pps 1000 + class copp-system-igmp + shape pps 5000 + bandwidth pps 4000 + class copp-system-default + no shape + no bandwidth +! +no ip radius source-interface +! +monitor reachability + shutdown + probe receiver max-streams 50000 + probe checkpoint-interval 60 + destination port 49152 + default ignore-checksum + default preserve-streams +! +router pim bidirectional + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate +! +no ip tacacs source-interface +! +no vxlan vni notation dotted +! +no banner login +no banner motd +! +system coredump compressed +! +no dot1x system-auth-control +! +management api http-commands + protocol https port 443 + no protocol http port 80 + no protocol http localhost port 8080 + no protocol unix-socket + no protocol https certificate + no protocol https ssl profile + no cors allowed-origin + protocol https cipher aes256-cbc aes128-cbc + protocol https key-exchange rsa diffie-hellman-ephemeral-rsa + protocol https mac hmac-sha1 + qos dscp 0 + no shutdown + vrf default + no shutdown +! +management cim-provider + shutdown + http 7778 + https 7779 + idle-timeout 90 + default live-time + default trace + default ssl certificate + default ssl key +! +management console + idle-timeout 0 +! +management cvx + shutdown + no server host + no source-interface + no server port + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 +! +management defaults + secret hash md5 +! +management security + no entropy source hardware + no password minimum length +! +management ssh + idle-timeout 0 + authentication mode keyboard-interactive + server-port 22 + hostkey server rsa dsa + no fips restrictions + no hostkey client strict-checking + no shutdown + login timeout 120 + log-level info +! +management telnet + shutdown + idle-timeout 0 +! +management xmpp + shutdown + vrf default + session privilege 1 +! +! +end diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/replace.txt b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/replace.txt new file mode 100644 index 00000000..d88df38a --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/replace.txt @@ -0,0 +1,19 @@ +default interface Ethernet2 +interface Ethernet2 + switchport native vlan 20 + switchport access vlan 1 + switchport trunk vlan 30 + switchport mode trunk + exit +default interface Management1 +interface Management1 + ip address 10.0.2.15/24 + mtu 1500 + exit +default interface Ethernet1 +interface Ethernet1 + switchport native vlan 30 + switchport access vlan 20 + switchport trunk vlan 1-4094 + switchport mode access + exit diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/translation.txt b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/translation.txt new file mode 100644 index 00000000..204046f2 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/config/l2_ports/translation.txt @@ -0,0 +1,16 @@ +interface Ethernet2 + switchport native vlan 1 + switchport access vlan 30 + switchport trunk vlan 1-4094 + switchport mode access + exit +interface Management1 + ip address 10.0.2.15/24 + mtu 1500 + exit +interface Ethernet1 + switchport native vlan 30 + switchport access vlan 1 + switchport trunk vlan 20-22,40 + switchport mode trunk + exit diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/state/default/expected.json b/test/integration/test_profiles/eos/openconfig-interfaces/state/default/expected.json new file mode 100644 index 00000000..4ac5c9b3 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/state/default/expected.json @@ -0,0 +1,116 @@ +{ + "interfaces": { + "interface": { + "Ethernet1": { + "name": "Ethernet1", + "state": { + "admin-status": "UP", + "counters": { + "out-multicast-pkts": 875697, + "out-octets": 114560338 + }, + "description": "This is a description", + "enabled": true, + "mtu": 9214, + "name": "Ethernet1", + "oper-status": "UP", + "type": "ethernetCsmacd" + } + }, + "Ethernet2": { + "name": "Ethernet2", + "state": { + "admin-status": "DOWN", + "counters": { + "out-multicast-pkts": 56, + "out-octets": 7268 + }, + "description": "so much oc", + "enabled": false, + "mtu": 1500, + "name": "Ethernet2", + "oper-status": "DOWN", + "type": "ethernetCsmacd" + }, + "subinterfaces": { + "subinterface": { + "1": { + "index": "1", + "state": { + "admin-status": "DOWN", + "description": "another subiface", + "enabled": true, + "name": "Ethernet2.1", + "oper-status": "LOWER_LAYER_DOWN" + } + }, + "2": { + "index": "2", + "state": { + "admin-status": "DOWN", + "description": "asdasdasd", + "enabled": true, + "name": "Ethernet2.2", + "oper-status": "LOWER_LAYER_DOWN" + } + } + } + } + }, + "Loopback1": { + "name": "Loopback1", + "state": { + "admin-status": "UP", + "description": "a loopback", + "enabled": true, + "mtu": 65535, + "name": "Loopback1", + "oper-status": "UP", + "type": "softwareLoopback" + } + }, + "Management1": { + "name": "Management1", + "state": { + "admin-status": "UP", + "counters": { + "in-broadcast-pkts": 4, + "in-octets": 4116864, + "out-octets": 13968476, + "out-unicast-pkts": 58110 + }, + "enabled": true, + "mtu": 1500, + "name": "Management1", + "oper-status": "UP", + "type": "ethernetCsmacd" + } + }, + "Port-Channel1": { + "name": "Port-Channel1", + "state": { + "admin-status": "UP", + "description": "blah", + "enabled": true, + "mtu": 9000, + "name": "Port-Channel1", + "oper-status": "DOWN", + "type": "ieee8023adLag" + }, + "subinterfaces": { + "subinterface": { + "1": { + "index": "1", + "state": { + "admin-status": "DOWN", + "enabled": true, + "name": "Port-Channel1.1", + "oper-status": "LOWER_LAYER_DOWN" + } + } + } + } + } + } + } +} diff --git a/test/integration/test_profiles/eos/openconfig-interfaces/state/default/mocked/cli.1.show_interfaces.0 b/test/integration/test_profiles/eos/openconfig-interfaces/state/default/mocked/cli.1.show_interfaces.0 new file mode 100644 index 00000000..32e4cb5a --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-interfaces/state/default/mocked/cli.1.show_interfaces.0 @@ -0,0 +1,323 @@ +{ + "interfaces": { + "Management1": { + "lastStatusChangeTimestamp": 1494227233.5120637, + "name": "Management1", + "interfaceStatus": "connected", + "autoNegotiate": "success", + "burnedInAddress": "08:00:27:7d:44:c1", + "loopbackMode": "loopbackNone", + "interfaceStatistics": { + "inBitsRate": 1785.3472207043212, + "inPktsRate": 0.0031338123173471526, + "outBitsRate": 1523.0216192154212, + "updateInterval": 300.0, + "outPktsRate": 1.4350601670071694 + }, + "mtu": 1500, + "hardware": "ethernet", + "duplex": "duplexFull", + "bandwidth": 1000000000, + "forwardingModel": "routed", + "lineProtocolStatus": "up", + "interfaceCounters": { + "outBroadcastPkts": 0, + "linkStatusChanges": 11, + "totalOutErrors": 0, + "inMulticastPkts": 0, + "counterRefreshTime": 1494227251.353215, + "inBroadcastPkts": 4, + "outputErrorsDetail": { + "deferredTransmissions": 0, + "txPause": 0, + "collisions": 0, + "lateCollisions": 0 + }, + "inOctets": 4116864, + "outDiscards": 0, + "outOctets": 13968476, + "inUcastPkts": 0, + "inputErrorsDetail": { + "runtFrames": 0, + "rxPause": 0, + "fcsErrors": 0, + "alignmentErrors": 0, + "giantFrames": 0, + "symbolErrors": 0 + }, + "outUcastPkts": 58110, + "outMulticastPkts": 0, + "totalInErrors": 0, + "inDiscards": 0 + }, + "interfaceAddress": [ + { + "secondaryIpsOrderedList": [], + "broadcastAddress": "255.255.255.255", + "secondaryIps": {}, + "primaryIp": { + "maskLen": 24, + "address": "10.0.2.15" + }, + "virtualIp": { + "maskLen": 0, + "address": "0.0.0.0" + } + } + ], + "physicalAddress": "08:00:27:7d:44:c1", + "description": "" + }, + "Loopback1": { + "hardware": "loopback", + "bandwidth": 0, + "mtu": 65535, + "name": "Loopback1", + "interfaceStatus": "connected", + "lastStatusChangeTimestamp": 1493375330.477214, + "description": "a loopback", + "interfaceAddress": [], + "lineProtocolStatus": "up", + "forwardingModel": "routed" + }, + "Ethernet2.2": { + "lastStatusChangeTimestamp": 1493375330.2531557, + "name": "Ethernet2.2", + "interfaceStatus": "notconnect", + "mtu": 1500, + "hardware": "subinterface", + "bandwidth": 0, + "forwardingModel": "routed", + "lineProtocolStatus": "lowerLayerDown", + "interfaceAddress": [ + { + "secondaryIpsOrderedList": [], + "broadcastAddress": "255.255.255.255", + "secondaryIps": {}, + "primaryIp": { + "maskLen": 24, + "address": "192.168.2.1" + }, + "virtualIp": { + "maskLen": 0, + "address": "0.0.0.0" + } + } + ], + "physicalAddress": "08:00:27:78:47:29", + "description": "asdasdasd" + }, + "Port-Channel1.1": { + "lastStatusChangeTimestamp": 1493375329.5660713, + "name": "Port-Channel1.1", + "interfaceStatus": "notconnect", + "mtu": 9000, + "hardware": "subinterface", + "bandwidth": 0, + "forwardingModel": "routed", + "lineProtocolStatus": "lowerLayerDown", + "interfaceAddress": [], + "physicalAddress": "00:00:00:00:00:00", + "description": "" + }, + "Port-Channel1": { + "lastStatusChangeTimestamp": 1493375329.2763908, + "name": "Port-Channel1", + "interfaceStatus": "notconnect", + "memberInterfaces": {}, + "interfaceStatistics": { + "inBitsRate": 0.0, + "inPktsRate": 0.0, + "outBitsRate": 0.0, + "updateInterval": 300.0, + "outPktsRate": 0.0 + }, + "mtu": 9000, + "hardware": "portChannel", + "bandwidth": 0, + "forwardingModel": "routed", + "fallbackEnabled": false, + "lineProtocolStatus": "lowerLayerDown", + "interfaceCounters": { + "outBroadcastPkts": 0, + "linkStatusChanges": 1, + "totalOutErrors": 0, + "inMulticastPkts": 0, + "counterRefreshTime": 1494227251.374082, + "inBroadcastPkts": 0, + "inOctets": 0, + "outDiscards": 0, + "outOctets": 0, + "inUcastPkts": 0, + "outUcastPkts": 0, + "outMulticastPkts": 0, + "totalInErrors": 0, + "inDiscards": 0 + }, + "fallbackEnabledType": "fallbackNone", + "interfaceAddress": [], + "physicalAddress": "08:00:27:78:47:29", + "description": "blah" + }, + "Ethernet1": { + "lastStatusChangeTimestamp": 1493375231.510267, + "name": "Ethernet1", + "interfaceStatus": "connected", + "autoNegotiate": "unknown", + "burnedInAddress": "08:00:27:76:17:76", + "loopbackMode": "loopbackNone", + "interfaceStatistics": { + "inBitsRate": 0.0, + "inPktsRate": 0.0, + "outBitsRate": 0.0, + "updateInterval": 300.0, + "outPktsRate": 0.0 + }, + "mtu": 9214, + "hardware": "ethernet", + "duplex": "duplexFull", + "bandwidth": 0, + "forwardingModel": "dataLink", + "lineProtocolStatus": "up", + "interfaceCounters": { + "outBroadcastPkts": 0, + "linkStatusChanges": 1, + "totalOutErrors": 0, + "inMulticastPkts": 0, + "counterRefreshTime": 1494227251.360102, + "inBroadcastPkts": 0, + "outputErrorsDetail": { + "deferredTransmissions": 0, + "txPause": 0, + "collisions": 0, + "lateCollisions": 0 + }, + "inOctets": 0, + "outDiscards": 0, + "outOctets": 114560338, + "inUcastPkts": 0, + "inputErrorsDetail": { + "runtFrames": 0, + "rxPause": 0, + "fcsErrors": 0, + "alignmentErrors": 0, + "giantFrames": 0, + "symbolErrors": 0 + }, + "outUcastPkts": 0, + "outMulticastPkts": 875697, + "totalInErrors": 0, + "inDiscards": 0 + }, + "interfaceMembership": "Member of Port-Channel1", + "interfaceAddress": [], + "physicalAddress": "08:00:27:76:17:76", + "description": "This is a description" + }, + "Ethernet2.1": { + "lastStatusChangeTimestamp": 1493375330.0411432, + "name": "Ethernet2.1", + "interfaceStatus": "notconnect", + "mtu": 1500, + "hardware": "subinterface", + "bandwidth": 0, + "forwardingModel": "routed", + "lineProtocolStatus": "lowerLayerDown", + "interfaceAddress": [ + { + "secondaryIpsOrderedList": [ + { + "maskLen": 24, + "address": "172.20.0.1" + } + ], + "broadcastAddress": "255.255.255.255", + "secondaryIps": { + "172.20.0.1": { + "maskLen": 24, + "address": "172.20.0.1" + } + }, + "primaryIp": { + "maskLen": 24, + "address": "192.168.1.1" + }, + "virtualIp": { + "maskLen": 0, + "address": "0.0.0.0" + } + } + ], + "physicalAddress": "08:00:27:78:47:29", + "description": "another subiface" + }, + "Ethernet2": { + "lastStatusChangeTimestamp": 1493375329.8914871, + "name": "Ethernet2", + "interfaceStatus": "disabled", + "autoNegotiate": "off", + "loopbackMode": "loopbackNone", + "interfaceStatistics": { + "inBitsRate": 0.0, + "inPktsRate": 0.0, + "outBitsRate": 0.0, + "updateInterval": 300.0, + "outPktsRate": 0.0 + }, + "mtu": 1500, + "hardware": "ethernet", + "duplex": "duplexFull", + "bandwidth": 0, + "forwardingModel": "routed", + "lineProtocolStatus": "down", + "interfaceCounters": { + "outBroadcastPkts": 0, + "linkStatusChanges": 2, + "lastClear": 1493375179.1768973, + "inMulticastPkts": 0, + "counterRefreshTime": 1494227251.356712, + "inBroadcastPkts": 0, + "outputErrorsDetail": { + "deferredTransmissions": 0, + "txPause": 0, + "collisions": 0, + "lateCollisions": 0 + }, + "inOctets": 0, + "outDiscards": 0, + "outOctets": 7268, + "inUcastPkts": 0, + "inputErrorsDetail": { + "runtFrames": 0, + "rxPause": 0, + "fcsErrors": 0, + "alignmentErrors": 0, + "giantFrames": 0, + "symbolErrors": 0 + }, + "outUcastPkts": 0, + "outMulticastPkts": 56, + "totalInErrors": 0, + "inDiscards": 0, + "totalOutErrors": 0 + }, + "interfaceAddress": [ + { + "secondaryIpsOrderedList": [], + "broadcastAddress": "255.255.255.255", + "secondaryIps": {}, + "primaryIp": { + "maskLen": 24, + "address": "192.168.0.1" + }, + "virtualIp": { + "maskLen": 0, + "address": "0.0.0.0" + } + } + ], + "physicalAddress": "08:00:27:78:47:29", + "description": "so much oc" + } + } +} diff --git a/test/integration/test_profiles/eos/openconfig-network-instance/config/default/candidate.json b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/candidate.json new file mode 100644 index 00000000..736f3e89 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/candidate.json @@ -0,0 +1,208 @@ +{ + "network_instances": { + "network-instance": { + "devel": { + "config": { + "enabled": true, + "route-distinguisher": "1:2", + "type": "L3VRF" + }, + "name": "devel", + "protocols": { + "protocol": { + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.0.0/24": { + "next-hops": { + "next-hop": { + "192.168.2.2": { + "config": { + "metric": 1, + "next-hop": "192.168.2.2" + }, + "index": "192.168.2.2" + } + } + }, + "prefix": "10.0.0.0/24" + }, + "10.0.1.0/24": { + "next-hops": { + "next-hop": { + "192.168.2.2": { + "config": { + "metric": 1, + "next-hop": "192.168.2.2" + }, + "index": "192.168.2.2" + } + } + }, + "prefix": "10.0.1.0/24" + } + } + } + } + } + } + }, + "global": { + "config": { + "enabled": true, + "type": "L3VRF" + }, + "name": "global", + "protocols": { + "protocol": { + "bgp bgp": { + "bgp": { + "global": { + "config": { + "as": 65001, + "router-id": "1.1.1.1" + } + }, + "neighbors": { + "neighbor": { + "192.168.0.200": { + "config": { + "description": "asdasd qweq asdasd", + "enabled": true, + "neighbor-address": "192.168.0.200", + "peer-as": 65100 + }, + "neighbor-address": "192.168.0.200" + } + } + } + }, + "identifier": "bgp", + "name": "bgp" + }, + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.0.0/24": { + "next-hops": { + "next-hop": { + "192.168.0.2": { + "config": { + "metric": 1, + "next-hop": "192.168.0.2" + }, + "index": "192.168.0.2" + }, + "192.168.0.3": { + "config": { + "metric": 1, + "next-hop": "192.168.0.3" + }, + "index": "192.168.0.3" + } + } + }, + "prefix": "10.0.0.0/24" + }, + "10.0.1.0/24": { + "next-hops": { + "next-hop": { + "192.168.0.2": { + "config": { + "metric": 1, + "next-hop": "192.168.0.2" + }, + "index": "192.168.0.2" + } + } + }, + "prefix": "10.0.1.0/24" + } + } + } + } + } + } + }, + "frontend": { + "config": { + "description": "Production VRF", + "enabled": true, + "route-distinguisher": "1:1", + "type": "L3VRF" + }, + "name": "frontend", + "protocols": { + "protocol": { + "bgp bgp": { + "bgp": { + "global": { + "config": { + "as": 65001, + "router-id": "2.2.2.2" + } + }, + "neighbors": { + "neighbor": { + "172.20.0.200": { + "config": { + "enabled": true, + "local-as": 100, + "neighbor-address": "172.20.0.200", + "peer-as": 65100 + }, + "neighbor-address": "172.20.0.200" + } + } + } + }, + "identifier": "bgp", + "name": "bgp" + }, + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.0.0/24": { + "next-hops": { + "next-hop": { + "172.20.0.2": { + "config": { + "metric": 1, + "next-hop": "172.20.0.2" + }, + "index": "172.20.0.2" + } + } + }, + "prefix": "10.0.0.0/24" + }, + "10.0.1.0/24": { + "next-hops": { + "next-hop": { + "172.20.0.2": { + "config": { + "metric": 1, + "next-hop": "172.20.0.2" + }, + "index": "172.20.0.2" + } + } + }, + "prefix": "10.0.1.0/24" + } + } + } + } + } + } + } + } + } +} + diff --git a/test/integration/test_profiles/eos/openconfig-network-instance/config/default/expected.json b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/expected.json new file mode 100644 index 00000000..b6d7e08e --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/expected.json @@ -0,0 +1,237 @@ +{ + "network_instances": { + "network-instance": { + "devel": { + "config": { + "enabled": true, + "route-distinguisher": "1:2", + "type": "L3VRF" + }, + "name": "devel", + "protocols": { + "protocol": { + "bgp bgp": { + "bgp": { + "global": { + "config": { + "as": 65001, + "router-id": "3.3.3.3" + } + } + }, + "identifier": "bgp", + "name": "bgp" + }, + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.0.0/24": { + "config": { + "prefix": "10.0.0.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.2.2": { + "config": { + "metric": 1, + "next-hop": "192.168.2.2" + }, + "index": "192.168.2.2" + } + } + }, + "prefix": "10.0.0.0/24" + }, + "10.0.1.0/24": { + "config": { + "prefix": "10.0.1.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.2.2": { + "config": { + "metric": 1, + "next-hop": "192.168.2.2" + }, + "index": "192.168.2.2" + } + } + }, + "prefix": "10.0.1.0/24" + } + } + } + } + } + } + }, + "global": { + "config": { + "enabled": true, + "type": "DEFAULT_INSTANCE" + }, + "name": "global", + "protocols": { + "protocol": { + "bgp bgp": { + "bgp": { + "global": { + "config": { + "as": 65001, + "router-id": "1.1.1.1" + } + }, + "neighbors": { + "neighbor": { + "192.168.0.200": { + "config": { + "description": "asdasd qweq asdasd", + "enabled": true, + "neighbor-address": "192.168.0.200", + "peer-as": 65100 + }, + "neighbor-address": "192.168.0.200" + } + } + } + }, + "identifier": "bgp", + "name": "bgp" + }, + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.0.0/24": { + "config": { + "prefix": "10.0.0.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.0.2": { + "config": { + "metric": 10, + "next-hop": "192.168.0.2" + }, + "index": "192.168.0.2" + }, + "192.168.0.3": { + "config": { + "metric": 1, + "next-hop": "192.168.0.3" + }, + "index": "192.168.0.3" + } + } + }, + "prefix": "10.0.0.0/24" + }, + "10.0.1.0/24": { + "config": { + "prefix": "10.0.1.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.0.2": { + "config": { + "metric": 1, + "next-hop": "192.168.0.2" + }, + "index": "192.168.0.2" + } + } + }, + "prefix": "10.0.1.0/24" + } + } + } + } + } + } + }, + "prod": { + "config": { + "description": "Production VRF", + "enabled": true, + "route-distinguisher": "1:1", + "type": "L3VRF" + }, + "name": "prod", + "protocols": { + "protocol": { + "bgp bgp": { + "bgp": { + "global": { + "config": { + "as": 65001, + "router-id": "2.2.2.2" + } + }, + "neighbors": { + "neighbor": { + "172.20.0.200": { + "config": { + "enabled": true, + "local-as": 100, + "neighbor-address": "172.20.0.200", + "peer-as": 65100 + }, + "neighbor-address": "172.20.0.200" + } + } + } + }, + "identifier": "bgp", + "name": "bgp" + }, + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.0.0/24": { + "config": { + "prefix": "10.0.0.0/24" + }, + "next-hops": { + "next-hop": { + "172.20.0.2": { + "config": { + "metric": 1, + "next-hop": "172.20.0.2" + }, + "index": "172.20.0.2" + } + } + }, + "prefix": "10.0.0.0/24" + }, + "10.0.1.0/24": { + "config": { + "prefix": "10.0.1.0/24" + }, + "next-hops": { + "next-hop": { + "172.20.0.2": { + "config": { + "metric": 1, + "next-hop": "172.20.0.2" + }, + "index": "172.20.0.2" + } + } + }, + "prefix": "10.0.1.0/24" + } + } + } + } + } + } + } + } + } +} diff --git a/test/integration/test_profiles/eos/openconfig-network-instance/config/default/merge.txt b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/merge.txt new file mode 100644 index 00000000..e55a8f55 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/merge.txt @@ -0,0 +1,20 @@ +ip route 10.0.0.0/24 192.168.0.2 1 +vrf definition frontend + rd 1:1 + description Production VRF + exit +router bgp 65001 + vrf frontend + neighbor 172.20.0.200 remote-as 65100 + neighbor 172.20.0.200 local-as 100 no-prepend replace-as + router-id 2.2.2.2 + exit +ip route vrf frontend 10.0.0.0/24 172.20.0.2 1 +ip route vrf frontend 10.0.1.0/24 172.20.0.2 1 +vrf definition devel + exit +router bgp 65001 + no vrf devel +no vrf definition prod +router bgp 65001 + no vrf prod diff --git a/test/integration/test_profiles/eos/openconfig-network-instance/config/default/mocked/cli.1.show_running_config_all.0 b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/mocked/cli.1.show_running_config_all.0 new file mode 100644 index 00000000..d1d09b83 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/mocked/cli.1.show_running_config_all.0 @@ -0,0 +1,1746 @@ +! Command: show running-config all +! device: localhost (vEOS, EOS-4.15.2.1F) +! +! boot system flash:/vEOS-lab.swi +! +hardware access-list ipv6 implicit-permit icmpv6 all +! +no deep-inspection payload l2 skip +no deep-inspection payload l4 skip +! +agent fatal-error action reload +! +bfd slow-timer 2000 +bfd interval 300 min_rx 300 multiplier 3 default +! +prompt %H%R%v%P +no service configuration session max completed +no service configuration session max pending +! +schedule config max-concurrent-jobs 1 +schedule tech-support interval 60 max-log-files 100 command show tech-support +! +no logging event storm-control discards global +no logging event storm-control discards interval +! +cvx + shutdown + port 9979 + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 + service hsc + vtep flood list type any + service openstack + shutdown + grace-period 60 + name-resolution interval 21600 + service vxlan + shutdown + vtep mac-learning control-plane + resync-period 300 +! +no dcbx application +! +no ip dhcp relay information option +no ip dhcp relay always-on +no ip dhcp smart-relay global +! +no ip dhcp snooping +no ip dhcp snooping information option +ip dhcp snooping information option circuit-id type 0 format %p:%v +! +default switch forwarding-mode +! +vlan internal allocation policy ascending +! +email + no from-user + no server + no auth username + no auth password + no tls +! +errdisable detect cause arp-inspection +errdisable detect cause link-flap +no errdisable recovery cause arp-inspection +no errdisable recovery cause bpduguard +no errdisable recovery cause hitless-reload-down +no errdisable recovery cause link-flap +no errdisable recovery cause loopprotectguard +no errdisable recovery cause no-internal-vlan +no errdisable recovery cause portchannelguard +no errdisable recovery cause portsec +no errdisable recovery cause tapagg +no errdisable recovery cause uplink-failure-detection +no errdisable recovery cause xcvr-unsupported +errdisable recovery interval 300 +! +event-handler dhclient + trigger on-boot + action bash sudo /mnt/flash/initialize_ma1.sh + delay 20 + no asynchronous + timeout 10 +! +ip igmp snooping +no ip igmp snooping report-flooding +ip igmp snooping robustness-variable 2 +no ip igmp snooping restart query-interval +ip igmp snooping immediate-leave +default ip igmp snooping vlan 1 +default ip igmp snooping vlan 1 querier +no ip igmp snooping vlan 1 querier address +no ip igmp snooping vlan 1 querier query-interval +no ip igmp snooping vlan 1 querier max-response-time +no ip igmp snooping vlan 1 querier last-member-query-interval +no ip igmp snooping vlan 1 querier last-member-query-count +no ip igmp snooping vlan 1 querier startup-query-interval +no ip igmp snooping vlan 1 querier startup-query-count +no ip igmp snooping vlan 1 querier version +no ip igmp snooping vlan 1 max-groups +default ip igmp snooping vlan 1 immediate-leave +no ip igmp snooping querier +no ip igmp snooping querier address +ip igmp snooping querier query-interval 125 +ip igmp snooping querier max-response-time 10 +ip igmp snooping querier last-member-query-interval 1 +no ip igmp snooping querier last-member-query-count +no ip igmp snooping querier startup-query-interval +no ip igmp snooping querier startup-query-count +no ip igmp snooping querier version +! +default logging event congestion-drops +! +no service interface inactive expose +! +no service interface unconnected expose +! +default load-interval default +! +transceiver qsfp default-mode 4x10G +! +ip pim log-neighbor-changes +no ip pim bfd +no ip pim ssm range +ip pim sparse-mode sg-expiry-timer 210 +ip pim spt-threshold 0 +! +ip msdp timer 30 +! +no ip pim rp-candidate +no ip pim bsr-holdtime +no ip pim bsr-sztimeout +no ip pim bsr-candidate +no ip pim bsr rp-candidate advertisement-filter +! +no ip pim register-source +! +lacp system-priority 32768 +! +no queue-monitor length +no queue-monitor length notifying +! +queue-monitor length global-buffer thresholds 512 256 +no queue-monitor length mirror +! +queue-monitor length global-buffer +! +errdisable flap-setting cause link-flap max-flaps 5 time 10 +! +lldp timer 30 +lldp holdtime 120 +lldp reinit 2 +lldp tlv-select link-aggregation +lldp tlv-select management-address +lldp tlv-select max-frame-size +lldp tlv-select port-description +lldp tlv-select port-vlan +lldp tlv-select system-capabilities +lldp tlv-select system-description +lldp tlv-select system-name +lldp run +no lldp management-address +! +logging on +logging buffered 32 debugging +logging trap informational +logging console errors +no logging synchronous +logging format timestamp traditional +no logging format hostname fqdn +logging facility local4 +no logging source-interface +! +logging level AAA debugging +logging level ACCOUNTING debugging +logging level ACL debugging +logging level AGENT debugging +logging level ALE debugging +logging level ARP debugging +logging level BFD debugging +logging level BGP debugging +logging level CAPACITY debugging +logging level CAPI debugging +logging level CLEAR debugging +logging level DATAPLANE debugging +logging level DOT1X debugging +logging level ENVMON debugging +logging level ETH debugging +logging level EVENTMON debugging +logging level EXTENSION debugging +logging level FHRP debugging +logging level FLOW debugging +logging level FORWARDING debugging +logging level FRU debugging +logging level FWK debugging +logging level GMP debugging +logging level HARDWARE debugging +logging level IGMP debugging +logging level IGMPSNOOPING debugging +logging level INTF debugging +logging level IP6ROUTING debugging +logging level IRA debugging +logging level ISIS debugging +logging level KERNELFIB debugging +logging level LACP debugging +logging level LAG debugging +logging level LAUNCHER debugging +logging level LINEPROTO debugging +logging level LLDP debugging +logging level LOGMGR debugging +logging level LOOPBACK debugging +logging level LOOPPROTECT debugging +logging level MAPREDUCEMONITOR debugging +logging level MDIO debugging +logging level MIRRORING debugging +logging level MLAG debugging +logging level MMODE debugging +logging level MROUTE debugging +logging level MRP debugging +logging level MSDP debugging +logging level MSRP debugging +logging level MVRP debugging +logging level NAT debugging +logging level OPENFLOW debugging +logging level OSPF debugging +logging level OSPF3 debugging +logging level PFC debugging +logging level PIM debugging +logging level PIMBSR debugging +logging level PORTSECURITY debugging +logging level PTP debugging +logging level PWRMGMT debugging +logging level QOS debugging +logging level QUEUEMONITOR debugging +logging level REACHABILITYMONITOR debugging +logging level REDUNDANCY debugging +logging level RIB debugging +logging level ROUTING debugging +logging level SECURITY debugging +logging level SERVERMONITOR debugging +logging level SPANTREE debugging +logging level STAGEMGR debugging +logging level SYS debugging +logging level SYSDB debugging +logging level TAPAGG debugging +logging level TCP debugging +logging level TRANSCEIVER debugging +logging level TUNNEL debugging +logging level VM debugging +logging level VMTRACERSESS debugging +logging level VMWAREVI debugging +logging level VMWAREVS debugging +logging level VRF debugging +logging level VRRP debugging +logging level VXLAN debugging +logging level XMPP debugging +logging level ZTP debugging +! +logging event link-status global +! +no ip virtual-router mac-address mlag-peer +! +no msrp streams load-file +! +no hostname +no ip domain lookup source-interface +no ip name-server +no ip domain-name +no ip host +no ipv6 host +! +no ntp trusted-key +no ntp authenticate +no ntp serve all +! +power poll-interval 5 +! +no radius-server key +radius-server timeout 5 +radius-server retransmit 3 +no radius-server deadtime +no radius-server attribute 32 include-in-access-req format +! +router msdp + vrf devel + ip msdp timer 30 + ! + vrf prod + ip msdp timer 30 +! +sflow sample 1048576 +sflow polling-interval 2 +no sflow source +no sflow source-interface +sflow sample output interface +sflow extension switch +sflow extension router +no sflow sample rewrite dscp +no sflow run +! +no sflow extension bgp +! +no snmp-server engineID local +no snmp-server chassis-id +no snmp-server contact +no snmp-server location +no snmp-server source-interface +default snmp-server enable traps +default snmp-server enable traps bgp +default snmp-server enable traps bgp arista-backward-transition +default snmp-server enable traps bgp arista-established +default snmp-server enable traps bgp backward-transition +default snmp-server enable traps bgp established +default snmp-server enable traps entity +default snmp-server enable traps entity arista-ent-sensor-alarm +default snmp-server enable traps entity ent-config-change +default snmp-server enable traps entity ent-state-oper-disabled +default snmp-server enable traps entity ent-state-oper-enabled +default snmp-server enable traps lldp +default snmp-server enable traps lldp rem-tables-change +default snmp-server enable traps msdp +default snmp-server enable traps msdp backward-transition +default snmp-server enable traps msdp established +default snmp-server enable traps ospf +default snmp-server enable traps ospf if-auth-failure +default snmp-server enable traps ospf if-config-error +default snmp-server enable traps ospf if-state-change +default snmp-server enable traps ospf nbr-state-change +default snmp-server enable traps pim +default snmp-server enable traps pim neighbor-loss +default snmp-server enable traps snmp +default snmp-server enable traps snmp authentication +default snmp-server enable traps snmp link-down +default snmp-server enable traps snmp link-up +default snmp-server enable traps snmpConfigManEvent +default snmp-server enable traps snmpConfigManEvent arista-config-man-event +default snmp-server enable traps switchover +default snmp-server enable traps switchover arista-redundancy-switch-over-notif +default snmp-server enable traps test +default snmp-server enable traps test arista-test-notification +default snmp-server enable traps vrrp +default snmp-server enable traps vrrp trap-new-master +snmp-server vrf default +! +spanning-tree mode mstp +spanning-tree hello-time 2000 +spanning-tree max-age 20 +spanning-tree forward-time 15 +spanning-tree transmit hold-count 6 +spanning-tree max-hops 20 +no spanning-tree mst pvst border +no spanning-tree portfast bpduguard default +no spanning-tree portfast bpdufilter default +spanning-tree bridge assurance +no spanning-tree loopguard default +no spanning-tree portchannel guard misconfig +spanning-tree bpduguard rate-limit default +logging event spanning-tree global +spanning-tree mst 0 priority 32768 +! +spanning-tree mst configuration + no name + revision 0 +! +no service sequence-numbers +no service running-config timestamp +! +no tacacs-server key +tacacs-server timeout 5 +! +aaa authentication login default local +no aaa authentication login console +aaa authentication enable default local +no aaa authentication policy on-success log +no aaa authentication policy on-failure log +no aaa authorization console +aaa authorization exec default local +no aaa authorization commands all default +aaa authorization config-commands +no aaa accounting exec console +no aaa accounting commands all console +no aaa accounting exec default +no aaa accounting system default +no aaa accounting dot1x default +no aaa accounting commands all default +! +no enable secret +aaa root secret 5 $1$1s8ATte8$cvMSZw6BlLGJVo61p88cP. +no aaa authentication policy local allow-nopassword-remote-login +no aaa authorization policy local default-role +! +username admin privilege 15 role network-admin secret 5 $1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1 +username vagrant privilege 15 role network-admin secret 5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0 +! +role network-admin + 10 permit command .* +! +role network-operator + 10 deny mode exec command configure|bash|python-shell|\| + 20 permit mode exec command .* +! +tap aggregation + no mode + no service-policy type tapagg mac access-list match ip +! +environment overheat action shutdown +environment insufficient-fans action shutdown +environment fan-speed auto +! +clock timezone UTC +! +no virtual-cable +! +vlan 1 + name default + state active + no private-vlan + no mac-address-table sharing +! +vrf definition devel + rd 1:2 + no description +! +vrf definition prod + rd 1:1 + description Production VRF +! +interface Port-Channel1 + description blah + no shutdown + default load-interval + mtu 9000 + logging event link-status use-global + switchport dot1q ethertype 0x8100 + no switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + no ip address + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no bfd per-link + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Port-Channel1 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no port-channel min-links + no port-channel lacp fallback + port-channel lacp fallback timeout 90 + no l2 mtu + no ip multicast static + ip mfib fastdrop + no mlag + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable +! +interface Port-Channel1.1 + no description + no shutdown + default load-interval + logging event link-status use-global + no encapsulation dot1q vlan 0 + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + no ip address + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Port-Channel1.1 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no ip multicast static + ip mfib fastdrop + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable +! +interface Ethernet1 + description This is a description + no shutdown + default load-interval + logging event link-status use-global + dcbx mode ieee + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport access vlan 1 + switchport trunk native vlan 1 + switchport trunk allowed vlan 1-4094 + no switchport asym vlan + switchport mode access + switchport dot1q ethertype 0x8100 + no switchport trunk private-vlan secondary + switchport mac address learning + no switchport private-vlan mapping + switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + channel-group 1 mode active + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no msrp + no mvrp + no switchport port-security + switchport port-security maximum 1 + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable + no spanning-tree portfast + spanning-tree portfast auto + no spanning-tree link-type + no spanning-tree bpduguard + no spanning-tree bpdufilter + no spanning-tree cost + spanning-tree port-priority 128 + no spanning-tree guard + no spanning-tree bpduguard rate-limit + logging event spanning-tree use-global + switchport tap native vlan 1 + no switchport tap identity + no switchport tap mpls pop all + switchport tap allowed vlan 1-4094 + switchport tool allowed vlan 1-4094 + no switchport tool identity + no switchport tap truncation + no switchport tool truncation + no switchport tap default group + no switchport tap default interface + no switchport tool group + no switchport tool dot1q remove outer +! +interface Ethernet2 + description so much oc + shutdown + default load-interval + mtu 1500 + logging event link-status use-global + no dcbx mode + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport dot1q ethertype 0x8100 + no switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + ip address 192.168.0.1/24 + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Ethernet2 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no channel-group + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no ip multicast static + ip mfib fastdrop + no msrp + no mvrp + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable +! +interface Ethernet2.1 + description another subiface + no shutdown + default load-interval + logging event link-status use-global + encapsulation dot1q vlan 1 + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + vrf forwarding prod + no ip proxy-arp + no ip local-proxy-arp + ip address 192.168.1.1/24 + ip address 172.20.0.1/24 secondary + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Ethernet2.1 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no ip multicast static + ip mfib fastdrop + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + sflow enable +! +interface Ethernet2.2 + description asdasdasd + no shutdown + default load-interval + logging event link-status use-global + encapsulation dot1q vlan 2 + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + vrf forwarding devel + no ip proxy-arp + no ip local-proxy-arp + ip address 192.168.2.1/24 + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Ethernet2.2 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no ip multicast static + ip mfib fastdrop + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + sflow enable +! +interface Loopback1 + description a loopback + no shutdown + default load-interval + mtu 1500 + logging event link-status use-global + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + no ip address + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + default ntp serve +! +interface Management1 + no description + no shutdown + default load-interval + mtu 1500 + logging event link-status use-global + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + ip address 10.0.2.15/24 + no ip verify unicast + default arp timeout 300 + default ipv6 nd cache expire 300 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + ipv6 nd ra suppress all + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + lldp transmit + lldp receive + default ntp serve +! +mac address-table aging-time 300 +! +monitor hadoop + shutdown +! +no ip fhrp accept-mode +! +no ip virtual-router mac-address +ip virtual-router mac-address advertisement-interval 30 +! +no ipv6 hardware fib nexthop-index +! +ip route 10.0.0.0/24 192.168.0.2 10 tag 0 +ip route 10.0.0.0/24 192.168.0.3 1 tag 0 +ip route 10.0.1.0/24 192.168.0.2 1 tag 0 +ip route vrf prod 10.0.0.0/24 172.20.0.2 1 tag 0 +ip route vrf prod 10.0.1.0/24 172.20.0.2 1 tag 0 +ip route vrf devel 10.0.0.0/24 192.168.2.2 1 tag 0 +ip route vrf devel 10.0.1.0/24 192.168.2.2 1 tag 0 +! +ip routing +ip icmp redirect +no ip icmp source-interface +ip hardware fib route unprogrammed parent-drop +no ip hardware fib route delete delay +ip hardware fib next-hop update event bfd +no ip hardware fib maximum routes +no ip hardware forwarding mpls gre-key +no ip icmp rate-limit-unreachable 0 +no ip hardware fib next-hop sharing +no ip routing vrf prod +no ip icmp source-interface vrf prod +no ip routing vrf devel +no ip icmp source-interface vrf devel +ipv6 icmp redirect +no ip hardware fib maximum routes-v6 +! +no ip multicast-routing +ip multicast multipath deterministic +ip mfib max-fastdrops 1024 +no ip multicast count +ip mfib activity polling-interval 60 +! +ip mfib cache-entries unresolved max 4000 +ip mfib packet-buffers unresolved max 3 +! +ip as-path regex-mode asn +! +no ipv6 unicast-routing +no ipv6 unicast-routing vrf prod +no ipv6 unicast-routing vrf devel +! +control-plane + ip access-group default-control-plane-acl in + ip access-group default-control-plane-acl vrf prod in + ip access-group default-control-plane-acl vrf devel in + ipv6 access-group default-control-plane-acl in + ipv6 access-group default-control-plane-acl vrf prod in + ipv6 access-group default-control-plane-acl vrf devel in +! +mac address-table notification host-flap logging +mac address-table notification host-flap detection window 15 +! +mlag configuration + no domain-id + heartbeat-interval 4000 + no local-interface + no peer-address + no peer-link + reload-delay 0 + no reload-delay non-mlag + no reload-delay mode + no shutdown +! +monitor loop-protection + rate-limit 1000 + transmit-interval 5 + disabled-time 604800 +! +no mpls ip +! +no ip ftp client source-interface +no ip http client source-interface +no ip ssh client source-interface +no ip telnet client source-interface +no ip tftp client source-interface +! +no qos random-detect ecn global-buffer +qos map cos 0 1 2 3 4 5 6 7 to traffic-class 8 +qos map dscp 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to cos 3 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to uc-tx-queue 4 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4 +! +policy-map type control-plane copp-system-policy + class copp-system-bpdu + shape pps 6000 + bandwidth pps 5000 + class copp-system-arp + shape pps 25000 + bandwidth pps 1000 + class copp-system-igmp + shape pps 5000 + bandwidth pps 4000 + class copp-system-default + no shape + no bandwidth +! +no ip radius source-interface +! +monitor reachability + shutdown + probe receiver max-streams 50000 + probe checkpoint-interval 60 + destination port 49152 + default ignore-checksum + default preserve-streams +! +router bgp 65001 + no shutdown + router-id 1.1.1.1 + bgp convergence time 300 + bgp convergence slow-peer time 90 + no bgp confederation identifier + no update wait-for-convergence + no update wait-install + bgp log-neighbor-changes + bgp default ipv4-unicast + no bgp default ipv4-unicast transport ipv6 + no bgp default ipv6-unicast + timers bgp 60 180 + distance bgp 200 200 200 + graceful-restart restart-time 300 + graceful-restart stalepath-time 300 + no bgp cluster-id + bgp client-to-client reflection + no graceful-restart + graceful-restart-helper + bgp peer-mac-resolution-timeout 0 + bgp enforce-first-as + no bgp route install-map + no bgp transport listen-port + no default-metric + no bgp always-compare-med + no bgp bestpath med missing-as-worst + no bgp bestpath med confed + no bgp host-routes fib direct-install + no bgp route-reflector preserve-attributes + maximum-paths 1 ecmp 128 + no bgp additional-paths install + bgp additional-paths receive + bgp listen limit 1000 + bgp bestpath as-path multipath-relax + no bgp aspath-cmp-include-nexthop + bgp bestpath ecmp-fast + no bgp bestpath tie-break age + no bgp bestpath tie-break router-id + no bgp bestpath tie-break originator-id + no bgp bestpath tie-break cluster-list-length + no bgp advertise-inactive + no bgp auto-local-addr + no neighbor 192.168.0.200 peer-group + neighbor 192.168.0.200 remote-as 65100 + no neighbor 192.168.0.200 import-localpref + no neighbor 192.168.0.200 export-localpref + neighbor 192.168.0.200 description asdasd qweq asdasd + no neighbor 192.168.0.200 next-hop-self + no neighbor 192.168.0.200 next-hop-peer + no neighbor 192.168.0.200 allowas-in + neighbor 192.168.0.200 send-community + no neighbor 192.168.0.200 shutdown + neighbor 192.168.0.200 remove-private-as + no neighbor 192.168.0.200 out-delay + no neighbor 192.168.0.200 local-as + no neighbor 192.168.0.200 weight + no neighbor 192.168.0.200 transport connection-mode passive + no neighbor 192.168.0.200 update-source + no neighbor 192.168.0.200 dont-capability-negotiate + no neighbor 192.168.0.200 fall-over bfd + no neighbor 192.168.0.200 local-v6-addr + no neighbor 192.168.0.200 auto-local-addr + no neighbor 192.168.0.200 next-hop-v6-addr + neighbor 192.168.0.200 soft-reconfiguration inbound + no neighbor 192.168.0.200 ebgp-multihop + no neighbor 192.168.0.200 route-reflector-client + no neighbor 192.168.0.200 timers + no neighbor 192.168.0.200 route-map in + no neighbor 192.168.0.200 graceful-restart + neighbor 192.168.0.200 graceful-restart-helper + neighbor 192.168.0.200 additional-paths receive + no neighbor 192.168.0.200 route-map out + no neighbor 192.168.0.200 prefix-list in + no neighbor 192.168.0.200 prefix-list out + no neighbor 192.168.0.200 password + no neighbor 192.168.0.200 default-originate + neighbor 192.168.0.200 enforce-first-as + no neighbor 192.168.0.200 metric-out + no neighbor 192.168.0.200 idle-restart-timer + neighbor 192.168.0.200 maximum-routes 12000 + bgp redistribute-internal + no redistribute connected + no redistribute isis + no redistribute ospf match internal + no redistribute ospf match external + no redistribute ospf match nssa-external + no redistribute ospf3 match internal + no redistribute ospf3 match external + no redistribute static + no redistribute rip + no redistribute aggregate + address-family ipv4 + bgp additional-paths receive + no bgp route install-map + default neighbor 192.168.0.200 activate + no neighbor 192.168.0.200 route-map in + no neighbor 192.168.0.200 route-map out + no neighbor 192.168.0.200 default-originate + neighbor 192.168.0.200 additional-paths receive + no neighbor 192.168.0.200 weight + ! + address-family ipv6 + no bgp additional-paths install + bgp additional-paths receive + no bgp route install-map + default neighbor 192.168.0.200 activate + no neighbor 192.168.0.200 route-map in + no neighbor 192.168.0.200 route-map out + no neighbor 192.168.0.200 prefix-list in + no neighbor 192.168.0.200 prefix-list out + no neighbor 192.168.0.200 default-originate + neighbor 192.168.0.200 additional-paths receive + no neighbor 192.168.0.200 weight + vrf devel + local-as 65001 + no shutdown + router-id 3.3.3.3 + bgp convergence time 300 + bgp convergence slow-peer time 90 + no bgp confederation identifier + no update wait-for-convergence + no update wait-install + bgp log-neighbor-changes + bgp default ipv4-unicast + no bgp default ipv4-unicast transport ipv6 + no bgp default ipv6-unicast + timers bgp 60 180 + distance bgp 200 200 200 + graceful-restart restart-time 300 + graceful-restart stalepath-time 300 + no bgp cluster-id + bgp client-to-client reflection + no graceful-restart + graceful-restart-helper + bgp peer-mac-resolution-timeout 0 + bgp enforce-first-as + no bgp route install-map + no bgp transport listen-port + no default-metric + no bgp always-compare-med + no bgp bestpath med missing-as-worst + no bgp bestpath med confed + no bgp route-reflector preserve-attributes + maximum-paths 1 ecmp 128 + no bgp additional-paths install + bgp additional-paths receive + bgp listen limit 1000 + bgp bestpath as-path multipath-relax + no bgp aspath-cmp-include-nexthop + bgp bestpath ecmp-fast + no bgp bestpath tie-break age + no bgp bestpath tie-break router-id + no bgp bestpath tie-break originator-id + no bgp bestpath tie-break cluster-list-length + no bgp advertise-inactive + no bgp auto-local-addr + bgp redistribute-internal + no redistribute connected + no redistribute isis + no redistribute ospf match internal + no redistribute ospf match external + no redistribute ospf match nssa-external + no redistribute ospf3 match internal + no redistribute ospf3 match external + no redistribute static + no redistribute rip + no redistribute aggregate + address-family ipv4 + bgp additional-paths receive + no bgp route install-map + ! + address-family ipv6 + no bgp additional-paths install + bgp additional-paths receive + no bgp route install-map + ! + vrf prod + local-as 65001 + no shutdown + router-id 2.2.2.2 + bgp convergence time 300 + bgp convergence slow-peer time 90 + no bgp confederation identifier + no update wait-for-convergence + no update wait-install + bgp log-neighbor-changes + bgp default ipv4-unicast + no bgp default ipv4-unicast transport ipv6 + no bgp default ipv6-unicast + timers bgp 60 180 + distance bgp 200 200 200 + graceful-restart restart-time 300 + graceful-restart stalepath-time 300 + no bgp cluster-id + bgp client-to-client reflection + no graceful-restart + graceful-restart-helper + bgp peer-mac-resolution-timeout 0 + bgp enforce-first-as + no bgp route install-map + no bgp transport listen-port + no default-metric + no bgp always-compare-med + no bgp bestpath med missing-as-worst + no bgp bestpath med confed + no bgp route-reflector preserve-attributes + maximum-paths 1 ecmp 128 + no bgp additional-paths install + bgp additional-paths receive + bgp listen limit 1000 + bgp bestpath as-path multipath-relax + no bgp aspath-cmp-include-nexthop + bgp bestpath ecmp-fast + no bgp bestpath tie-break age + no bgp bestpath tie-break router-id + no bgp bestpath tie-break originator-id + no bgp bestpath tie-break cluster-list-length + no bgp advertise-inactive + no bgp auto-local-addr + no neighbor 172.20.0.200 peer-group + neighbor 172.20.0.200 remote-as 65100 + no neighbor 172.20.0.200 import-localpref + no neighbor 172.20.0.200 export-localpref + no neighbor 172.20.0.200 description + no neighbor 172.20.0.200 next-hop-self + no neighbor 172.20.0.200 next-hop-peer + no neighbor 172.20.0.200 allowas-in + no neighbor 172.20.0.200 send-community + no neighbor 172.20.0.200 shutdown + no neighbor 172.20.0.200 remove-private-as + no neighbor 172.20.0.200 out-delay + neighbor 172.20.0.200 local-as 100 no-prepend replace-as + no neighbor 172.20.0.200 weight + no neighbor 172.20.0.200 transport connection-mode passive + no neighbor 172.20.0.200 update-source + no neighbor 172.20.0.200 dont-capability-negotiate + no neighbor 172.20.0.200 fall-over bfd + no neighbor 172.20.0.200 local-v6-addr + no neighbor 172.20.0.200 auto-local-addr + no neighbor 172.20.0.200 next-hop-v6-addr + neighbor 172.20.0.200 soft-reconfiguration inbound + no neighbor 172.20.0.200 ebgp-multihop + no neighbor 172.20.0.200 route-reflector-client + no neighbor 172.20.0.200 timers + no neighbor 172.20.0.200 route-map in + no neighbor 172.20.0.200 graceful-restart + neighbor 172.20.0.200 graceful-restart-helper + neighbor 172.20.0.200 additional-paths receive + no neighbor 172.20.0.200 route-map out + no neighbor 172.20.0.200 prefix-list in + no neighbor 172.20.0.200 prefix-list out + no neighbor 172.20.0.200 password + no neighbor 172.20.0.200 default-originate + neighbor 172.20.0.200 enforce-first-as + no neighbor 172.20.0.200 metric-out + no neighbor 172.20.0.200 idle-restart-timer + neighbor 172.20.0.200 maximum-routes 12000 + bgp redistribute-internal + no redistribute connected + no redistribute isis + no redistribute ospf match internal + no redistribute ospf match external + no redistribute ospf match nssa-external + no redistribute ospf3 match internal + no redistribute ospf3 match external + no redistribute static + no redistribute rip + no redistribute aggregate + address-family ipv4 + bgp additional-paths receive + no bgp route install-map + default neighbor 172.20.0.200 activate + no neighbor 172.20.0.200 route-map in + no neighbor 172.20.0.200 route-map out + no neighbor 172.20.0.200 default-originate + neighbor 172.20.0.200 additional-paths receive + no neighbor 172.20.0.200 weight + ! + address-family ipv6 + no bgp additional-paths install + bgp additional-paths receive + no bgp route install-map + default neighbor 172.20.0.200 activate + no neighbor 172.20.0.200 route-map in + no neighbor 172.20.0.200 route-map out + no neighbor 172.20.0.200 prefix-list in + no neighbor 172.20.0.200 prefix-list out + no neighbor 172.20.0.200 default-originate + neighbor 172.20.0.200 additional-paths receive + no neighbor 172.20.0.200 weight +! +router multicast + vrf devel + no ip multicast-routing + ip multicast multipath deterministic + ip mfib max-fastdrops 1024 + ip mfib cache-entries unresolved max 4000 + ip mfib packet-buffers unresolved max 3 + ! + vrf prod + no ip multicast-routing + ip multicast multipath deterministic + ip mfib max-fastdrops 1024 + ip mfib cache-entries unresolved max 4000 + ip mfib packet-buffers unresolved max 3 +! +router pim sparse-mode + vrf devel + ip pim log-neighbor-changes + no ip pim ssm range + ip pim sparse-mode sg-expiry-timer 210 + ip pim spt-threshold 0 + no ip pim rp-candidate + no ip pim register-source + ! + vrf prod + ip pim log-neighbor-changes + no ip pim ssm range + ip pim sparse-mode sg-expiry-timer 210 + ip pim spt-threshold 0 + no ip pim rp-candidate + no ip pim register-source +! +router pim bidirectional + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate + vrf devel + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate + ! + vrf prod + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate +! +router pim bsr + vrf devel + no ip pim bsr-holdtime + no ip pim bsr-sztimeout + no ip pim bsr-candidate + no ip pim bsr rp-candidate advertisement-filter + ! + vrf prod + no ip pim bsr-holdtime + no ip pim bsr-sztimeout + no ip pim bsr-candidate + no ip pim bsr rp-candidate advertisement-filter +! +no ip tacacs source-interface +! +no vxlan vni notation dotted +! +no banner login +no banner motd +! +system coredump compressed +! +no dot1x system-auth-control +! +management api http-commands + protocol https port 443 + no protocol http port 80 + no protocol http localhost port 8080 + no protocol unix-socket + no protocol https certificate + no protocol https ssl profile + no cors allowed-origin + protocol https cipher aes256-cbc aes128-cbc + protocol https key-exchange rsa diffie-hellman-ephemeral-rsa + protocol https mac hmac-sha1 + qos dscp 0 + no shutdown + vrf default + no shutdown +! +management cim-provider + shutdown + http 7778 + https 7779 + idle-timeout 90 + default live-time + default trace + default ssl certificate + default ssl key +! +management console + idle-timeout 0 +! +management cvx + shutdown + no server host + no source-interface + no server port + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 +! +management defaults + secret hash md5 +! +management security + no entropy source hardware + no password minimum length +! +management ssh + idle-timeout 0 + authentication mode keyboard-interactive + server-port 22 + hostkey server rsa dsa + no fips restrictions + no hostkey client strict-checking + no shutdown + login timeout 120 + log-level info +! +management telnet + shutdown + idle-timeout 0 +! +management xmpp + shutdown + vrf default + session privilege 1 +! +! +end diff --git a/test/integration/test_profiles/eos/openconfig-network-instance/config/default/replace.txt b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/replace.txt new file mode 100644 index 00000000..0cb5bbb6 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/replace.txt @@ -0,0 +1,37 @@ +no router bgp 65001 +router bgp 65001 + no neighbor 192.168.0.200 + neighbor 192.168.0.200 remote-as 65100 + neighbor 192.168.0.200 description asdasd qweq asdasd + router-id 1.1.1.1 + exit +no ip route 10.0.0.0/24 +ip route 10.0.0.0/24 192.168.0.2 1 +ip route 10.0.0.0/24 192.168.0.3 1 +no ip route 10.0.1.0/24 +ip route 10.0.1.0/24 192.168.0.2 1 +no vrf definition frontend +vrf definition frontend + rd 1:1 + description Production VRF + exit +router bgp 65001 + vrf frontend + no neighbor 172.20.0.200 + neighbor 172.20.0.200 remote-as 65100 + neighbor 172.20.0.200 local-as 100 no-prepend replace-as + router-id 2.2.2.2 + exit +no ip route vrf frontend 10.0.0.0/24 +ip route vrf frontend 10.0.0.0/24 172.20.0.2 1 +no ip route vrf frontend 10.0.1.0/24 +ip route vrf frontend 10.0.1.0/24 172.20.0.2 1 +no vrf definition devel +vrf definition devel + rd 1:2 + exit +no ip route vrf devel 10.0.0.0/24 +ip route vrf devel 10.0.0.0/24 192.168.2.2 1 +no ip route vrf devel 10.0.1.0/24 +ip route vrf devel 10.0.1.0/24 192.168.2.2 1 +no vrf definition prod diff --git a/test/integration/test_profiles/eos/openconfig-network-instance/config/default/translation.txt b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/translation.txt new file mode 100644 index 00000000..9e8a7807 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-network-instance/config/default/translation.txt @@ -0,0 +1,29 @@ +router bgp 65001 + neighbor 192.168.0.200 remote-as 65100 + neighbor 192.168.0.200 description asdasd qweq asdasd + router-id 1.1.1.1 + exit +ip route 10.0.0.0/24 192.168.0.2 10 +ip route 10.0.0.0/24 192.168.0.3 1 +ip route 10.0.1.0/24 192.168.0.2 1 +vrf definition prod + rd 1:1 + description Production VRF + exit +router bgp 65001 + vrf prod + neighbor 172.20.0.200 remote-as 65100 + neighbor 172.20.0.200 local-as 100 no-prepend replace-as + router-id 2.2.2.2 + exit +ip route vrf prod 10.0.0.0/24 172.20.0.2 1 +ip route vrf prod 10.0.1.0/24 172.20.0.2 1 +vrf definition devel + rd 1:2 + exit +router bgp 65001 + vrf devel + router-id 3.3.3.3 + exit +ip route vrf devel 10.0.0.0/24 192.168.2.2 1 +ip route vrf devel 10.0.1.0/24 192.168.2.2 1 diff --git a/test/integration/test_profiles/eos/openconfig-platform/state/default/openconfig-platform.expected b/test/integration/test_profiles/eos/openconfig-platform/state/default/openconfig-platform.expected new file mode 100644 index 00000000..cc3d8a42 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-platform/state/default/openconfig-platform.expected @@ -0,0 +1 @@ +{"components": {"component": {"Ethernet5/32/1": {"state": {"type": "PORT", "name": "Ethernet5/32/1"}, "name": "Ethernet5/32/1"}, "Ethernet3/20": {"state": {"type": "PORT", "name": "Ethernet3/20"}, "name": "Ethernet3/20"}, "Ethernet3/23": {"state": {"type": "PORT", "name": "Ethernet3/23"}, "name": "Ethernet3/23"}, "Ethernet3/22": {"state": {"type": "PORT", "name": "Ethernet3/22"}, "name": "Ethernet3/22"}, "xcvr_6/9": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5588235808181539}, "input-power": {"instant": 2.5541724580849623}, "laser-bias-current": {"instant": 39.812}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.6823222951342087}, "input-power": {"instant": 2.3593225398629514}, "laser-bias-current": {"instant": 36.874}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5648857605001742}, "input-power": {"instant": 2.000292665537704}, "laser-bias-current": {"instant": 35.858000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5585202495926742}, "input-power": {"instant": 1.7684338450373893}, "laser-bias-current": {"instant": 31.612000000000002}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100152", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/9"}, "name": "xcvr_6/9"}, "xcvr_6/8": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.366888656722578}, "input-power": {"instant": 3.5791579857913014}, "laser-bias-current": {"instant": 39.848}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4401346578619867}, "input-power": {"instant": 3.015508366001667}, "laser-bias-current": {"instant": 36.288000000000004}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.3315553819799009}, "input-power": {"instant": 1.8895659252639874}, "laser-bias-current": {"instant": 42.602000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.3599084692162489}, "input-power": {"instant": 1.2509071308263442}, "laser-bias-current": {"instant": 34.274}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100371", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/8"}, "name": "xcvr_6/8"}, "Ethernet3/27": {"state": {"type": "PORT", "name": "Ethernet3/27"}, "name": "Ethernet3/27"}, "Ethernet3/26": {"state": {"type": "PORT", "name": "Ethernet3/26"}, "name": "Ethernet3/26"}, "xcvr_6/5": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.557003275593165}, "input-power": {"instant": 3.3661981290743848}, "laser-bias-current": {"instant": 32.992}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4310852276251262}, "input-power": {"instant": 3.605744813966325}, "laser-bias-current": {"instant": 29.494}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4851011061099895}, "input-power": {"instant": 3.625955575488198}, "laser-bias-current": {"instant": 29.494}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4894181490291114}, "input-power": {"instant": 3.426595041391187}, "laser-bias-current": {"instant": 34.504}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA160300413", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/5"}, "name": "xcvr_6/5"}, "xcvr_6/4": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5360147428841087}, "input-power": {"instant": 3.8715837827271304}, "laser-bias-current": {"instant": 34.018}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5491064578852365}, "input-power": {"instant": 3.7164038383788434}, "laser-bias-current": {"instant": 31.856}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4767632424109856}, "input-power": {"instant": 3.4338889746235424}, "laser-bias-current": {"instant": 34.558}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5032653649870742}, "input-power": {"instant": 2.8544478290741537}, "laser-bias-current": {"instant": 32.912}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600141", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/4"}, "name": "xcvr_6/4"}, "xcvr_6/7": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.499577088910593}, "input-power": {"instant": 2.7939314274786398}, "laser-bias-current": {"instant": 44.918}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5527529273009977}, "input-power": {"instant": 2.6264090375526195}, "laser-bias-current": {"instant": 42.52}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5204360248765125}, "input-power": {"instant": 1.6580797900378608}, "laser-bias-current": {"instant": 45.230000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.428898054390424}, "input-power": {"instant": 2.3934953900613687}, "laser-bias-current": {"instant": 44.444}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162000066", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/7"}, "name": "xcvr_6/7"}, "xcvr_6/6": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.0846354120359525}, "input-power": {"instant": 1.3541890502785225}, "laser-bias-current": {"instant": 48.296}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.3376238478734548}, "input-power": {"instant": 1.4295230734343223}, "laser-bias-current": {"instant": 42.082}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4326468201122067}, "input-power": {"instant": 1.148444131450237}, "laser-bias-current": {"instant": 41.386}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4538289197487453}, "input-power": {"instant": 0.9756963943137142}, "laser-bias-current": {"instant": 37.44}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100377", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/6"}, "name": "xcvr_6/6"}, "xcvr_6/1": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 0.6662405098342639}, "input-power": {"instant": 3.218468826928884}, "laser-bias-current": {"instant": 49.02}}}, "1": {"state": {"index": 1, "output-power": {"instant": -0.22642270454698465}, "input-power": {"instant": 3.7006876065005168}, "laser-bias-current": {"instant": 48.166000000000004}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.7092403147615034}, "input-power": {"instant": 3.5270335904754813}, "laser-bias-current": {"instant": 45.522}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.9149109426795121}, "input-power": {"instant": 3.750963750953966}, "laser-bias-current": {"instant": 44.992000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA155300202", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/1"}, "name": "xcvr_6/1"}, "xcvr_6/3": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.4702671522223065}, "input-power": {"instant": 2.844081725061991}, "laser-bias-current": {"instant": 34.474000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5609463063942774}, "input-power": {"instant": 2.4221832024761225}, "laser-bias-current": {"instant": 30.996000000000002}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5060295179300942}, "input-power": {"instant": 2.1375675240648384}, "laser-bias-current": {"instant": 37.552}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.469957572094649}, "input-power": {"instant": 2.476787295706573}, "laser-bias-current": {"instant": 29.762}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA160300373", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/3"}, "name": "xcvr_6/3"}, "xcvr_6/2": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.532659350758685}, "input-power": {"instant": 3.5930414234993258}, "laser-bias-current": {"instant": 35.858000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5084850666952265}, "input-power": {"instant": 3.473495337314567}, "laser-bias-current": {"instant": 31.556}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.46531122007445}, "input-power": {"instant": 3.102045888980056}, "laser-bias-current": {"instant": 30.044}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5463695951841983}, "input-power": {"instant": 2.866585246156861}, "laser-bias-current": {"instant": 35.464}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA155100408", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/2"}, "name": "xcvr_6/2"}, "xcvr_4/3": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -3.557584141562713}, "input-power": {"instant": -2.9895036927086016}, "laser-bias-current": {"instant": 5.156}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN0ED318042", "part-no": "SFP10GSRL-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_4/3"}, "name": "xcvr_4/3"}, "xcvr_4/2": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.7496355877864644}, "input-power": {"instant": -2.660007134616129}, "laser-bias-current": {"instant": 6.3580000000000005}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1314FE0F9", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_4/2"}, "name": "xcvr_4/2"}, "xcvr_4/1": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.6577009714832247}, "input-power": {"instant": -3.3592240981492516}, "laser-bias-current": {"instant": 6.524}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1312FE1QK", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_4/1"}, "name": "xcvr_4/1"}, "xcvr_4/5": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -3.48721986001856}, "input-power": {"instant": -2.973110318408665}, "laser-bias-current": {"instant": 5.2700000000000005}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN1017A3653", "part-no": "SFP10GSRL-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_4/5"}, "name": "xcvr_4/5"}, "xcvr_4/4": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -2.539888922480742}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 7.0840000000000005}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1320FE0TQ", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_4/4"}, "name": "xcvr_4/4"}, "TempSensor13/2": {"state": {"type": "SENSOR", "name": "TempSensor13/2", "temperature": {"max": 57.0, "instant": 51.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor13/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor13/1": {"state": {"type": "SENSOR", "name": "TempSensor13/1", "temperature": {"max": 50.25, "instant": 44.5}, "description": "Outlet sensor"}, "name": "TempSensor13/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/30/1": {"state": {"type": "PORT", "name": "Ethernet6/30/1"}, "name": "Ethernet6/30/1", "subcomponents": {"subcomponent": {"xcvr_6/30": {"state": {"name": "xcvr_6/30"}, "name": "xcvr_6/30"}}}}, "xcvr_3/49": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.292619958041751}, "input-power": {"instant": -1.1861534322942724}, "laser-bias-current": {"instant": 5.402}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.43558746914732716}, "input-power": {"instant": -0.5660442349104544}, "laser-bias-current": {"instant": 6.19}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.38381691467695767}, "input-power": {"instant": -0.8878910686244668}, "laser-bias-current": {"instant": 5.506}}}, "4": {"state": {"index": 4, "output-power": {"instant": 0.3730695089709135}, "input-power": {"instant": -0.4019568349166214}, "laser-bias-current": {"instant": 5.614}}}, "5": {"state": {"index": 5, "output-power": {"instant": 0.5034108183408437}, "input-power": {"instant": -0.8884239126002358}, "laser-bias-current": {"instant": 5.5760000000000005}}}, "6": {"state": {"index": 6, "output-power": {"instant": 0.41747871723265995}, "input-power": {"instant": -0.659562809644747}, "laser-bias-current": {"instant": 6.204}}}, "7": {"state": {"index": 7, "output-power": {"instant": 0.5422990986339737}, "input-power": {"instant": -0.6153031163235445}, "laser-bias-current": {"instant": 6.238}}}, "8": {"state": {"index": 8, "output-power": {"instant": 0.17367283553529678}, "input-power": {"instant": -0.6313454102437754}, "laser-bias-current": {"instant": 6.16}}}, "9": {"state": {"index": 9, "output-power": {"instant": 0.7025957740057498}, "input-power": {"instant": -0.7437854520917098}, "laser-bias-current": {"instant": 5.416}}}, "10": {"state": {"index": 10, "output-power": {"instant": 0.15736874477450424}, "input-power": {"instant": -0.11574829993696856}, "laser-bias-current": {"instant": 6.216}}}, "11": {"state": {"index": 11, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}}}, "state": {"ethernet-pmd": "ETH_100GBASE_SR10", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "JPE13510257", "part-no": "7500E-72S-LC", "type": "TRANSCEIVER", "name": "xcvr_3/49"}, "name": "xcvr_3/49"}, "xcvr_3/48": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XMD1018MCF8D", "part-no": "SFP-1G-T", "type": "TRANSCEIVER", "name": "xcvr_3/48"}, "name": "xcvr_3/48"}, "TempSensor12/2": {"state": {"type": "SENSOR", "name": "TempSensor12/2", "temperature": {"max": 57.0, "instant": 51.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor12/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet4/9": {"state": {"type": "PORT", "name": "Ethernet4/9"}, "name": "Ethernet4/9"}, "Ethernet5/34/1": {"state": {"type": "PORT", "name": "Ethernet5/34/1"}, "name": "Ethernet5/34/1"}, "TempSensor12/1": {"state": {"type": "SENSOR", "name": "TempSensor12/1", "temperature": {"max": 51.25, "instant": 44.75}, "description": "Outlet sensor"}, "name": "TempSensor12/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/33/1": {"state": {"type": "PORT", "name": "Ethernet6/33/1"}, "name": "Ethernet6/33/1", "subcomponents": {"subcomponent": {"xcvr_6/33": {"state": {"name": "xcvr_6/33"}, "name": "xcvr_6/33"}}}}, "Ethernet5/15/1": {"state": {"type": "PORT", "name": "Ethernet5/15/1"}, "name": "Ethernet5/15/1"}, "Ethernet5/35/1": {"state": {"type": "PORT", "name": "Ethernet5/35/1"}, "name": "Ethernet5/35/1"}, "TempSensor11/1": {"state": {"type": "SENSOR", "name": "TempSensor11/1", "temperature": {"max": 53.25, "instant": 47.0}, "description": "Outlet sensor"}, "name": "TempSensor11/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "xcvr_4/49": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.49101678208557153}, "input-power": {"instant": -0.7826151631540146}, "laser-bias-current": {"instant": 5.96}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.11232010319365937}, "input-power": {"instant": -0.5833952161160783}, "laser-bias-current": {"instant": 6.142}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.5551732784983132}, "input-power": {"instant": -1.1884367892443626}, "laser-bias-current": {"instant": 6.3340000000000005}}}, "4": {"state": {"index": 4, "output-power": {"instant": 0.34227260770550494}, "input-power": {"instant": -0.5601112492622828}, "laser-bias-current": {"instant": 5.988}}}, "5": {"state": {"index": 5, "output-power": {"instant": 0.31206419827462195}, "input-power": {"instant": -0.9598811640261173}, "laser-bias-current": {"instant": 5.972}}}, "6": {"state": {"index": 6, "output-power": {"instant": -0.3465716443937783}, "input-power": {"instant": -0.6323500239005853}, "laser-bias-current": {"instant": 6.1080000000000005}}}, "7": {"state": {"index": 7, "output-power": {"instant": 0.1367969729119256}, "input-power": {"instant": -0.38199360808321536}, "laser-bias-current": {"instant": 5.974}}}, "8": {"state": {"index": 8, "output-power": {"instant": 0.4883008652834997}, "input-power": {"instant": -0.5551732784983132}, "laser-bias-current": {"instant": 6.676}}}, "9": {"state": {"index": 9, "output-power": {"instant": 0.9971516235102351}, "input-power": {"instant": -1.281352979118049}, "laser-bias-current": {"instant": 5.96}}}, "10": {"state": {"index": 10, "output-power": {"instant": 0.07150105366684922}, "input-power": {"instant": -0.23558310621155432}, "laser-bias-current": {"instant": 6.3100000000000005}}}, "11": {"state": {"index": 11, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}}}, "state": {"ethernet-pmd": "ETH_100GBASE_SR10", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "JPE13510269", "part-no": "7500E-72S-LC", "type": "TRANSCEIVER", "name": "xcvr_4/49"}, "name": "xcvr_4/49"}, "TempSensor11/2": {"state": {"type": "SENSOR", "name": "TempSensor11/2", "temperature": {"max": 59.0, "instant": 53.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor11/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "powerSupply_2": {"state": {"mfg-name": "Arista Networks", "serial-no": "G100M3000402P", "part-no": "PWR-2900AC", "type": "POWER_SUPPLY", "name": "powerSupply_2"}, "name": "powerSupply_2", "subcomponents": {"subcomponent": {"TempSensorP2/1": {"state": {"name": "TempSensorP2/1"}, "name": "TempSensorP2/1"}, "TempSensorP2/2": {"state": {"name": "TempSensorP2/2"}, "name": "TempSensorP2/2"}}}}, "powerSupply_3": {"state": {"mfg-name": "Arista Networks", "serial-no": "G100M1000902P", "part-no": "PWR-2900AC", "type": "POWER_SUPPLY", "name": "powerSupply_3"}, "name": "powerSupply_3", "subcomponents": {"subcomponent": {"TempSensorP3/1": {"state": {"name": "TempSensorP3/1"}, "name": "TempSensorP3/1"}, "TempSensorP3/2": {"state": {"name": "TempSensorP3/2"}, "name": "TempSensorP3/2"}}}}, "powerSupply_1": {"state": {"mfg-name": "Arista Networks", "serial-no": "G100M3000502P", "part-no": "PWR-2900AC", "type": "POWER_SUPPLY", "name": "powerSupply_1"}, "name": "powerSupply_1", "subcomponents": {"subcomponent": {"TempSensorP1/2": {"state": {"name": "TempSensorP1/2"}, "name": "TempSensorP1/2"}, "TempSensorP1/1": {"state": {"name": "TempSensorP1/1"}, "name": "TempSensorP1/1"}}}}, "Ethernet5/36/1": {"state": {"type": "PORT", "name": "Ethernet5/36/1"}, "name": "Ethernet5/36/1"}, "powerSupply_4": {"state": {"mfg-name": "Arista Networks", "serial-no": "G100M100MA02P", "part-no": "PWR-2900AC", "type": "POWER_SUPPLY", "name": "powerSupply_4"}, "name": "powerSupply_4", "subcomponents": {"subcomponent": {"TempSensorP4/2": {"state": {"name": "TempSensorP4/2"}, "name": "TempSensorP4/2"}, "TempSensorP4/1": {"state": {"name": "TempSensorP4/1"}, "name": "TempSensorP4/1"}}}}, "Ethernet5/21/1": {"state": {"type": "PORT", "name": "Ethernet5/21/1"}, "name": "Ethernet5/21/1"}, "xcvr_5/3": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 0.31327657761131}, "input-power": {"instant": 1.947085515751228}, "laser-bias-current": {"instant": 48.764}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.7353506505878382}, "input-power": {"instant": 3.0958758744822834}, "laser-bias-current": {"instant": 46.768}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.24157154459672814}, "input-power": {"instant": 2.5925930985236345}, "laser-bias-current": {"instant": 49.796}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.8244197917456386}, "input-power": {"instant": 1.6749456163572152}, "laser-bias-current": {"instant": 47.838}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600205", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/3"}, "name": "xcvr_5/3"}, "xcvr_5/1": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 2.7937031817910807}, "input-power": {"instant": 4.266251064182471}, "laser-bias-current": {"instant": 40.612}}}, "1": {"state": {"index": 1, "output-power": {"instant": 2.6429824719021644}, "input-power": {"instant": 3.488109204051777}, "laser-bias-current": {"instant": 39.918}}}, "2": {"state": {"index": 2, "output-power": {"instant": 2.5051758561048487}, "input-power": {"instant": 3.146255192012708}, "laser-bias-current": {"instant": 42.442}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.7580163284827943}, "input-power": {"instant": 4.234424910752614}, "laser-bias-current": {"instant": 38.704}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH1537000RV", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/1"}, "name": "xcvr_5/1"}, "xcvr_5/6": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.542108822069741}, "input-power": {"instant": 1.4560035765224821}, "laser-bias-current": {"instant": 44.114000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.554878621412814}, "input-power": {"instant": 1.3506901382344783}, "laser-bias-current": {"instant": 44.706}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.549714415444714}, "input-power": {"instant": 2.013151742339918}, "laser-bias-current": {"instant": 35.09}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5609463063942774}, "input-power": {"instant": 1.8658909127240708}, "laser-bias-current": {"instant": 39.354}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600085", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/6"}, "name": "xcvr_5/6"}, "xcvr_5/7": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5408906901442077}, "input-power": {"instant": 0.510366951412129}, "laser-bias-current": {"instant": 33.12}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5654915133178138}, "input-power": {"instant": 2.443760940205717}, "laser-bias-current": {"instant": 28.022000000000002}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5035725799851907}, "input-power": {"instant": 2.579184503140586}, "laser-bias-current": {"instant": 36.188}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5164560251162795}, "input-power": {"instant": 3.0818010103066573}, "laser-bias-current": {"instant": 39.152}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600151", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/7"}, "name": "xcvr_5/7"}, "xcvr_5/4": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5213539686187616}, "input-power": {"instant": 3.102045888980056}, "laser-bias-current": {"instant": 35.886}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5736609176227034}, "input-power": {"instant": 3.1132995230379334}, "laser-bias-current": {"instant": 39.848}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5809097318555976}, "input-power": {"instant": 2.765537086243124}, "laser-bias-current": {"instant": 34.706}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4931150590791509}, "input-power": {"instant": 2.8809265454186983}, "laser-bias-current": {"instant": 40.148}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600039", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/4"}, "name": "xcvr_5/4"}, "xcvr_5/5": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5712419550486922}, "input-power": {"instant": -1.2418661116024232}, "laser-bias-current": {"instant": 41.432}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.189918001959751}, "input-power": {"instant": -1.2942053944731535}, "laser-bias-current": {"instant": 46.19}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.576380641009174}, "input-power": {"instant": -1.6045910703103106}, "laser-bias-current": {"instant": 40.480000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5573067127858842}, "input-power": {"instant": -0.4464904263234004}, "laser-bias-current": {"instant": 34.714}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600017", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/5"}, "name": "xcvr_5/5"}, "Ethernet5/20/1": {"state": {"type": "PORT", "name": "Ethernet5/20/1"}, "name": "Ethernet5/20/1"}, "xcvr_5/8": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3081605003474417}, "input-power": {"instant": 3.5835370103326536}, "laser-bias-current": {"instant": 47.966}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.3296372613072682}, "input-power": {"instant": 3.846580124622787}, "laser-bias-current": {"instant": 39.866}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4662408882400557}, "input-power": {"instant": 3.7366584299164485}, "laser-bias-current": {"instant": 39.354}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.3630826725581313}, "input-power": {"instant": 3.79686151906955}, "laser-bias-current": {"instant": 44.412}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600196", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/8"}, "name": "xcvr_5/8"}, "xcvr_5/9": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.4507203770499766}, "input-power": {"instant": -0.5774384958053513}, "laser-bias-current": {"instant": 38.85}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4656211315755652}, "input-power": {"instant": -0.6844043290919499}, "laser-bias-current": {"instant": 40.442}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.2083706025473706}, "input-power": {"instant": -0.7504911108438916}, "laser-bias-current": {"instant": 41.502}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4072796284418265}, "input-power": {"instant": -1.24649303420711}, "laser-bias-current": {"instant": 37.302}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163600181", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/9"}, "name": "xcvr_5/9"}, "Management1/2": {"state": {"type": "PORT", "name": "Management1/2"}, "name": "Management1/2"}, "Management1/1": {"state": {"type": "PORT", "name": "Management1/1"}, "name": "Management1/1"}, "xcvr_3/1": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -2.107719427326651}, "input-power": {"instant": -2.8042014228627687}, "laser-bias-current": {"instant": 6.582}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1320FE0AH", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_3/1"}, "name": "xcvr_3/1"}, "xcvr_3/2": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.9873352951037981}, "input-power": {"instant": -3.2947584221792026}, "laser-bias-current": {"instant": 6.748}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1312FE1CK", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_3/2"}, "name": "xcvr_3/2"}, "xcvr_3/3": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -3.364875295848444}, "input-power": {"instant": -3.917949922956736}, "laser-bias-current": {"instant": 5.47}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN0ED318049", "part-no": "SFP10GSRL-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_3/3"}, "name": "xcvr_3/3"}, "xcvr_3/5": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -2.7646223846794316}, "input-power": {"instant": -3.355460714188423}, "laser-bias-current": {"instant": 5.756}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN1017A3652", "part-no": "SFP10GSRL-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_3/5"}, "name": "xcvr_3/5"}, "Ethernet5/29/1": {"state": {"type": "PORT", "name": "Ethernet5/29/1"}, "name": "Ethernet5/29/1"}, "Ethernet3/21": {"state": {"type": "PORT", "name": "Ethernet3/21"}, "name": "Ethernet3/21"}, "Ethernet5/27/1": {"state": {"type": "PORT", "name": "Ethernet5/27/1"}, "name": "Ethernet5/27/1"}, "Ethernet5/30/1": {"state": {"type": "PORT", "name": "Ethernet5/30/1"}, "name": "Ethernet5/30/1"}, "Supervisor1": {"state": {"mfg-name": "Arista Networks", "version": "01.04", "name": "Supervisor1", "serial-no": "JPE14044652", "part-no": "DCS-7500E-SUP", "type": "LINECARD"}, "name": "Supervisor1", "subcomponents": {"subcomponent": {"TempSensor1/11": {"state": {"name": "TempSensor1/11"}, "name": "TempSensor1/11"}, "TempSensor1/10": {"state": {"name": "TempSensor1/10"}, "name": "TempSensor1/10"}, "Management1/2": {"state": {"name": "Management1/2"}, "name": "Management1/2"}, "Management1/1": {"state": {"name": "Management1/1"}, "name": "Management1/1"}, "TempSensor1/9": {"state": {"name": "TempSensor1/9"}, "name": "TempSensor1/9"}, "TempSensor1/8": {"state": {"name": "TempSensor1/8"}, "name": "TempSensor1/8"}, "TempSensor1/1": {"state": {"name": "TempSensor1/1"}, "name": "TempSensor1/1"}, "TempSensor1/3": {"state": {"name": "TempSensor1/3"}, "name": "TempSensor1/3"}, "TempSensor1/2": {"state": {"name": "TempSensor1/2"}, "name": "TempSensor1/2"}, "TempSensor1/5": {"state": {"name": "TempSensor1/5"}, "name": "TempSensor1/5"}, "TempSensor1/4": {"state": {"name": "TempSensor1/4"}, "name": "TempSensor1/4"}, "TempSensor1/7": {"state": {"name": "TempSensor1/7"}, "name": "TempSensor1/7"}, "TempSensor1/6": {"state": {"name": "TempSensor1/6"}, "name": "TempSensor1/6"}}}}, "Supervisor2": {"state": {"mfg-name": "Arista Networks", "version": "01.04", "name": "Supervisor2", "serial-no": "JPE13362385", "part-no": "DCS-7500E-SUP", "type": "LINECARD"}, "name": "Supervisor2", "subcomponents": {"subcomponent": {"TempSensor2/6": {"state": {"name": "TempSensor2/6"}, "name": "TempSensor2/6"}, "TempSensor2/7": {"state": {"name": "TempSensor2/7"}, "name": "TempSensor2/7"}, "TempSensor2/4": {"state": {"name": "TempSensor2/4"}, "name": "TempSensor2/4"}, "TempSensor2/5": {"state": {"name": "TempSensor2/5"}, "name": "TempSensor2/5"}, "TempSensor2/2": {"state": {"name": "TempSensor2/2"}, "name": "TempSensor2/2"}, "TempSensor2/3": {"state": {"name": "TempSensor2/3"}, "name": "TempSensor2/3"}, "TempSensor2/1": {"state": {"name": "TempSensor2/1"}, "name": "TempSensor2/1"}, "Management2/1": {"state": {"name": "Management2/1"}, "name": "Management2/1"}, "TempSensor2/8": {"state": {"name": "TempSensor2/8"}, "name": "TempSensor2/8"}, "TempSensor2/9": {"state": {"name": "TempSensor2/9"}, "name": "TempSensor2/9"}, "TempSensor2/11": {"state": {"name": "TempSensor2/11"}, "name": "TempSensor2/11"}, "Management2/2": {"state": {"name": "Management2/2"}, "name": "Management2/2"}, "TempSensor2/10": {"state": {"name": "TempSensor2/10"}, "name": "TempSensor2/10"}}}}, "Ethernet5/31/1": {"state": {"type": "PORT", "name": "Ethernet5/31/1"}, "name": "Ethernet5/31/1"}, "fan_3": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_3"}, "name": "fan_3"}, "fan_2": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_2"}, "name": "fan_2"}, "fan_1": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_1"}, "name": "fan_1"}, "Ethernet5/25/1": {"state": {"type": "PORT", "name": "Ethernet5/25/1"}, "name": "Ethernet5/25/1"}, "fan_6": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_6"}, "name": "fan_6"}, "fan_5": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_5"}, "name": "fan_5"}, "fan_4": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_4"}, "name": "fan_4"}, "Ethernet6/3/1": {"state": {"type": "PORT", "name": "Ethernet6/3/1"}, "name": "Ethernet6/3/1", "subcomponents": {"subcomponent": {"xcvr_6/3": {"state": {"name": "xcvr_6/3"}, "name": "xcvr_6/3"}}}}, "Ethernet6/31/1": {"state": {"type": "PORT", "name": "Ethernet6/31/1"}, "name": "Ethernet6/31/1", "subcomponents": {"subcomponent": {"xcvr_6/31": {"state": {"name": "xcvr_6/31"}, "name": "xcvr_6/31"}}}}, "Ethernet3/6": {"state": {"type": "PORT", "name": "Ethernet3/6"}, "name": "Ethernet3/6"}, "Ethernet5/24/1": {"state": {"type": "PORT", "name": "Ethernet5/24/1"}, "name": "Ethernet5/24/1"}, "Ethernet5/23/1": {"state": {"type": "PORT", "name": "Ethernet5/23/1"}, "name": "Ethernet5/23/1"}, "Ethernet4/42": {"state": {"type": "PORT", "name": "Ethernet4/42"}, "name": "Ethernet4/42"}, "Ethernet4/43": {"state": {"type": "PORT", "name": "Ethernet4/43"}, "name": "Ethernet4/43"}, "Ethernet4/40": {"state": {"type": "PORT", "name": "Ethernet4/40"}, "name": "Ethernet4/40"}, "Ethernet4/41": {"state": {"type": "PORT", "name": "Ethernet4/41"}, "name": "Ethernet4/41"}, "Ethernet3/49/1": {"state": {"type": "PORT", "name": "Ethernet3/49/1"}, "name": "Ethernet3/49/1", "subcomponents": {"subcomponent": {"xcvr_3/49": {"state": {"name": "xcvr_3/49"}, "name": "xcvr_3/49"}}}}, "Ethernet4/47": {"state": {"type": "PORT", "name": "Ethernet4/47"}, "name": "Ethernet4/47"}, "Ethernet4/44": {"state": {"type": "PORT", "name": "Ethernet4/44"}, "name": "Ethernet4/44"}, "Ethernet4/45": {"state": {"type": "PORT", "name": "Ethernet4/45"}, "name": "Ethernet4/45"}, "TempSensor5/6": {"state": {"type": "SENSOR", "name": "TempSensor5/6", "temperature": {"max": 79.75, "instant": 75.0}, "description": "Switch chip 2 sensor"}, "name": "TempSensor5/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet4/48": {"state": {"type": "PORT", "name": "Ethernet4/48"}, "name": "Ethernet4/48", "subcomponents": {"subcomponent": {"xcvr_4/48": {"state": {"name": "xcvr_4/48"}, "name": "xcvr_4/48"}}}}, "Ethernet5/22/1": {"state": {"type": "PORT", "name": "Ethernet5/22/1"}, "name": "Ethernet5/22/1"}, "Ethernet3/25": {"state": {"type": "PORT", "name": "Ethernet3/25"}, "name": "Ethernet3/25"}, "TempSensor14/1": {"state": {"type": "SENSOR", "name": "TempSensor14/1", "temperature": {"max": 49.75, "instant": 44.25}, "description": "Outlet sensor"}, "name": "TempSensor14/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor14/2": {"state": {"type": "SENSOR", "name": "TempSensor14/2", "temperature": {"max": 56.0, "instant": 50.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor14/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/4/1": {"state": {"type": "PORT", "name": "Ethernet6/4/1"}, "name": "Ethernet6/4/1", "subcomponents": {"subcomponent": {"xcvr_6/4": {"state": {"name": "xcvr_6/4"}, "name": "xcvr_6/4"}}}}, "Ethernet6/5/1": {"state": {"type": "PORT", "name": "Ethernet6/5/1"}, "name": "Ethernet6/5/1", "subcomponents": {"subcomponent": {"xcvr_6/5": {"state": {"name": "xcvr_6/5"}, "name": "xcvr_6/5"}}}}, "Ethernet3/24": {"state": {"type": "PORT", "name": "Ethernet3/24"}, "name": "Ethernet3/24"}, "Ethernet5/14/1": {"state": {"type": "PORT", "name": "Ethernet5/14/1"}, "name": "Ethernet5/14/1"}, "Linecard3": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Linecard3", "serial-no": "JPE13510257", "part-no": "7500E-72S-LC", "type": "LINECARD"}, "name": "Linecard3", "subcomponents": {"subcomponent": {"Ethernet3/21": {"state": {"name": "Ethernet3/21"}, "name": "Ethernet3/21"}, "Ethernet3/20": {"state": {"name": "Ethernet3/20"}, "name": "Ethernet3/20"}, "Ethernet3/23": {"state": {"name": "Ethernet3/23"}, "name": "Ethernet3/23"}, "Ethernet3/22": {"state": {"name": "Ethernet3/22"}, "name": "Ethernet3/22"}, "Ethernet3/25": {"state": {"name": "Ethernet3/25"}, "name": "Ethernet3/25"}, "Ethernet3/24": {"state": {"name": "Ethernet3/24"}, "name": "Ethernet3/24"}, "Ethernet3/27": {"state": {"name": "Ethernet3/27"}, "name": "Ethernet3/27"}, "Ethernet3/26": {"state": {"name": "Ethernet3/26"}, "name": "Ethernet3/26"}, "Ethernet3/29": {"state": {"name": "Ethernet3/29"}, "name": "Ethernet3/29"}, "Ethernet3/28": {"state": {"name": "Ethernet3/28"}, "name": "Ethernet3/28"}, "Ethernet3/50/1": {"state": {"name": "Ethernet3/50/1"}, "name": "Ethernet3/50/1"}, "Ethernet3/47": {"state": {"name": "Ethernet3/47"}, "name": "Ethernet3/47"}, "Ethernet3/46": {"state": {"name": "Ethernet3/46"}, "name": "Ethernet3/46"}, "Ethernet3/45": {"state": {"name": "Ethernet3/45"}, "name": "Ethernet3/45"}, "Ethernet3/44": {"state": {"name": "Ethernet3/44"}, "name": "Ethernet3/44"}, "Ethernet3/43": {"state": {"name": "Ethernet3/43"}, "name": "Ethernet3/43"}, "Ethernet3/42": {"state": {"name": "Ethernet3/42"}, "name": "Ethernet3/42"}, "Ethernet3/41": {"state": {"name": "Ethernet3/41"}, "name": "Ethernet3/41"}, "Ethernet3/40": {"state": {"name": "Ethernet3/40"}, "name": "Ethernet3/40"}, "Ethernet3/48": {"state": {"name": "Ethernet3/48"}, "name": "Ethernet3/48"}, "TempSensor3/7": {"state": {"name": "TempSensor3/7"}, "name": "TempSensor3/7"}, "TempSensor3/6": {"state": {"name": "TempSensor3/6"}, "name": "TempSensor3/6"}, "TempSensor3/5": {"state": {"name": "TempSensor3/5"}, "name": "TempSensor3/5"}, "TempSensor3/4": {"state": {"name": "TempSensor3/4"}, "name": "TempSensor3/4"}, "TempSensor3/3": {"state": {"name": "TempSensor3/3"}, "name": "TempSensor3/3"}, "TempSensor3/2": {"state": {"name": "TempSensor3/2"}, "name": "TempSensor3/2"}, "TempSensor3/1": {"state": {"name": "TempSensor3/1"}, "name": "TempSensor3/1"}, "Ethernet3/49/1": {"state": {"name": "Ethernet3/49/1"}, "name": "Ethernet3/49/1"}, "Ethernet3/36": {"state": {"name": "Ethernet3/36"}, "name": "Ethernet3/36"}, "Ethernet3/18": {"state": {"name": "Ethernet3/18"}, "name": "Ethernet3/18"}, "Ethernet3/19": {"state": {"name": "Ethernet3/19"}, "name": "Ethernet3/19"}, "Ethernet3/34": {"state": {"name": "Ethernet3/34"}, "name": "Ethernet3/34"}, "Ethernet3/35": {"state": {"name": "Ethernet3/35"}, "name": "Ethernet3/35"}, "Ethernet3/32": {"state": {"name": "Ethernet3/32"}, "name": "Ethernet3/32"}, "Ethernet3/33": {"state": {"name": "Ethernet3/33"}, "name": "Ethernet3/33"}, "Ethernet3/30": {"state": {"name": "Ethernet3/30"}, "name": "Ethernet3/30"}, "Ethernet3/31": {"state": {"name": "Ethernet3/31"}, "name": "Ethernet3/31"}, "Ethernet3/10": {"state": {"name": "Ethernet3/10"}, "name": "Ethernet3/10"}, "Ethernet3/11": {"state": {"name": "Ethernet3/11"}, "name": "Ethernet3/11"}, "Ethernet3/12": {"state": {"name": "Ethernet3/12"}, "name": "Ethernet3/12"}, "Ethernet3/13": {"state": {"name": "Ethernet3/13"}, "name": "Ethernet3/13"}, "Ethernet3/14": {"state": {"name": "Ethernet3/14"}, "name": "Ethernet3/14"}, "Ethernet3/15": {"state": {"name": "Ethernet3/15"}, "name": "Ethernet3/15"}, "Ethernet3/16": {"state": {"name": "Ethernet3/16"}, "name": "Ethernet3/16"}, "Ethernet3/17": {"state": {"name": "Ethernet3/17"}, "name": "Ethernet3/17"}, "Ethernet3/37": {"state": {"name": "Ethernet3/37"}, "name": "Ethernet3/37"}, "Ethernet3/38": {"state": {"name": "Ethernet3/38"}, "name": "Ethernet3/38"}, "Ethernet3/39": {"state": {"name": "Ethernet3/39"}, "name": "Ethernet3/39"}, "Ethernet3/6": {"state": {"name": "Ethernet3/6"}, "name": "Ethernet3/6"}, "Ethernet3/7": {"state": {"name": "Ethernet3/7"}, "name": "Ethernet3/7"}, "Ethernet3/4": {"state": {"name": "Ethernet3/4"}, "name": "Ethernet3/4"}, "Ethernet3/5": {"state": {"name": "Ethernet3/5"}, "name": "Ethernet3/5"}, "Ethernet3/2": {"state": {"name": "Ethernet3/2"}, "name": "Ethernet3/2"}, "Ethernet3/3": {"state": {"name": "Ethernet3/3"}, "name": "Ethernet3/3"}, "Ethernet3/1": {"state": {"name": "Ethernet3/1"}, "name": "Ethernet3/1"}, "Ethernet3/8": {"state": {"name": "Ethernet3/8"}, "name": "Ethernet3/8"}, "Ethernet3/9": {"state": {"name": "Ethernet3/9"}, "name": "Ethernet3/9"}}}}, "Linecard5": {"state": {"mfg-name": "Arista Networks", "version": "03.00", "name": "Linecard5", "serial-no": "JPE16030542", "part-no": "7500E-36Q-LC", "type": "LINECARD"}, "name": "Linecard5", "subcomponents": {"subcomponent": {"Ethernet5/32/1": {"state": {"name": "Ethernet5/32/1"}, "name": "Ethernet5/32/1"}, "Ethernet5/33/1": {"state": {"name": "Ethernet5/33/1"}, "name": "Ethernet5/33/1"}, "Ethernet5/1/1": {"state": {"name": "Ethernet5/1/1"}, "name": "Ethernet5/1/1"}, "Ethernet5/11/1": {"state": {"name": "Ethernet5/11/1"}, "name": "Ethernet5/11/1"}, "Ethernet5/35/1": {"state": {"name": "Ethernet5/35/1"}, "name": "Ethernet5/35/1"}, "Ethernet5/24/1": {"state": {"name": "Ethernet5/24/1"}, "name": "Ethernet5/24/1"}, "Ethernet5/15/1": {"state": {"name": "Ethernet5/15/1"}, "name": "Ethernet5/15/1"}, "Ethernet5/14/1": {"state": {"name": "Ethernet5/14/1"}, "name": "Ethernet5/14/1"}, "Ethernet5/34/1": {"state": {"name": "Ethernet5/34/1"}, "name": "Ethernet5/34/1"}, "Ethernet5/23/1": {"state": {"name": "Ethernet5/23/1"}, "name": "Ethernet5/23/1"}, "Ethernet5/7/1": {"state": {"name": "Ethernet5/7/1"}, "name": "Ethernet5/7/1"}, "Ethernet5/9/1": {"state": {"name": "Ethernet5/9/1"}, "name": "Ethernet5/9/1"}, "TempSensor5/9": {"state": {"name": "TempSensor5/9"}, "name": "TempSensor5/9"}, "Ethernet5/19/1": {"state": {"name": "Ethernet5/19/1"}, "name": "Ethernet5/19/1"}, "Ethernet5/22/1": {"state": {"name": "Ethernet5/22/1"}, "name": "Ethernet5/22/1"}, "Ethernet5/6/1": {"state": {"name": "Ethernet5/6/1"}, "name": "Ethernet5/6/1"}, "TempSensor5/4": {"state": {"name": "TempSensor5/4"}, "name": "TempSensor5/4"}, "Ethernet5/8/1": {"state": {"name": "Ethernet5/8/1"}, "name": "Ethernet5/8/1"}, "TempSensor5/6": {"state": {"name": "TempSensor5/6"}, "name": "TempSensor5/6"}, "TempSensor5/1": {"state": {"name": "TempSensor5/1"}, "name": "TempSensor5/1"}, "TempSensor5/3": {"state": {"name": "TempSensor5/3"}, "name": "TempSensor5/3"}, "TempSensor5/8": {"state": {"name": "TempSensor5/8"}, "name": "TempSensor5/8"}, "Ethernet5/21/1": {"state": {"name": "Ethernet5/21/1"}, "name": "Ethernet5/21/1"}, "Ethernet5/5/1": {"state": {"name": "Ethernet5/5/1"}, "name": "Ethernet5/5/1"}, "Ethernet5/20/1": {"state": {"name": "Ethernet5/20/1"}, "name": "Ethernet5/20/1"}, "Ethernet5/18/1": {"state": {"name": "Ethernet5/18/1"}, "name": "Ethernet5/18/1"}, "Ethernet5/4/1": {"state": {"name": "Ethernet5/4/1"}, "name": "Ethernet5/4/1"}, "TempSensor5/5": {"state": {"name": "TempSensor5/5"}, "name": "TempSensor5/5"}, "Ethernet5/12/1": {"state": {"name": "Ethernet5/12/1"}, "name": "Ethernet5/12/1"}, "Ethernet5/3/1": {"state": {"name": "Ethernet5/3/1"}, "name": "Ethernet5/3/1"}, "Ethernet5/29/1": {"state": {"name": "Ethernet5/29/1"}, "name": "Ethernet5/29/1"}, "Ethernet5/13/1": {"state": {"name": "Ethernet5/13/1"}, "name": "Ethernet5/13/1"}, "Ethernet5/2/1": {"state": {"name": "Ethernet5/2/1"}, "name": "Ethernet5/2/1"}, "TempSensor5/7": {"state": {"name": "TempSensor5/7"}, "name": "TempSensor5/7"}, "Ethernet5/28/1": {"state": {"name": "Ethernet5/28/1"}, "name": "Ethernet5/28/1"}, "Ethernet5/10/1": {"state": {"name": "Ethernet5/10/1"}, "name": "Ethernet5/10/1"}, "Ethernet5/36/1": {"state": {"name": "Ethernet5/36/1"}, "name": "Ethernet5/36/1"}, "Ethernet5/27/1": {"state": {"name": "Ethernet5/27/1"}, "name": "Ethernet5/27/1"}, "TempSensor5/11": {"state": {"name": "TempSensor5/11"}, "name": "TempSensor5/11"}, "TempSensor5/10": {"state": {"name": "TempSensor5/10"}, "name": "TempSensor5/10"}, "Ethernet5/30/1": {"state": {"name": "Ethernet5/30/1"}, "name": "Ethernet5/30/1"}, "TempSensor5/12": {"state": {"name": "TempSensor5/12"}, "name": "TempSensor5/12"}, "Ethernet5/26/1": {"state": {"name": "Ethernet5/26/1"}, "name": "Ethernet5/26/1"}, "Ethernet5/16/1": {"state": {"name": "Ethernet5/16/1"}, "name": "Ethernet5/16/1"}, "Ethernet5/31/1": {"state": {"name": "Ethernet5/31/1"}, "name": "Ethernet5/31/1"}, "TempSensor5/2": {"state": {"name": "TempSensor5/2"}, "name": "TempSensor5/2"}, "Ethernet5/25/1": {"state": {"name": "Ethernet5/25/1"}, "name": "Ethernet5/25/1"}, "Ethernet5/17/1": {"state": {"name": "Ethernet5/17/1"}, "name": "Ethernet5/17/1"}}}}, "Linecard4": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Linecard4", "serial-no": "JPE13510269", "part-no": "7500E-72S-LC", "type": "LINECARD"}, "name": "Linecard4", "subcomponents": {"subcomponent": {"Ethernet4/42": {"state": {"name": "Ethernet4/42"}, "name": "Ethernet4/42"}, "Ethernet4/14": {"state": {"name": "Ethernet4/14"}, "name": "Ethernet4/14"}, "Ethernet4/28": {"state": {"name": "Ethernet4/28"}, "name": "Ethernet4/28"}, "Ethernet4/29": {"state": {"name": "Ethernet4/29"}, "name": "Ethernet4/29"}, "Ethernet4/43": {"state": {"name": "Ethernet4/43"}, "name": "Ethernet4/43"}, "Ethernet4/20": {"state": {"name": "Ethernet4/20"}, "name": "Ethernet4/20"}, "Ethernet4/21": {"state": {"name": "Ethernet4/21"}, "name": "Ethernet4/21"}, "Ethernet4/22": {"state": {"name": "Ethernet4/22"}, "name": "Ethernet4/22"}, "Ethernet4/23": {"state": {"name": "Ethernet4/23"}, "name": "Ethernet4/23"}, "Ethernet4/24": {"state": {"name": "Ethernet4/24"}, "name": "Ethernet4/24"}, "Ethernet4/25": {"state": {"name": "Ethernet4/25"}, "name": "Ethernet4/25"}, "Ethernet4/26": {"state": {"name": "Ethernet4/26"}, "name": "Ethernet4/26"}, "Ethernet4/27": {"state": {"name": "Ethernet4/27"}, "name": "Ethernet4/27"}, "TempSensor4/4": {"state": {"name": "TempSensor4/4"}, "name": "TempSensor4/4"}, "TempSensor4/5": {"state": {"name": "TempSensor4/5"}, "name": "TempSensor4/5"}, "TempSensor4/6": {"state": {"name": "TempSensor4/6"}, "name": "TempSensor4/6"}, "TempSensor4/7": {"state": {"name": "TempSensor4/7"}, "name": "TempSensor4/7"}, "Ethernet4/46": {"state": {"name": "Ethernet4/46"}, "name": "Ethernet4/46"}, "TempSensor4/1": {"state": {"name": "TempSensor4/1"}, "name": "TempSensor4/1"}, "TempSensor4/2": {"state": {"name": "TempSensor4/2"}, "name": "TempSensor4/2"}, "TempSensor4/3": {"state": {"name": "TempSensor4/3"}, "name": "TempSensor4/3"}, "Ethernet4/48": {"state": {"name": "Ethernet4/48"}, "name": "Ethernet4/48"}, "Ethernet4/47": {"state": {"name": "Ethernet4/47"}, "name": "Ethernet4/47"}, "Ethernet4/49/1": {"state": {"name": "Ethernet4/49/1"}, "name": "Ethernet4/49/1"}, "Ethernet4/44": {"state": {"name": "Ethernet4/44"}, "name": "Ethernet4/44"}, "Ethernet4/40": {"state": {"name": "Ethernet4/40"}, "name": "Ethernet4/40"}, "Ethernet4/45": {"state": {"name": "Ethernet4/45"}, "name": "Ethernet4/45"}, "Ethernet4/13": {"state": {"name": "Ethernet4/13"}, "name": "Ethernet4/13"}, "Ethernet4/5": {"state": {"name": "Ethernet4/5"}, "name": "Ethernet4/5"}, "Ethernet4/4": {"state": {"name": "Ethernet4/4"}, "name": "Ethernet4/4"}, "Ethernet4/7": {"state": {"name": "Ethernet4/7"}, "name": "Ethernet4/7"}, "Ethernet4/6": {"state": {"name": "Ethernet4/6"}, "name": "Ethernet4/6"}, "Ethernet4/1": {"state": {"name": "Ethernet4/1"}, "name": "Ethernet4/1"}, "Ethernet4/3": {"state": {"name": "Ethernet4/3"}, "name": "Ethernet4/3"}, "Ethernet4/2": {"state": {"name": "Ethernet4/2"}, "name": "Ethernet4/2"}, "Ethernet4/50/1": {"state": {"name": "Ethernet4/50/1"}, "name": "Ethernet4/50/1"}, "Ethernet4/9": {"state": {"name": "Ethernet4/9"}, "name": "Ethernet4/9"}, "Ethernet4/8": {"state": {"name": "Ethernet4/8"}, "name": "Ethernet4/8"}, "Ethernet4/12": {"state": {"name": "Ethernet4/12"}, "name": "Ethernet4/12"}, "Ethernet4/11": {"state": {"name": "Ethernet4/11"}, "name": "Ethernet4/11"}, "Ethernet4/10": {"state": {"name": "Ethernet4/10"}, "name": "Ethernet4/10"}, "Ethernet4/39": {"state": {"name": "Ethernet4/39"}, "name": "Ethernet4/39"}, "Ethernet4/38": {"state": {"name": "Ethernet4/38"}, "name": "Ethernet4/38"}, "Ethernet4/15": {"state": {"name": "Ethernet4/15"}, "name": "Ethernet4/15"}, "Ethernet4/41": {"state": {"name": "Ethernet4/41"}, "name": "Ethernet4/41"}, "Ethernet4/17": {"state": {"name": "Ethernet4/17"}, "name": "Ethernet4/17"}, "Ethernet4/16": {"state": {"name": "Ethernet4/16"}, "name": "Ethernet4/16"}, "Ethernet4/33": {"state": {"name": "Ethernet4/33"}, "name": "Ethernet4/33"}, "Ethernet4/32": {"state": {"name": "Ethernet4/32"}, "name": "Ethernet4/32"}, "Ethernet4/31": {"state": {"name": "Ethernet4/31"}, "name": "Ethernet4/31"}, "Ethernet4/30": {"state": {"name": "Ethernet4/30"}, "name": "Ethernet4/30"}, "Ethernet4/37": {"state": {"name": "Ethernet4/37"}, "name": "Ethernet4/37"}, "Ethernet4/36": {"state": {"name": "Ethernet4/36"}, "name": "Ethernet4/36"}, "Ethernet4/35": {"state": {"name": "Ethernet4/35"}, "name": "Ethernet4/35"}, "Ethernet4/34": {"state": {"name": "Ethernet4/34"}, "name": "Ethernet4/34"}, "Ethernet4/19": {"state": {"name": "Ethernet4/19"}, "name": "Ethernet4/19"}, "Ethernet4/18": {"state": {"name": "Ethernet4/18"}, "name": "Ethernet4/18"}}}}, "Linecard6": {"state": {"mfg-name": "Arista Networks", "version": "03.00", "name": "Linecard6", "serial-no": "JPE16030547", "part-no": "7500E-36Q-LC", "type": "LINECARD"}, "name": "Linecard6", "subcomponents": {"subcomponent": {"Ethernet6/24/1": {"state": {"name": "Ethernet6/24/1"}, "name": "Ethernet6/24/1"}, "Ethernet6/15/1": {"state": {"name": "Ethernet6/15/1"}, "name": "Ethernet6/15/1"}, "Ethernet6/33/1": {"state": {"name": "Ethernet6/33/1"}, "name": "Ethernet6/33/1"}, "TempSensor6/10": {"state": {"name": "TempSensor6/10"}, "name": "TempSensor6/10"}, "TempSensor6/11": {"state": {"name": "TempSensor6/11"}, "name": "TempSensor6/11"}, "TempSensor6/12": {"state": {"name": "TempSensor6/12"}, "name": "TempSensor6/12"}, "Ethernet6/14/1": {"state": {"name": "Ethernet6/14/1"}, "name": "Ethernet6/14/1"}, "Ethernet6/18/1": {"state": {"name": "Ethernet6/18/1"}, "name": "Ethernet6/18/1"}, "Ethernet6/22/1": {"state": {"name": "Ethernet6/22/1"}, "name": "Ethernet6/22/1"}, "Ethernet6/31/1": {"state": {"name": "Ethernet6/31/1"}, "name": "Ethernet6/31/1"}, "Ethernet6/35/1": {"state": {"name": "Ethernet6/35/1"}, "name": "Ethernet6/35/1"}, "Ethernet6/23/1": {"state": {"name": "Ethernet6/23/1"}, "name": "Ethernet6/23/1"}, "Ethernet6/6/1": {"state": {"name": "Ethernet6/6/1"}, "name": "Ethernet6/6/1"}, "Ethernet6/30/1": {"state": {"name": "Ethernet6/30/1"}, "name": "Ethernet6/30/1"}, "Ethernet6/34/1": {"state": {"name": "Ethernet6/34/1"}, "name": "Ethernet6/34/1"}, "Ethernet6/1/1": {"state": {"name": "Ethernet6/1/1"}, "name": "Ethernet6/1/1"}, "Ethernet6/19/1": {"state": {"name": "Ethernet6/19/1"}, "name": "Ethernet6/19/1"}, "Ethernet6/13/1": {"state": {"name": "Ethernet6/13/1"}, "name": "Ethernet6/13/1"}, "Ethernet6/2/1": {"state": {"name": "Ethernet6/2/1"}, "name": "Ethernet6/2/1"}, "Ethernet6/36/1": {"state": {"name": "Ethernet6/36/1"}, "name": "Ethernet6/36/1"}, "Ethernet6/12/1": {"state": {"name": "Ethernet6/12/1"}, "name": "Ethernet6/12/1"}, "Ethernet6/3/1": {"state": {"name": "Ethernet6/3/1"}, "name": "Ethernet6/3/1"}, "Ethernet6/7/1": {"state": {"name": "Ethernet6/7/1"}, "name": "Ethernet6/7/1"}, "Ethernet6/11/1": {"state": {"name": "Ethernet6/11/1"}, "name": "Ethernet6/11/1"}, "Ethernet6/4/1": {"state": {"name": "Ethernet6/4/1"}, "name": "Ethernet6/4/1"}, "Ethernet6/20/1": {"state": {"name": "Ethernet6/20/1"}, "name": "Ethernet6/20/1"}, "Ethernet6/8/1": {"state": {"name": "Ethernet6/8/1"}, "name": "Ethernet6/8/1"}, "Ethernet6/5/1": {"state": {"name": "Ethernet6/5/1"}, "name": "Ethernet6/5/1"}, "Ethernet6/10/1": {"state": {"name": "Ethernet6/10/1"}, "name": "Ethernet6/10/1"}, "Ethernet6/25/1": {"state": {"name": "Ethernet6/25/1"}, "name": "Ethernet6/25/1"}, "Ethernet6/9/1": {"state": {"name": "Ethernet6/9/1"}, "name": "Ethernet6/9/1"}, "Ethernet6/21/1": {"state": {"name": "Ethernet6/21/1"}, "name": "Ethernet6/21/1"}, "Ethernet6/17/1": {"state": {"name": "Ethernet6/17/1"}, "name": "Ethernet6/17/1"}, "Ethernet6/16/1": {"state": {"name": "Ethernet6/16/1"}, "name": "Ethernet6/16/1"}, "TempSensor6/8": {"state": {"name": "TempSensor6/8"}, "name": "TempSensor6/8"}, "TempSensor6/9": {"state": {"name": "TempSensor6/9"}, "name": "TempSensor6/9"}, "TempSensor6/2": {"state": {"name": "TempSensor6/2"}, "name": "TempSensor6/2"}, "TempSensor6/3": {"state": {"name": "TempSensor6/3"}, "name": "TempSensor6/3"}, "TempSensor6/1": {"state": {"name": "TempSensor6/1"}, "name": "TempSensor6/1"}, "TempSensor6/6": {"state": {"name": "TempSensor6/6"}, "name": "TempSensor6/6"}, "TempSensor6/7": {"state": {"name": "TempSensor6/7"}, "name": "TempSensor6/7"}, "TempSensor6/4": {"state": {"name": "TempSensor6/4"}, "name": "TempSensor6/4"}, "TempSensor6/5": {"state": {"name": "TempSensor6/5"}, "name": "TempSensor6/5"}, "Ethernet6/28/1": {"state": {"name": "Ethernet6/28/1"}, "name": "Ethernet6/28/1"}, "Ethernet6/26/1": {"state": {"name": "Ethernet6/26/1"}, "name": "Ethernet6/26/1"}, "Ethernet6/29/1": {"state": {"name": "Ethernet6/29/1"}, "name": "Ethernet6/29/1"}, "Ethernet6/27/1": {"state": {"name": "Ethernet6/27/1"}, "name": "Ethernet6/27/1"}, "Ethernet6/32/1": {"state": {"name": "Ethernet6/32/1"}, "name": "Ethernet6/32/1"}}}}, "Ethernet3/50/1": {"state": {"type": "PORT", "name": "Ethernet3/50/1"}, "name": "Ethernet3/50/1", "subcomponents": {"subcomponent": {"xcvr_3/50": {"state": {"name": "xcvr_3/50"}, "name": "xcvr_3/50"}}}}, "TempSensor1/9": {"state": {"type": "SENSOR", "name": "TempSensor1/9", "temperature": {"max": 31.0, "instant": 20.0}, "description": "Front sensor"}, "name": "TempSensor1/9", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 75.0}, "name": "critical-threshold"}}}}, "TempSensor1/8": {"state": {"type": "SENSOR", "name": "TempSensor1/8", "temperature": {"max": 33.0, "instant": 23.0}, "description": "Rear sensor"}, "name": "TempSensor1/8", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 75.0}, "name": "critical-threshold"}}}}, "TempSensor1/1": {"state": {"type": "SENSOR", "name": "TempSensor1/1", "temperature": {"max": 50.0, "instant": 33.0}, "description": "Digital Temperature Sensor on cpu0"}, "name": "TempSensor1/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor1/3": {"state": {"type": "SENSOR", "name": "TempSensor1/3", "temperature": {"max": 44.0, "instant": 27.0}, "description": "Digital Temperature Sensor on cpu2"}, "name": "TempSensor1/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor1/2": {"state": {"type": "SENSOR", "name": "TempSensor1/2", "temperature": {"max": 50.0, "instant": 30.0}, "description": "Digital Temperature Sensor on cpu1"}, "name": "TempSensor1/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor1/5": {"state": {"type": "SENSOR", "name": "TempSensor1/5", "temperature": {"max": 38.0, "instant": 28.0}, "description": "Supervisor temp sensor"}, "name": "TempSensor1/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 85.0}, "name": "critical-threshold"}}}}, "TempSensor1/4": {"state": {"type": "SENSOR", "name": "TempSensor1/4", "temperature": {"max": 43.0, "instant": 29.0}, "description": "Digital Temperature Sensor on cpu3"}, "name": "TempSensor1/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor1/7": {"state": {"type": "SENSOR", "name": "TempSensor1/7", "temperature": {"max": 57.0, "instant": 44.0}, "description": "PlxFc sensor"}, "name": "TempSensor1/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 103.0}, "name": "critical-threshold"}}}}, "TempSensor1/6": {"state": {"type": "SENSOR", "name": "TempSensor1/6", "temperature": {"max": 57.0, "instant": 46.0}, "description": "PlxLc sensor"}, "name": "TempSensor1/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 103.0}, "name": "critical-threshold"}}}}, "Ethernet4/28": {"state": {"type": "PORT", "name": "Ethernet4/28"}, "name": "Ethernet4/28"}, "TempSensor2/7": {"state": {"type": "SENSOR", "name": "TempSensor2/7", "temperature": {"max": 60.0, "instant": 50.0}, "description": "PlxFc sensor"}, "name": "TempSensor2/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 103.0}, "name": "critical-threshold"}}}}, "TempSensor2/4": {"state": {"type": "SENSOR", "name": "TempSensor2/4", "temperature": {"max": 53.0, "instant": 35.0}, "description": "Digital Temperature Sensor on cpu3"}, "name": "TempSensor2/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor2/5": {"state": {"type": "SENSOR", "name": "TempSensor2/5", "temperature": {"max": 37.0, "instant": 29.0}, "description": "Supervisor temp sensor"}, "name": "TempSensor2/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 85.0}, "name": "critical-threshold"}}}}, "TempSensor2/2": {"state": {"type": "SENSOR", "name": "TempSensor2/2", "temperature": {"max": 51.0, "instant": 30.0}, "description": "Digital Temperature Sensor on cpu1"}, "name": "TempSensor2/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor2/3": {"state": {"type": "SENSOR", "name": "TempSensor2/3", "temperature": {"max": 54.0, "instant": 33.0}, "description": "Digital Temperature Sensor on cpu2"}, "name": "TempSensor2/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor2/1": {"state": {"type": "SENSOR", "name": "TempSensor2/1", "temperature": {"max": 59.0, "instant": 37.0}, "description": "Digital Temperature Sensor on cpu0"}, "name": "TempSensor2/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/1/1": {"state": {"type": "PORT", "name": "Ethernet6/1/1"}, "name": "Ethernet6/1/1", "subcomponents": {"subcomponent": {"xcvr_6/1": {"state": {"name": "xcvr_6/1"}, "name": "xcvr_6/1"}}}}, "Ethernet4/21": {"state": {"type": "PORT", "name": "Ethernet4/21"}, "name": "Ethernet4/21"}, "TempSensor3/5": {"state": {"type": "SENSOR", "name": "TempSensor3/5", "temperature": {"max": 32.0, "instant": 23.0}, "description": "Inlet sensor"}, "name": "TempSensor3/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "Ethernet4/23": {"state": {"type": "PORT", "name": "Ethernet4/23"}, "name": "Ethernet4/23"}, "Ethernet4/24": {"state": {"type": "PORT", "name": "Ethernet4/24"}, "name": "Ethernet4/24"}, "Ethernet4/25": {"state": {"type": "PORT", "name": "Ethernet4/25"}, "name": "Ethernet4/25"}, "TempSensor3/1": {"state": {"type": "SENSOR", "name": "TempSensor3/1", "temperature": {"max": 46.0, "instant": 39.0}, "description": "Board sensor"}, "name": "TempSensor3/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet4/27": {"state": {"type": "PORT", "name": "Ethernet4/27"}, "name": "Ethernet4/27"}, "xcvr_6/15": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3786028215286006}, "input-power": {"instant": 3.5360852070863924}, "laser-bias-current": {"instant": 40.972}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4388875810927493}, "input-power": {"instant": 3.1494108669298315}, "laser-bias-current": {"instant": 38.976}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.3649860815669923}, "input-power": {"instant": 3.180842140032647}, "laser-bias-current": {"instant": 38.538000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5140049803561784}, "input-power": {"instant": 3.2166055684867034}, "laser-bias-current": {"instant": 34.358000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA161900940", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/15"}, "name": "xcvr_6/15"}, "xcvr_6/14": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3506901382344783}, "input-power": {"instant": 2.803279187476755}, "laser-bias-current": {"instant": 47.794000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4154383422065298}, "input-power": {"instant": 3.1026836663244772}, "laser-bias-current": {"instant": 44.552}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5066435352956065}, "input-power": {"instant": 3.0713219065578024}, "laser-bias-current": {"instant": 44.188}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5484984152074421}, "input-power": {"instant": 2.441781250225441}, "laser-bias-current": {"instant": 35.502}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100059", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/14"}, "name": "xcvr_6/14"}, "xcvr_6/17": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.2182237675218488}, "input-power": {"instant": 0.3124683623267499}, "laser-bias-current": {"instant": 46.978}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4528965905414637}, "input-power": {"instant": 1.546065392836229}, "laser-bias-current": {"instant": 45.652}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.042138841993232}, "input-power": {"instant": 1.0274233614457007}, "laser-bias-current": {"instant": 45.816}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.9725730969341972}, "input-power": {"instant": 0.9729202409189597}, "laser-bias-current": {"instant": 48.864000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100393", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/17"}, "name": "xcvr_6/17"}, "xcvr_6/16": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 3.047274293836333}, "input-power": {"instant": 2.6601990885349824}, "laser-bias-current": {"instant": 39.21}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4326468201122067}, "input-power": {"instant": 2.4765417581902405}, "laser-bias-current": {"instant": 40.79}}}, "2": {"state": {"index": 2, "output-power": {"instant": 2.675002593932656}, "input-power": {"instant": 2.572944983622567}, "laser-bias-current": {"instant": 40.754}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.6184695952851902}, "input-power": {"instant": 2.4770328193417157}, "laser-bias-current": {"instant": 70.718}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH1603000AW", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/16"}, "name": "xcvr_6/16"}, "TempSensor5/9": {"state": {"type": "SENSOR", "name": "TempSensor5/9", "temperature": {"max": 74.25, "instant": 69.0}, "description": "Switch chip 4 sensor"}, "name": "TempSensor5/9", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "xcvr_6/10": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.7017367380627135}, "input-power": {"instant": 2.3979981844709863}, "laser-bias-current": {"instant": 38.048}}}, "1": {"state": {"index": 1, "output-power": {"instant": 2.5051758561048487}, "input-power": {"instant": 1.8092831999399106}, "laser-bias-current": {"instant": 36.428}}}, "2": {"state": {"index": 2, "output-power": {"instant": 2.5212455250564414}, "input-power": {"instant": 2.218834917852406}, "laser-bias-current": {"instant": 35.962}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.3334726558624288}, "input-power": {"instant": 2.9205660462146854}, "laser-bias-current": {"instant": 39.772}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH1605000G7", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/10"}, "name": "xcvr_6/10"}, "TempSensor4/2": {"state": {"type": "SENSOR", "name": "TempSensor4/2", "temperature": {"max": 45.0, "instant": 36.0}, "description": "Switch chip 1 sensor"}, "name": "TempSensor4/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor4/3": {"state": {"type": "SENSOR", "name": "TempSensor4/3", "temperature": {"max": 45.0, "instant": 37.0}, "description": "Switch chip 2 sensor"}, "name": "TempSensor4/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor5/5": {"state": {"type": "SENSOR", "name": "TempSensor5/5", "temperature": {"max": 56.75, "instant": 50.75}, "description": "Switch chip 1 sensor"}, "name": "TempSensor5/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor5/4": {"state": {"type": "SENSOR", "name": "TempSensor5/4", "temperature": {"max": 72.0, "instant": 67.0}, "description": "Board sensor"}, "name": "TempSensor5/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor5/7": {"state": {"type": "SENSOR", "name": "TempSensor5/7", "temperature": {"max": 69.0, "instant": 63.0}, "description": "Board sensor"}, "name": "TempSensor5/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor15/2": {"state": {"type": "SENSOR", "name": "TempSensor15/2", "temperature": {"max": 58.0, "instant": 52.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor15/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor5/1": {"state": {"type": "SENSOR", "name": "TempSensor5/1", "temperature": {"max": 46.0, "instant": 40.0}, "description": "Inlet sensor"}, "name": "TempSensor5/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "xcvr_6/18": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3580028330211125}, "input-power": {"instant": 1.744668588860181}, "laser-bias-current": {"instant": 41.21}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5887489845599667}, "input-power": {"instant": 2.3182625864728124}, "laser-bias-current": {"instant": 37.286}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.582720046520838}, "input-power": {"instant": 1.9337508061569908}, "laser-bias-current": {"instant": 38.732}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5736609176227034}, "input-power": {"instant": 2.047438326887998}, "laser-bias-current": {"instant": 34.86}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA160800021", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/18"}, "name": "xcvr_6/18"}, "TempSensor5/3": {"state": {"type": "SENSOR", "name": "TempSensor5/3", "temperature": {"max": 50.5, "instant": 45.0}, "description": "Outlet sensor"}, "name": "TempSensor5/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor5/2": {"state": {"type": "SENSOR", "name": "TempSensor5/2", "temperature": {"max": 68.75, "instant": 63.5}, "description": "Board sensor"}, "name": "TempSensor5/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet3/18": {"state": {"type": "PORT", "name": "Ethernet3/18"}, "name": "Ethernet3/18"}, "Ethernet3/19": {"state": {"type": "PORT", "name": "Ethernet3/19"}, "name": "Ethernet3/19"}, "Ethernet3/10": {"state": {"type": "PORT", "name": "Ethernet3/10"}, "name": "Ethernet3/10"}, "Ethernet3/11": {"state": {"type": "PORT", "name": "Ethernet3/11"}, "name": "Ethernet3/11"}, "Ethernet3/12": {"state": {"type": "PORT", "name": "Ethernet3/12"}, "name": "Ethernet3/12"}, "Ethernet3/13": {"state": {"type": "PORT", "name": "Ethernet3/13"}, "name": "Ethernet3/13"}, "Ethernet3/14": {"state": {"type": "PORT", "name": "Ethernet3/14"}, "name": "Ethernet3/14"}, "Ethernet3/15": {"state": {"type": "PORT", "name": "Ethernet3/15"}, "name": "Ethernet3/15"}, "Ethernet3/16": {"state": {"type": "PORT", "name": "Ethernet3/16"}, "name": "Ethernet3/16"}, "Ethernet3/17": {"state": {"type": "PORT", "name": "Ethernet3/17"}, "name": "Ethernet3/17"}, "Ethernet3/28": {"state": {"type": "PORT", "name": "Ethernet3/28"}, "name": "Ethernet3/28"}, "Ethernet6/2/1": {"state": {"type": "PORT", "name": "Ethernet6/2/1"}, "name": "Ethernet6/2/1", "subcomponents": {"subcomponent": {"xcvr_6/2": {"state": {"name": "xcvr_6/2"}, "name": "xcvr_6/2"}}}}, "TempSensor6/8": {"state": {"type": "SENSOR", "name": "TempSensor6/8", "temperature": {"max": 63.0, "instant": 56.75}, "description": "Switch chip 3 sensor"}, "name": "TempSensor6/8", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/9": {"state": {"type": "SENSOR", "name": "TempSensor6/9", "temperature": {"max": 80.25, "instant": 75.75}, "description": "Switch chip 4 sensor"}, "name": "TempSensor6/9", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/2": {"state": {"type": "SENSOR", "name": "TempSensor6/2", "temperature": {"max": 75.25, "instant": 70.5}, "description": "Board sensor"}, "name": "TempSensor6/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor6/3": {"state": {"type": "SENSOR", "name": "TempSensor6/3", "temperature": {"max": 52.75, "instant": 48.0}, "description": "Outlet sensor"}, "name": "TempSensor6/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor6/1": {"state": {"type": "SENSOR", "name": "TempSensor6/1", "temperature": {"max": 51.75, "instant": 46.25}, "description": "Inlet sensor"}, "name": "TempSensor6/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor6/6": {"state": {"type": "SENSOR", "name": "TempSensor6/6", "temperature": {"max": 83.75, "instant": 79.25}, "description": "Switch chip 2 sensor"}, "name": "TempSensor6/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/7": {"state": {"type": "SENSOR", "name": "TempSensor6/7", "temperature": {"max": 76.0, "instant": 71.0}, "description": "Board sensor"}, "name": "TempSensor6/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/4": {"state": {"type": "SENSOR", "name": "TempSensor6/4", "temperature": {"max": 76.0, "instant": 71.0}, "description": "Board sensor"}, "name": "TempSensor6/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/5": {"state": {"type": "SENSOR", "name": "TempSensor6/5", "temperature": {"max": 60.5, "instant": 54.75}, "description": "Switch chip 1 sensor"}, "name": "TempSensor6/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Management2/1": {"state": {"type": "PORT", "name": "Management2/1"}, "name": "Management2/1"}, "TempSensor6/10": {"state": {"type": "SENSOR", "name": "TempSensor6/10", "temperature": {"max": 75.0, "instant": 70.0}, "description": "Board sensor"}, "name": "TempSensor6/10", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/11": {"state": {"type": "SENSOR", "name": "TempSensor6/11", "temperature": {"max": 60.75, "instant": 55.0}, "description": "Switch chip 5 sensor"}, "name": "TempSensor6/11", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/12": {"state": {"type": "SENSOR", "name": "TempSensor6/12", "temperature": {"max": 81.5, "instant": 77.25}, "description": "Switch chip 6 sensor"}, "name": "TempSensor6/12", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "xcvr_5/18": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5094055396547734}, "input-power": {"instant": -0.09616741093766645}, "laser-bias-current": {"instant": 34.182}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5781928441729765}, "input-power": {"instant": 0.4898530257071121}, "laser-bias-current": {"instant": 29.256}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5688216443937675}, "input-power": {"instant": 0.4194507214526366}, "laser-bias-current": {"instant": 30.758}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4764541250174235}, "input-power": {"instant": 1.0428220709443803}, "laser-bias-current": {"instant": 27.16}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163600360", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/18"}, "name": "xcvr_5/18"}, "Management2/2": {"state": {"type": "PORT", "name": "Management2/2"}, "name": "Management2/2"}, "xcvr_5/10": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3385812520333484}, "input-power": {"instant": -0.038387066319929275}, "laser-bias-current": {"instant": 46.822}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4338956899465582}, "input-power": {"instant": 0.35629827790438995}, "laser-bias-current": {"instant": 45.212}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4807797676250578}, "input-power": {"instant": 0.44265299915319467}, "laser-bias-current": {"instant": 42.438}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.546065392836229}, "input-power": {"instant": -0.9210516458371698}, "laser-bias-current": {"instant": 36.884}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163100576", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/10"}, "name": "xcvr_5/10"}, "xcvr_5/11": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.4968088248293832}, "input-power": {"instant": 2.168517832843797}, "laser-bias-current": {"instant": 51.994}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5378438646936976}, "input-power": {"instant": 1.8627810344536755}, "laser-bias-current": {"instant": 49.88}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5011142512878184}, "input-power": {"instant": 1.1750329942923088}, "laser-bias-current": {"instant": 49.22}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.2865257363311846}, "input-power": {"instant": 0.5238609538937489}, "laser-bias-current": {"instant": 48.918}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800411", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/11"}, "name": "xcvr_5/11"}, "xcvr_5/12": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5384534008096518}, "input-power": {"instant": 1.3950127473591012}, "laser-bias-current": {"instant": 35.52}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4612803567823818}, "input-power": {"instant": 1.2414542506165382}, "laser-bias-current": {"instant": 41.484}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5509300753040245}, "input-power": {"instant": 1.250581511720732}, "laser-bias-current": {"instant": 36.92}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.411674686462323}, "input-power": {"instant": 0.7401144600894494}, "laser-bias-current": {"instant": 46.574}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA160900525", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/12"}, "name": "xcvr_5/12"}, "xcvr_5/13": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.7554080401676808}, "input-power": {"instant": 0.21891873919109184}, "laser-bias-current": {"instant": 49.952}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.8469143081759887}, "input-power": {"instant": 0.8703566480566005}, "laser-bias-current": {"instant": 51.316}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.8087105165054362}, "input-power": {"instant": -0.5680236993107357}, "laser-bias-current": {"instant": 49.146}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.69527489553293}, "input-power": {"instant": -1.8601892436352818}, "laser-bias-current": {"instant": 45.578}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800401", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/13"}, "name": "xcvr_5/13"}, "xcvr_6/28": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -0.27612000892527355}, "input-power": {"instant": 3.1371961949509286}, "laser-bias-current": {"instant": 48.892}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.1132973670415014}, "input-power": {"instant": 2.9587484521737917}, "laser-bias-current": {"instant": 45.128}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.4473569745050687}, "input-power": {"instant": 3.0196272647336286}, "laser-bias-current": {"instant": 42.996}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.6284511327705067}, "input-power": {"instant": 3.095450032954359}, "laser-bias-current": {"instant": 40.910000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163600368", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/28"}, "name": "xcvr_6/28"}, "xcvr_6/33": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.084973713482591}, "input-power": {"instant": 2.496385455404173}, "laser-bias-current": {"instant": 55.446}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.825002473791999}, "input-power": {"instant": 2.5358028956218304}, "laser-bias-current": {"instant": 48.926}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.8161495172896114}, "input-power": {"instant": 2.2561938133339954}, "laser-bias-current": {"instant": 48.068}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.7926446433902532}, "input-power": {"instant": 2.488311928079616}, "laser-bias-current": {"instant": 46.042}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800402", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/33"}, "name": "xcvr_6/33"}, "xcvr_6/32": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.781132523146316}, "input-power": {"instant": 2.625934580260507}, "laser-bias-current": {"instant": 31.912}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.901635516307052}, "input-power": {"instant": 2.586851626074722}, "laser-bias-current": {"instant": 31.464000000000002}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.8452108585291116}, "input-power": {"instant": 2.255677134394709}, "laser-bias-current": {"instant": 34.724000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.777384504017192}, "input-power": {"instant": 1.8934992433919762}, "laser-bias-current": {"instant": 35.676}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800430", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/32"}, "name": "xcvr_6/32"}, "xcvr_6/31": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.7376882313664987}, "input-power": {"instant": 3.120291800255357}, "laser-bias-current": {"instant": 38.77}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.7105328755937599}, "input-power": {"instant": 2.910356747682661}, "laser-bias-current": {"instant": 41.688}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.7403071803802561}, "input-power": {"instant": 3.134242671691929}, "laser-bias-current": {"instant": 43.602000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.7940815151383571}, "input-power": {"instant": 3.3118426658608335}, "laser-bias-current": {"instant": 32.498}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800408", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/31"}, "name": "xcvr_6/31"}, "xcvr_6/30": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.280436738264572}, "input-power": {"instant": 2.946645895001745}, "laser-bias-current": {"instant": 52.36}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.6932168368183698}, "input-power": {"instant": 3.577252684006318}, "laser-bias-current": {"instant": 47.318}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.2652102554341216}, "input-power": {"instant": 3.539546793717099}, "laser-bias-current": {"instant": 51.262}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.7295302754635467}, "input-power": {"instant": 2.6670196688408776}, "laser-bias-current": {"instant": 42.924}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800359", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/30"}, "name": "xcvr_6/30"}, "TempSensor2/8": {"state": {"type": "SENSOR", "name": "TempSensor2/8", "temperature": {"max": 33.0, "instant": 24.0}, "description": "Rear sensor"}, "name": "TempSensor2/8", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 75.0}, "name": "critical-threshold"}}}}, "xcvr_5/2": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3436838460337874}, "input-power": {"instant": 2.7468884223755863}, "laser-bias-current": {"instant": 47.196}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.9516935143175509}, "input-power": {"instant": 2.3646168162681525}, "laser-bias-current": {"instant": 47.316}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.9843604534036299}, "input-power": {"instant": 2.5056636904012386}, "laser-bias-current": {"instant": 50.31}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.7302145435973895}, "input-power": {"instant": 2.5671774597748698}, "laser-bias-current": {"instant": 46.730000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153500549", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/2"}, "name": "xcvr_5/2"}, "xcvr_6/29": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.2768778753985055}, "input-power": {"instant": 3.313665517857811}, "laser-bias-current": {"instant": 51.664}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.8303654241196456}, "input-power": {"instant": 3.4242268082220617}, "laser-bias-current": {"instant": 52.066}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.28571252692537463}, "input-power": {"instant": 3.2182618376850325}, "laser-bias-current": {"instant": 52.114000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5384534008096518}, "input-power": {"instant": 2.537982298682495}, "laser-bias-current": {"instant": 47.94}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800357", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/29"}, "name": "xcvr_6/29"}, "Ethernet3/36": {"state": {"type": "PORT", "name": "Ethernet3/36"}, "name": "Ethernet3/36", "subcomponents": {"subcomponent": {"xcvr_3/36": {"state": {"name": "xcvr_3/36"}, "name": "xcvr_3/36"}}}}, "Ethernet3/37": {"state": {"type": "PORT", "name": "Ethernet3/37"}, "name": "Ethernet3/37"}, "Ethernet3/34": {"state": {"type": "PORT", "name": "Ethernet3/34"}, "name": "Ethernet3/34", "subcomponents": {"subcomponent": {"xcvr_3/34": {"state": {"name": "xcvr_3/34"}, "name": "xcvr_3/34"}}}}, "Ethernet3/35": {"state": {"type": "PORT", "name": "Ethernet3/35"}, "name": "Ethernet3/35", "subcomponents": {"subcomponent": {"xcvr_3/35": {"state": {"name": "xcvr_3/35"}, "name": "xcvr_3/35"}}}}, "Ethernet3/32": {"state": {"type": "PORT", "name": "Ethernet3/32"}, "name": "Ethernet3/32"}, "Ethernet3/33": {"state": {"type": "PORT", "name": "Ethernet3/33"}, "name": "Ethernet3/33"}, "Ethernet3/30": {"state": {"type": "PORT", "name": "Ethernet3/30"}, "name": "Ethernet3/30"}, "Ethernet3/31": {"state": {"type": "PORT", "name": "Ethernet3/31"}, "name": "Ethernet3/31"}, "Ethernet6/8/1": {"state": {"type": "PORT", "name": "Ethernet6/8/1"}, "name": "Ethernet6/8/1", "subcomponents": {"subcomponent": {"xcvr_6/8": {"state": {"name": "xcvr_6/8"}, "name": "xcvr_6/8"}}}}, "Ethernet3/38": {"state": {"type": "PORT", "name": "Ethernet3/38"}, "name": "Ethernet3/38"}, "Ethernet3/39": {"state": {"type": "PORT", "name": "Ethernet3/39"}, "name": "Ethernet3/39"}, "Ethernet6/9/1": {"state": {"type": "PORT", "name": "Ethernet6/9/1"}, "name": "Ethernet6/9/1", "subcomponents": {"subcomponent": {"xcvr_6/9": {"state": {"name": "xcvr_6/9"}, "name": "xcvr_6/9"}}}}, "Ethernet5/9/1": {"state": {"type": "PORT", "name": "Ethernet5/9/1"}, "name": "Ethernet5/9/1", "subcomponents": {"subcomponent": {"xcvr_5/9": {"state": {"name": "xcvr_5/9"}, "name": "xcvr_5/9"}}}}, "Ethernet5/19/1": {"state": {"type": "PORT", "name": "Ethernet5/19/1"}, "name": "Ethernet5/19/1"}, "TempSensor5/11": {"state": {"type": "SENSOR", "name": "TempSensor5/11", "temperature": {"max": 51.75, "instant": 45.25}, "description": "Switch chip 5 sensor"}, "name": "TempSensor5/11", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor5/10": {"state": {"type": "SENSOR", "name": "TempSensor5/10", "temperature": {"max": 67.0, "instant": 62.0}, "description": "Board sensor"}, "name": "TempSensor5/10", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "xcvr_3/36": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.3900356324280416}, "input-power": {"instant": -5.476001540885584}, "laser-bias-current": {"instant": 26.22}}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN0FD692787", "part-no": "SFP10G-LR-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_3/36"}, "name": "xcvr_3/36"}, "TempSensor5/12": {"state": {"type": "SENSOR", "name": "TempSensor5/12", "temperature": {"max": 73.75, "instant": 68.25}, "description": "Switch chip 6 sensor"}, "name": "TempSensor5/12", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet4/26": {"state": {"type": "PORT", "name": "Ethernet4/26"}, "name": "Ethernet4/26"}, "xcvr_4/50": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}, "1": {"state": {"index": 1, "output-power": {"instant": -0.6278310913729435}, "input-power": {"instant": 0.06337660374550858}, "laser-bias-current": {"instant": 5.384}}}, "2": {"state": {"index": 2, "output-power": {"instant": -0.34046110897937076}, "input-power": {"instant": -0.22688026603074007}, "laser-bias-current": {"instant": 5.518}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.09972101229705377}, "input-power": {"instant": -0.25396207912967483}, "laser-bias-current": {"instant": 5.886}}}, "4": {"state": {"index": 4, "output-power": {"instant": -0.12959713020733066}, "input-power": {"instant": -0.6338573802478864}, "laser-bias-current": {"instant": 5.432}}}, "5": {"state": {"index": 5, "output-power": {"instant": 0.11189687609991505}, "input-power": {"instant": -0.33295223342125535}, "laser-bias-current": {"instant": 5.822}}}, "6": {"state": {"index": 6, "output-power": {"instant": -0.06651960076740071}, "input-power": {"instant": -1.0385974855798041}, "laser-bias-current": {"instant": 5.402}}}, "7": {"state": {"index": 7, "output-power": {"instant": 0.11824095594308748}, "input-power": {"instant": -0.24752058759319073}, "laser-bias-current": {"instant": 5.378}}}, "8": {"state": {"index": 8, "output-power": {"instant": 0.10639116736629983}, "input-power": {"instant": -0.6333548699992475}, "laser-bias-current": {"instant": 5.708}}}, "9": {"state": {"index": 9, "output-power": {"instant": -0.2489001031383875}, "input-power": {"instant": -0.24292536462819925}, "laser-bias-current": {"instant": 5.38}}}, "10": {"state": {"index": 10, "output-power": {"instant": -0.22139270735302752}, "input-power": {"instant": -0.17186237868137333}, "laser-bias-current": {"instant": 5.824}}}, "11": {"state": {"index": 11, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}}}, "state": {"ethernet-pmd": "ETH_100GBASE_SR10", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "JPE13510269", "part-no": "7500E-72S-LC", "type": "TRANSCEIVER", "name": "xcvr_4/50"}, "name": "xcvr_4/50"}, "Ethernet3/29": {"state": {"type": "PORT", "name": "Ethernet3/29"}, "name": "Ethernet3/29"}, "Ethernet4/46": {"state": {"type": "PORT", "name": "Ethernet4/46"}, "name": "Ethernet4/46"}, "TempSensorP1/2": {"state": {"type": "SENSOR", "name": "TempSensorP1/2", "temperature": {"max": 30.0, "instant": 24.875}, "description": "Power supply sensor"}, "name": "TempSensorP1/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP1/1": {"state": {"type": "SENSOR", "name": "TempSensorP1/1", "temperature": {"max": 47.5, "instant": 32.0}, "description": "Power supply sensor"}, "name": "TempSensorP1/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP2/1": {"state": {"type": "SENSOR", "name": "TempSensorP2/1", "temperature": {"max": 46.25, "instant": 31.75}, "description": "Power supply sensor"}, "name": "TempSensorP2/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "xcvr_6/24": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5527529273009977}, "input-power": {"instant": 2.9165739610218067}, "laser-bias-current": {"instant": 38.686}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5560928367891558}, "input-power": {"instant": 3.084790401617301}, "laser-bias-current": {"instant": 32.728}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5736609176227034}, "input-power": {"instant": 2.4286429614070704}, "laser-bias-current": {"instant": 37.872}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5026508697870389}, "input-power": {"instant": 2.580862843279794}, "laser-bias-current": {"instant": 29.64}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100696", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/24"}, "name": "xcvr_6/24"}, "TempSensorP2/2": {"state": {"type": "SENSOR", "name": "TempSensorP2/2", "temperature": {"max": 31.0, "instant": 24.25}, "description": "Power supply sensor"}, "name": "TempSensorP2/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP3/1": {"state": {"type": "SENSOR", "name": "TempSensorP3/1", "temperature": {"max": 48.5, "instant": 31.625}, "description": "Power supply sensor"}, "name": "TempSensorP3/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP3/2": {"state": {"type": "SENSOR", "name": "TempSensorP3/2", "temperature": {"max": 31.375, "instant": 24.375}, "description": "Power supply sensor"}, "name": "TempSensorP3/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP4/2": {"state": {"type": "SENSOR", "name": "TempSensorP4/2", "temperature": {"max": 34.375, "instant": 25.25}, "description": "Power supply sensor"}, "name": "TempSensorP4/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP4/1": {"state": {"type": "SENSOR", "name": "TempSensorP4/1", "temperature": {"max": 45.25, "instant": 31.5}, "description": "Power supply sensor"}, "name": "TempSensorP4/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "xcvr_6/25": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3296372613072682}, "input-power": {"instant": 1.4126159062208998}, "laser-bias-current": {"instant": 26.080000000000002}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5204360248765125}, "input-power": {"instant": 1.3899701403263576}, "laser-bias-current": {"instant": 28.076}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4776904626014709}, "input-power": {"instant": 1.6767171623002097}, "laser-bias-current": {"instant": 28.212}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4884934295922037}, "input-power": {"instant": 2.024883170600935}, "laser-bias-current": {"instant": 38.402}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162200388", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/25"}, "name": "xcvr_6/25"}, "Ethernet6/17/1": {"state": {"type": "PORT", "name": "Ethernet6/17/1"}, "name": "Ethernet6/17/1", "subcomponents": {"subcomponent": {"xcvr_6/17": {"state": {"name": "xcvr_6/17"}, "name": "xcvr_6/17"}}}}, "Ethernet6/6/1": {"state": {"type": "PORT", "name": "Ethernet6/6/1"}, "name": "Ethernet6/6/1", "subcomponents": {"subcomponent": {"xcvr_6/6": {"state": {"name": "xcvr_6/6"}, "name": "xcvr_6/6"}}}}, "TempSensor1/11": {"state": {"type": "SENSOR", "name": "TempSensor1/11", "temperature": {"max": 37.0, "instant": 27.0}, "description": "CPU VRM temp sensor 1"}, "name": "TempSensor1/11", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 105.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor1/10": {"state": {"type": "SENSOR", "name": "TempSensor1/10", "temperature": {"max": 37.0, "instant": 27.0}, "description": "CPU VRM temp sensor 0"}, "name": "TempSensor1/10", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 105.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet5/28/1": {"state": {"type": "PORT", "name": "Ethernet5/28/1"}, "name": "Ethernet5/28/1"}, "Ethernet4/4": {"state": {"type": "PORT", "name": "Ethernet4/4"}, "name": "Ethernet4/4", "subcomponents": {"subcomponent": {"xcvr_4/4": {"state": {"name": "xcvr_4/4"}, "name": "xcvr_4/4"}}}}, "xcvr_3/50": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}, "1": {"state": {"index": 1, "output-power": {"instant": -0.13631406429726933}, "input-power": {"instant": -0.4575749056067524}, "laser-bias-current": {"instant": 6.144}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.09620840814324794}, "input-power": {"instant": -0.17683530307934792}, "laser-bias-current": {"instant": 5.612}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.10105436281226954}, "input-power": {"instant": -0.7572071393811841}, "laser-bias-current": {"instant": 6.198}}}, "4": {"state": {"index": 4, "output-power": {"instant": -0.1430414031015781}, "input-power": {"instant": -0.2881695914383853}, "laser-bias-current": {"instant": 5.6240000000000006}}}, "5": {"state": {"index": 5, "output-power": {"instant": 0.08174184006426444}, "input-power": {"instant": -0.32405227328110353}, "laser-bias-current": {"instant": 5.586}}}, "6": {"state": {"index": 6, "output-power": {"instant": 0.13427127070696265}, "input-power": {"instant": -1.0193333935836524}, "laser-bias-current": {"instant": 5.562}}}, "7": {"state": {"index": 7, "output-power": {"instant": 0.07449044497748858}, "input-power": {"instant": -0.4730440041308315}, "laser-bias-current": {"instant": 5.488}}}, "8": {"state": {"index": 8, "output-power": {"instant": 0.35029282202367895}, "input-power": {"instant": -0.3976712687148787}, "laser-bias-current": {"instant": 5.5440000000000005}}}, "9": {"state": {"index": 9, "output-power": {"instant": 0.306401948686319}, "input-power": {"instant": -0.9049745859458458}, "laser-bias-current": {"instant": 5.622}}}, "10": {"state": {"index": 10, "output-power": {"instant": 0.31570032141100324}, "input-power": {"instant": -0.6509774167768612}, "laser-bias-current": {"instant": 5.566}}}, "11": {"state": {"index": 11, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}}}, "state": {"ethernet-pmd": "ETH_100GBASE_SR10", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "JPE13510257", "part-no": "7500E-72S-LC", "type": "TRANSCEIVER", "name": "xcvr_3/50"}, "name": "xcvr_3/50"}, "Fabric6": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric6", "serial-no": "JPE13473813", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric6", "subcomponents": {"subcomponent": {"TempSensor16/2": {"state": {"name": "TempSensor16/2"}, "name": "TempSensor16/2"}, "TempSensor16/1": {"state": {"name": "TempSensor16/1"}, "name": "TempSensor16/1"}}}}, "Fabric4": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric4", "serial-no": "JPE13492642", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric4", "subcomponents": {"subcomponent": {"TempSensor14/1": {"state": {"name": "TempSensor14/1"}, "name": "TempSensor14/1"}, "TempSensor14/2": {"state": {"name": "TempSensor14/2"}, "name": "TempSensor14/2"}}}}, "Fabric5": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric5", "serial-no": "JPE13470733", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric5", "subcomponents": {"subcomponent": {"TempSensor15/1": {"state": {"name": "TempSensor15/1"}, "name": "TempSensor15/1"}, "TempSensor15/2": {"state": {"name": "TempSensor15/2"}, "name": "TempSensor15/2"}}}}, "Fabric2": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric2", "serial-no": "JPE13470700", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric2", "subcomponents": {"subcomponent": {"TempSensor12/2": {"state": {"name": "TempSensor12/2"}, "name": "TempSensor12/2"}, "TempSensor12/1": {"state": {"name": "TempSensor12/1"}, "name": "TempSensor12/1"}}}}, "Fabric3": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric3", "serial-no": "JPE13470749", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric3", "subcomponents": {"subcomponent": {"TempSensor13/2": {"state": {"name": "TempSensor13/2"}, "name": "TempSensor13/2"}, "TempSensor13/1": {"state": {"name": "TempSensor13/1"}, "name": "TempSensor13/1"}}}}, "Fabric1": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric1", "serial-no": "JPE13470767", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric1", "subcomponents": {"subcomponent": {"TempSensor11/1": {"state": {"name": "TempSensor11/1"}, "name": "TempSensor11/1"}, "TempSensor11/2": {"state": {"name": "TempSensor11/2"}, "name": "TempSensor11/2"}}}}, "TempSensor2/10": {"state": {"type": "SENSOR", "name": "TempSensor2/10", "temperature": {"max": 37.0, "instant": 29.0}, "description": "CPU VRM temp sensor 0"}, "name": "TempSensor2/10", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 105.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor2/11": {"state": {"type": "SENSOR", "name": "TempSensor2/11", "temperature": {"max": 37.0, "instant": 29.0}, "description": "CPU VRM temp sensor 1"}, "name": "TempSensor2/11", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 105.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet6/7/1": {"state": {"type": "PORT", "name": "Ethernet6/7/1"}, "name": "Ethernet6/7/1", "subcomponents": {"subcomponent": {"xcvr_6/7": {"state": {"name": "xcvr_6/7"}, "name": "xcvr_6/7"}}}}, "Ethernet3/47": {"state": {"type": "PORT", "name": "Ethernet3/47"}, "name": "Ethernet3/47"}, "Ethernet3/46": {"state": {"type": "PORT", "name": "Ethernet3/46"}, "name": "Ethernet3/46"}, "Ethernet3/45": {"state": {"type": "PORT", "name": "Ethernet3/45"}, "name": "Ethernet3/45"}, "Ethernet3/44": {"state": {"type": "PORT", "name": "Ethernet3/44"}, "name": "Ethernet3/44"}, "Ethernet3/43": {"state": {"type": "PORT", "name": "Ethernet3/43"}, "name": "Ethernet3/43"}, "Ethernet3/42": {"state": {"type": "PORT", "name": "Ethernet3/42"}, "name": "Ethernet3/42"}, "Ethernet3/41": {"state": {"type": "PORT", "name": "Ethernet3/41"}, "name": "Ethernet3/41"}, "Ethernet3/40": {"state": {"type": "PORT", "name": "Ethernet3/40"}, "name": "Ethernet3/40"}, "Ethernet3/48": {"state": {"type": "PORT", "name": "Ethernet3/48"}, "name": "Ethernet3/48", "subcomponents": {"subcomponent": {"xcvr_3/48": {"state": {"name": "xcvr_3/48"}, "name": "xcvr_3/48"}}}}, "Ethernet5/26/1": {"state": {"type": "PORT", "name": "Ethernet5/26/1"}, "name": "Ethernet5/26/1"}, "DCS-7504": {"state": {"name": "DCS-7504", "serial-no": "HSH13485008", "part-no": "DCS-7504", "mfg-name": "Arista Networks", "version": "02.00", "type": "CHASSIS", "description": "DCS-7504 Chassis"}, "name": "DCS-7504", "subcomponents": {"subcomponent": {"powerSupply_4": {"state": {"name": "powerSupply_4"}, "name": "powerSupply_4"}, "fan_3": {"state": {"name": "fan_3"}, "name": "fan_3"}, "fan_1": {"state": {"name": "fan_1"}, "name": "fan_1"}, "powerSupply_2": {"state": {"name": "powerSupply_2"}, "name": "powerSupply_2"}, "Fabric1": {"state": {"name": "Fabric1"}, "name": "Fabric1"}, "Linecard3": {"state": {"name": "Linecard3"}, "name": "Linecard3"}, "fan_6": {"state": {"name": "fan_6"}, "name": "fan_6"}, "powerSupply_1": {"state": {"name": "powerSupply_1"}, "name": "powerSupply_1"}, "Linecard5": {"state": {"name": "Linecard5"}, "name": "Linecard5"}, "fan_4": {"state": {"name": "fan_4"}, "name": "fan_4"}, "Fabric3": {"state": {"name": "Fabric3"}, "name": "Fabric3"}, "Supervisor1": {"state": {"name": "Supervisor1"}, "name": "Supervisor1"}, "Supervisor2": {"state": {"name": "Supervisor2"}, "name": "Supervisor2"}, "powerSupply_3": {"state": {"name": "powerSupply_3"}, "name": "powerSupply_3"}, "Fabric6": {"state": {"name": "Fabric6"}, "name": "Fabric6"}, "fan_2": {"state": {"name": "fan_2"}, "name": "fan_2"}, "Fabric4": {"state": {"name": "Fabric4"}, "name": "Fabric4"}, "Fabric5": {"state": {"name": "Fabric5"}, "name": "Fabric5"}, "Fabric2": {"state": {"name": "Fabric2"}, "name": "Fabric2"}, "Linecard4": {"state": {"name": "Linecard4"}, "name": "Linecard4"}, "fan_5": {"state": {"name": "fan_5"}, "name": "fan_5"}, "Linecard6": {"state": {"name": "Linecard6"}, "name": "Linecard6"}}}}, "TempSensor2/6": {"state": {"type": "SENSOR", "name": "TempSensor2/6", "temperature": {"max": 59.0, "instant": 49.0}, "description": "PlxLc sensor"}, "name": "TempSensor2/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 103.0}, "name": "critical-threshold"}}}}, "Ethernet4/29": {"state": {"type": "PORT", "name": "Ethernet4/29"}, "name": "Ethernet4/29"}, "TempSensor16/2": {"state": {"type": "SENSOR", "name": "TempSensor16/2", "temperature": {"max": 55.0, "instant": 50.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor16/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "xcvr_3/35": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.4200450443907586}, "input-power": {"instant": -9.292235371565653}, "laser-bias-current": {"instant": 30.21}}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN0FD692786", "part-no": "SFP10G-LR-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_3/35"}, "name": "xcvr_3/35"}, "TempSensor3/7": {"state": {"type": "SENSOR", "name": "TempSensor3/7", "temperature": {"max": 35.0, "instant": 27.0}, "description": "Outlet sensor"}, "name": "TempSensor3/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor3/6": {"state": {"type": "SENSOR", "name": "TempSensor3/6", "temperature": {"max": 42.0, "instant": 35.0}, "description": "Board sensor"}, "name": "TempSensor3/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet4/22": {"state": {"type": "PORT", "name": "Ethernet4/22"}, "name": "Ethernet4/22"}, "TempSensor3/4": {"state": {"type": "SENSOR", "name": "TempSensor3/4", "temperature": {"max": 49.0, "instant": 40.0}, "description": "Switch chip 3 sensor"}, "name": "TempSensor3/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor3/3": {"state": {"type": "SENSOR", "name": "TempSensor3/3", "temperature": {"max": 47.0, "instant": 40.0}, "description": "Switch chip 2 sensor"}, "name": "TempSensor3/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor3/2": {"state": {"type": "SENSOR", "name": "TempSensor3/2", "temperature": {"max": 46.0, "instant": 37.0}, "description": "Switch chip 1 sensor"}, "name": "TempSensor3/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet6/18/1": {"state": {"type": "PORT", "name": "Ethernet6/18/1"}, "name": "Ethernet6/18/1", "subcomponents": {"subcomponent": {"xcvr_6/18": {"state": {"name": "xcvr_6/18"}, "name": "xcvr_6/18"}}}}, "TempSensor2/9": {"state": {"type": "SENSOR", "name": "TempSensor2/9", "temperature": {"max": 30.0, "instant": 21.0}, "description": "Front sensor"}, "name": "TempSensor2/9", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 75.0}, "name": "critical-threshold"}}}}, "xcvr_4/48": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XMD1018MCF6J", "part-no": "SFP-1G-T", "type": "TRANSCEIVER", "name": "xcvr_4/48"}, "name": "xcvr_4/48"}, "TempSensor4/4": {"state": {"type": "SENSOR", "name": "TempSensor4/4", "temperature": {"max": 48.0, "instant": 39.0}, "description": "Switch chip 3 sensor"}, "name": "TempSensor4/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor4/5": {"state": {"type": "SENSOR", "name": "TempSensor4/5", "temperature": {"max": 32.0, "instant": 23.0}, "description": "Inlet sensor"}, "name": "TempSensor4/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor4/6": {"state": {"type": "SENSOR", "name": "TempSensor4/6", "temperature": {"max": 41.0, "instant": 34.0}, "description": "Board sensor"}, "name": "TempSensor4/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor4/7": {"state": {"type": "SENSOR", "name": "TempSensor4/7", "temperature": {"max": 36.0, "instant": 29.0}, "description": "Outlet sensor"}, "name": "TempSensor4/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "xcvr_6/11": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5280796341906377}, "input-power": {"instant": 0.3506934442110454}, "laser-bias-current": {"instant": 38.934}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.45662470707546}, "input-power": {"instant": 0.6329582107352039}, "laser-bias-current": {"instant": 30.722}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5341848503771072}, "input-power": {"instant": 1.980244255331196}, "laser-bias-current": {"instant": 34.550000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.398161406105758}, "input-power": {"instant": 0.8753297573409347}, "laser-bias-current": {"instant": 28.23}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600154", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/11"}, "name": "xcvr_6/11"}, "Ethernet5/8/1": {"state": {"type": "PORT", "name": "Ethernet5/8/1"}, "name": "Ethernet5/8/1", "subcomponents": {"subcomponent": {"xcvr_5/8": {"state": {"name": "xcvr_5/8"}, "name": "xcvr_5/8"}}}}, "TempSensor5/8": {"state": {"type": "SENSOR", "name": "TempSensor5/8", "temperature": {"max": 53.0, "instant": 46.25}, "description": "Switch chip 3 sensor"}, "name": "TempSensor5/8", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet6/11/1": {"state": {"type": "PORT", "name": "Ethernet6/11/1"}, "name": "Ethernet6/11/1", "subcomponents": {"subcomponent": {"xcvr_6/11": {"state": {"name": "xcvr_6/11"}, "name": "xcvr_6/11"}}}}, "xcvr_6/13": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.511245900506819}, "input-power": {"instant": 2.07284205912198}, "laser-bias-current": {"instant": 38.300000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5424133016729824}, "input-power": {"instant": 1.9898680567093319}, "laser-bias-current": {"instant": 30.428}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.479853206838051}, "input-power": {"instant": 2.4467287841611007}, "laser-bias-current": {"instant": 28.652}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5198239545747416}, "input-power": {"instant": 1.8582535961296198}, "laser-bias-current": {"instant": 33.314}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100079", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/13"}, "name": "xcvr_6/13"}, "Ethernet5/5/1": {"state": {"type": "PORT", "name": "Ethernet5/5/1"}, "name": "Ethernet5/5/1", "subcomponents": {"subcomponent": {"xcvr_5/5": {"state": {"name": "xcvr_5/5"}, "name": "xcvr_5/5"}}}}, "xcvr_6/12": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.555789314769318}, "input-power": {"instant": 2.0972942801620498}, "laser-bias-current": {"instant": 35.464}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5715443990628142}, "input-power": {"instant": 1.9879450017559863}, "laser-bias-current": {"instant": 36.006}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5390628513886773}, "input-power": {"instant": 2.003579455416351}, "laser-bias-current": {"instant": 34.706}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5433266124230505}, "input-power": {"instant": 2.0650205758868534}, "laser-bias-current": {"instant": 33.56}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100055", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/12"}, "name": "xcvr_6/12"}, "Ethernet6/10/1": {"state": {"type": "PORT", "name": "Ethernet6/10/1"}, "name": "Ethernet6/10/1", "subcomponents": {"subcomponent": {"xcvr_6/10": {"state": {"name": "xcvr_6/10"}, "name": "xcvr_6/10"}}}}, "Ethernet5/4/1": {"state": {"type": "PORT", "name": "Ethernet5/4/1"}, "name": "Ethernet5/4/1", "subcomponents": {"subcomponent": {"xcvr_5/4": {"state": {"name": "xcvr_5/4"}, "name": "xcvr_5/4"}}}}, "Ethernet4/5": {"state": {"type": "PORT", "name": "Ethernet4/5"}, "name": "Ethernet4/5", "subcomponents": {"subcomponent": {"xcvr_4/5": {"state": {"name": "xcvr_4/5"}, "name": "xcvr_4/5"}}}}, "TempSensor15/1": {"state": {"type": "SENSOR", "name": "TempSensor15/1", "temperature": {"max": 50.75, "instant": 44.75}, "description": "Outlet sensor"}, "name": "TempSensor15/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet4/7": {"state": {"type": "PORT", "name": "Ethernet4/7"}, "name": "Ethernet4/7"}, "Ethernet4/6": {"state": {"type": "PORT", "name": "Ethernet4/6"}, "name": "Ethernet4/6"}, "Ethernet4/1": {"state": {"type": "PORT", "name": "Ethernet4/1"}, "name": "Ethernet4/1", "subcomponents": {"subcomponent": {"xcvr_4/1": {"state": {"name": "xcvr_4/1"}, "name": "xcvr_4/1"}}}}, "Ethernet5/3/1": {"state": {"type": "PORT", "name": "Ethernet5/3/1"}, "name": "Ethernet5/3/1", "subcomponents": {"subcomponent": {"xcvr_5/3": {"state": {"name": "xcvr_5/3"}, "name": "xcvr_5/3"}}}}, "Ethernet4/3": {"state": {"type": "PORT", "name": "Ethernet4/3"}, "name": "Ethernet4/3", "subcomponents": {"subcomponent": {"xcvr_4/3": {"state": {"name": "xcvr_4/3"}, "name": "xcvr_4/3"}}}}, "Ethernet4/2": {"state": {"type": "PORT", "name": "Ethernet4/2"}, "name": "Ethernet4/2", "subcomponents": {"subcomponent": {"xcvr_4/2": {"state": {"name": "xcvr_4/2"}, "name": "xcvr_4/2"}}}}, "Ethernet4/15": {"state": {"type": "PORT", "name": "Ethernet4/15"}, "name": "Ethernet4/15"}, "Ethernet4/50/1": {"state": {"type": "PORT", "name": "Ethernet4/50/1"}, "name": "Ethernet4/50/1", "subcomponents": {"subcomponent": {"xcvr_4/50": {"state": {"name": "xcvr_4/50"}, "name": "xcvr_4/50"}}}}, "Ethernet5/2/1": {"state": {"type": "PORT", "name": "Ethernet5/2/1"}, "name": "Ethernet5/2/1", "subcomponents": {"subcomponent": {"xcvr_5/2": {"state": {"name": "xcvr_5/2"}, "name": "xcvr_5/2"}}}}, "Ethernet4/8": {"state": {"type": "PORT", "name": "Ethernet4/8"}, "name": "Ethernet4/8"}, "Ethernet6/16/1": {"state": {"type": "PORT", "name": "Ethernet6/16/1"}, "name": "Ethernet6/16/1", "subcomponents": {"subcomponent": {"xcvr_6/16": {"state": {"name": "xcvr_6/16"}, "name": "xcvr_6/16"}}}}, "Ethernet4/39": {"state": {"type": "PORT", "name": "Ethernet4/39"}, "name": "Ethernet4/39"}, "Ethernet4/38": {"state": {"type": "PORT", "name": "Ethernet4/38"}, "name": "Ethernet4/38"}, "Ethernet4/33": {"state": {"type": "PORT", "name": "Ethernet4/33"}, "name": "Ethernet4/33"}, "Ethernet4/32": {"state": {"type": "PORT", "name": "Ethernet4/32"}, "name": "Ethernet4/32"}, "Ethernet4/31": {"state": {"type": "PORT", "name": "Ethernet4/31"}, "name": "Ethernet4/31"}, "Ethernet4/30": {"state": {"type": "PORT", "name": "Ethernet4/30"}, "name": "Ethernet4/30"}, "Ethernet4/37": {"state": {"type": "PORT", "name": "Ethernet4/37"}, "name": "Ethernet4/37"}, "Ethernet4/36": {"state": {"type": "PORT", "name": "Ethernet4/36"}, "name": "Ethernet4/36"}, "Ethernet4/35": {"state": {"type": "PORT", "name": "Ethernet4/35"}, "name": "Ethernet4/35"}, "Ethernet4/34": {"state": {"type": "PORT", "name": "Ethernet4/34"}, "name": "Ethernet4/34"}, "Ethernet6/28/1": {"state": {"type": "PORT", "name": "Ethernet6/28/1"}, "name": "Ethernet6/28/1", "subcomponents": {"subcomponent": {"xcvr_6/28": {"state": {"name": "xcvr_6/28"}, "name": "xcvr_6/28"}}}}, "Ethernet3/7": {"state": {"type": "PORT", "name": "Ethernet3/7"}, "name": "Ethernet3/7"}, "Ethernet3/4": {"state": {"type": "PORT", "name": "Ethernet3/4"}, "name": "Ethernet3/4"}, "Ethernet3/5": {"state": {"type": "PORT", "name": "Ethernet3/5"}, "name": "Ethernet3/5", "subcomponents": {"subcomponent": {"xcvr_3/5": {"state": {"name": "xcvr_3/5"}, "name": "xcvr_3/5"}}}}, "Ethernet3/2": {"state": {"type": "PORT", "name": "Ethernet3/2"}, "name": "Ethernet3/2", "subcomponents": {"subcomponent": {"xcvr_3/2": {"state": {"name": "xcvr_3/2"}, "name": "xcvr_3/2"}}}}, "Ethernet3/3": {"state": {"type": "PORT", "name": "Ethernet3/3"}, "name": "Ethernet3/3", "subcomponents": {"subcomponent": {"xcvr_3/3": {"state": {"name": "xcvr_3/3"}, "name": "xcvr_3/3"}}}}, "Ethernet3/1": {"state": {"type": "PORT", "name": "Ethernet3/1"}, "name": "Ethernet3/1", "subcomponents": {"subcomponent": {"xcvr_3/1": {"state": {"name": "xcvr_3/1"}, "name": "xcvr_3/1"}}}}, "Ethernet6/29/1": {"state": {"type": "PORT", "name": "Ethernet6/29/1"}, "name": "Ethernet6/29/1", "subcomponents": {"subcomponent": {"xcvr_6/29": {"state": {"name": "xcvr_6/29"}, "name": "xcvr_6/29"}}}}, "Ethernet3/8": {"state": {"type": "PORT", "name": "Ethernet3/8"}, "name": "Ethernet3/8"}, "Ethernet3/9": {"state": {"type": "PORT", "name": "Ethernet3/9"}, "name": "Ethernet3/9"}, "Ethernet6/24/1": {"state": {"type": "PORT", "name": "Ethernet6/24/1"}, "name": "Ethernet6/24/1", "subcomponents": {"subcomponent": {"xcvr_6/24": {"state": {"name": "xcvr_6/24"}, "name": "xcvr_6/24"}}}}, "TempSensor4/1": {"state": {"type": "SENSOR", "name": "TempSensor4/1", "temperature": {"max": 45.0, "instant": 38.0}, "description": "Board sensor"}, "name": "TempSensor4/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet6/15/1": {"state": {"type": "PORT", "name": "Ethernet6/15/1"}, "name": "Ethernet6/15/1", "subcomponents": {"subcomponent": {"xcvr_6/15": {"state": {"name": "xcvr_6/15"}, "name": "xcvr_6/15"}}}}, "xcvr_3/34": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 0.4277233749767362}, "input-power": {"instant": -6.499459064209696}, "laser-bias-current": {"instant": 43.83}}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAP1025T6009", "part-no": "SFP-10G-ER", "type": "TRANSCEIVER", "name": "xcvr_3/34"}, "name": "xcvr_3/34"}, "Ethernet5/1/1": {"state": {"type": "PORT", "name": "Ethernet5/1/1"}, "name": "Ethernet5/1/1", "subcomponents": {"subcomponent": {"xcvr_5/1": {"state": {"name": "xcvr_5/1"}, "name": "xcvr_5/1"}}}}, "Ethernet6/25/1": {"state": {"type": "PORT", "name": "Ethernet6/25/1"}, "name": "Ethernet6/25/1", "subcomponents": {"subcomponent": {"xcvr_6/25": {"state": {"name": "xcvr_6/25"}, "name": "xcvr_6/25"}}}}, "xcvr_6/21": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 2.5107826448400195}, "input-power": {"instant": 3.7171420264261767}, "laser-bias-current": {"instant": 35.388}}}, "1": {"state": {"index": 1, "output-power": {"instant": 2.873089515699725}, "input-power": {"instant": 4.219492510628786}, "laser-bias-current": {"instant": 34.752}}}, "2": {"state": {"index": 2, "output-power": {"instant": 3.2487894311199383}, "input-power": {"instant": 1.781132523146316}, "laser-bias-current": {"instant": 42.412}}}, "3": {"state": {"index": 3, "output-power": {"instant": 2.6325722701406606}, "input-power": {"instant": 3.0888441442201664}, "laser-bias-current": {"instant": 36.928}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH16070000C", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/21"}, "name": "xcvr_6/21"}, "Ethernet6/14/1": {"state": {"type": "PORT", "name": "Ethernet6/14/1"}, "name": "Ethernet6/14/1", "subcomponents": {"subcomponent": {"xcvr_6/14": {"state": {"name": "xcvr_6/14"}, "name": "xcvr_6/14"}}}}, "Ethernet6/32/1": {"state": {"type": "PORT", "name": "Ethernet6/32/1"}, "name": "Ethernet6/32/1", "subcomponents": {"subcomponent": {"xcvr_6/32": {"state": {"name": "xcvr_6/32"}, "name": "xcvr_6/32"}}}}, "Ethernet6/22/1": {"state": {"type": "PORT", "name": "Ethernet6/22/1"}, "name": "Ethernet6/22/1", "subcomponents": {"subcomponent": {"xcvr_6/22": {"state": {"name": "xcvr_6/22"}, "name": "xcvr_6/22"}}}}, "Ethernet6/35/1": {"state": {"type": "PORT", "name": "Ethernet6/35/1"}, "name": "Ethernet6/35/1"}, "Ethernet6/23/1": {"state": {"type": "PORT", "name": "Ethernet6/23/1"}, "name": "Ethernet6/23/1", "subcomponents": {"subcomponent": {"xcvr_6/23": {"state": {"name": "xcvr_6/23"}, "name": "xcvr_6/23"}}}}, "Ethernet4/10": {"state": {"type": "PORT", "name": "Ethernet4/10"}, "name": "Ethernet4/10"}, "Ethernet6/34/1": {"state": {"type": "PORT", "name": "Ethernet6/34/1"}, "name": "Ethernet6/34/1"}, "Ethernet6/19/1": {"state": {"type": "PORT", "name": "Ethernet6/19/1"}, "name": "Ethernet6/19/1", "subcomponents": {"subcomponent": {"xcvr_6/19": {"state": {"name": "xcvr_6/19"}, "name": "xcvr_6/19"}}}}, "Ethernet5/7/1": {"state": {"type": "PORT", "name": "Ethernet5/7/1"}, "name": "Ethernet5/7/1", "subcomponents": {"subcomponent": {"xcvr_5/7": {"state": {"name": "xcvr_5/7"}, "name": "xcvr_5/7"}}}}, "Ethernet6/13/1": {"state": {"type": "PORT", "name": "Ethernet6/13/1"}, "name": "Ethernet6/13/1", "subcomponents": {"subcomponent": {"xcvr_6/13": {"state": {"name": "xcvr_6/13"}, "name": "xcvr_6/13"}}}}, "Ethernet5/33/1": {"state": {"type": "PORT", "name": "Ethernet5/33/1"}, "name": "Ethernet5/33/1"}, "xcvr_6/19": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 2.2703784493022594}, "input-power": {"instant": 3.808260568363413}, "laser-bias-current": {"instant": 33.874}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.9747353501477694}, "input-power": {"instant": 5.036953728699967}, "laser-bias-current": {"instant": 31.164}}}, "2": {"state": {"index": 2, "output-power": {"instant": 2.1808890286084504}, "input-power": {"instant": 4.189307277285006}, "laser-bias-current": {"instant": 37.94}}}, "3": {"state": {"index": 3, "output-power": {"instant": 2.4154648059654837}, "input-power": {"instant": 3.306166672944384}, "laser-bias-current": {"instant": 39.498}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH16030013N", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/19"}, "name": "xcvr_6/19"}, "Ethernet5/6/1": {"state": {"type": "PORT", "name": "Ethernet5/6/1"}, "name": "Ethernet5/6/1", "subcomponents": {"subcomponent": {"xcvr_5/6": {"state": {"name": "xcvr_5/6"}, "name": "xcvr_5/6"}}}}, "Ethernet6/36/1": {"state": {"type": "PORT", "name": "Ethernet6/36/1"}, "name": "Ethernet6/36/1"}, "Ethernet6/12/1": {"state": {"type": "PORT", "name": "Ethernet6/12/1"}, "name": "Ethernet6/12/1", "subcomponents": {"subcomponent": {"xcvr_6/12": {"state": {"name": "xcvr_6/12"}, "name": "xcvr_6/12"}}}}, "Ethernet4/20": {"state": {"type": "PORT", "name": "Ethernet4/20"}, "name": "Ethernet4/20"}, "Ethernet6/20/1": {"state": {"type": "PORT", "name": "Ethernet6/20/1"}, "name": "Ethernet6/20/1", "subcomponents": {"subcomponent": {"xcvr_6/20": {"state": {"name": "xcvr_6/20"}, "name": "xcvr_6/20"}}}}, "Ethernet5/18/1": {"state": {"type": "PORT", "name": "Ethernet5/18/1"}, "name": "Ethernet5/18/1", "subcomponents": {"subcomponent": {"xcvr_5/18": {"state": {"name": "xcvr_5/18"}, "name": "xcvr_5/18"}}}}, "TempSensor16/1": {"state": {"type": "SENSOR", "name": "TempSensor16/1", "temperature": {"max": 50.25, "instant": 44.75}, "description": "Outlet sensor"}, "name": "TempSensor16/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/21/1": {"state": {"type": "PORT", "name": "Ethernet6/21/1"}, "name": "Ethernet6/21/1", "subcomponents": {"subcomponent": {"xcvr_6/21": {"state": {"name": "xcvr_6/21"}, "name": "xcvr_6/21"}}}}, "Ethernet5/12/1": {"state": {"type": "PORT", "name": "Ethernet5/12/1"}, "name": "Ethernet5/12/1", "subcomponents": {"subcomponent": {"xcvr_5/12": {"state": {"name": "xcvr_5/12"}, "name": "xcvr_5/12"}}}}, "Ethernet5/13/1": {"state": {"type": "PORT", "name": "Ethernet5/13/1"}, "name": "Ethernet5/13/1", "subcomponents": {"subcomponent": {"xcvr_5/13": {"state": {"name": "xcvr_5/13"}, "name": "xcvr_5/13"}}}}, "Ethernet4/11": {"state": {"type": "PORT", "name": "Ethernet4/11"}, "name": "Ethernet4/11"}, "Ethernet4/49/1": {"state": {"type": "PORT", "name": "Ethernet4/49/1"}, "name": "Ethernet4/49/1", "subcomponents": {"subcomponent": {"xcvr_4/49": {"state": {"name": "xcvr_4/49"}, "name": "xcvr_4/49"}}}}, "Ethernet4/13": {"state": {"type": "PORT", "name": "Ethernet4/13"}, "name": "Ethernet4/13"}, "Ethernet4/12": {"state": {"type": "PORT", "name": "Ethernet4/12"}, "name": "Ethernet4/12"}, "Ethernet5/10/1": {"state": {"type": "PORT", "name": "Ethernet5/10/1"}, "name": "Ethernet5/10/1", "subcomponents": {"subcomponent": {"xcvr_5/10": {"state": {"name": "xcvr_5/10"}, "name": "xcvr_5/10"}}}}, "Ethernet4/14": {"state": {"type": "PORT", "name": "Ethernet4/14"}, "name": "Ethernet4/14"}, "Ethernet4/17": {"state": {"type": "PORT", "name": "Ethernet4/17"}, "name": "Ethernet4/17"}, "Ethernet4/16": {"state": {"type": "PORT", "name": "Ethernet4/16"}, "name": "Ethernet4/16"}, "Ethernet4/19": {"state": {"type": "PORT", "name": "Ethernet4/19"}, "name": "Ethernet4/19"}, "Ethernet4/18": {"state": {"type": "PORT", "name": "Ethernet4/18"}, "name": "Ethernet4/18"}, "xcvr_6/26": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.0554424574657295}, "input-power": {"instant": 1.8816885858669652}, "laser-bias-current": {"instant": 48.252}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5691242570001673}, "input-power": {"instant": 1.8591028504071438}, "laser-bias-current": {"instant": 43.418}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.3113727377860718}, "input-power": {"instant": 2.2827200212399923}, "laser-bias-current": {"instant": 47.884}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.553664066467042}, "input-power": {"instant": 2.1362399341608684}, "laser-bias-current": {"instant": 40.984}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163300333", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/26"}, "name": "xcvr_6/26"}, "xcvr_6/27": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.2561137189746363}, "input-power": {"instant": -0.10817248744452446}, "laser-bias-current": {"instant": 54.062}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.464691330718697}, "input-power": {"instant": 0.6419583586464261}, "laser-bias-current": {"instant": 53.716}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.7411798125426703}, "input-power": {"instant": 1.1200139548618848}, "laser-bias-current": {"instant": 43.738}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.05946936412324799}, "input-power": {"instant": -0.32592443402527316}, "laser-bias-current": {"instant": 43.016}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800400", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/27"}, "name": "xcvr_6/27"}, "xcvr_6/20": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.1437742978615528}, "input-power": {"instant": 2.628306348556597}, "laser-bias-current": {"instant": 45.852000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.1028660840356563}, "input-power": {"instant": 3.120080078387235}, "laser-bias-current": {"instant": 46.254}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.5161552300498995}, "input-power": {"instant": 3.4931638877010673}, "laser-bias-current": {"instant": 46.2}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.411674686462323}, "input-power": {"instant": 3.603851143046364}, "laser-bias-current": {"instant": 42.748}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162200005", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/20"}, "name": "xcvr_6/20"}, "Ethernet5/11/1": {"state": {"type": "PORT", "name": "Ethernet5/11/1"}, "name": "Ethernet5/11/1", "subcomponents": {"subcomponent": {"xcvr_5/11": {"state": {"name": "xcvr_5/11"}, "name": "xcvr_5/11"}}}}, "xcvr_6/22": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5038797732528009}, "input-power": {"instant": 2.187979981117376}, "laser-bias-current": {"instant": 32.608000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5585202495926742}, "input-power": {"instant": 2.3964977716666214}, "laser-bias-current": {"instant": 30.428}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.543631006663162}, "input-power": {"instant": 1.8141479625428403}, "laser-bias-current": {"instant": 29.312}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4182589451107486}, "input-power": {"instant": 2.1587539546127577}, "laser-bias-current": {"instant": 29.512}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162200592", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/22"}, "name": "xcvr_6/22"}, "xcvr_6/23": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5167623084704784}, "input-power": {"instant": 0.5895717877731022}, "laser-bias-current": {"instant": 30.842000000000002}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5231892742464526}, "input-power": {"instant": 0.5774215582875275}, "laser-bias-current": {"instant": 33.186}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5506261922392062}, "input-power": {"instant": 0.3734680356809017}, "laser-bias-current": {"instant": 37.122}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5094055396547734}, "input-power": {"instant": 0.7700432679335023}, "laser-bias-current": {"instant": 41.972}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162200392", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/23"}, "name": "xcvr_6/23"}, "Ethernet6/26/1": {"state": {"type": "PORT", "name": "Ethernet6/26/1"}, "name": "Ethernet6/26/1", "subcomponents": {"subcomponent": {"xcvr_6/26": {"state": {"name": "xcvr_6/26"}, "name": "xcvr_6/26"}}}}, "Ethernet5/16/1": {"state": {"type": "PORT", "name": "Ethernet5/16/1"}, "name": "Ethernet5/16/1"}, "Ethernet6/27/1": {"state": {"type": "PORT", "name": "Ethernet6/27/1"}, "name": "Ethernet6/27/1", "subcomponents": {"subcomponent": {"xcvr_6/27": {"state": {"name": "xcvr_6/27"}, "name": "xcvr_6/27"}}}}, "Ethernet5/17/1": {"state": {"type": "PORT", "name": "Ethernet5/17/1"}, "name": "Ethernet5/17/1"}}}} diff --git a/test/integration/test_profiles/eos/openconfig-platform/state/default/openconfig-platform.native b/test/integration/test_profiles/eos/openconfig-platform/state/default/openconfig-platform.native new file mode 100644 index 00000000..cc3d8a42 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-platform/state/default/openconfig-platform.native @@ -0,0 +1 @@ +{"components": {"component": {"Ethernet5/32/1": {"state": {"type": "PORT", "name": "Ethernet5/32/1"}, "name": "Ethernet5/32/1"}, "Ethernet3/20": {"state": {"type": "PORT", "name": "Ethernet3/20"}, "name": "Ethernet3/20"}, "Ethernet3/23": {"state": {"type": "PORT", "name": "Ethernet3/23"}, "name": "Ethernet3/23"}, "Ethernet3/22": {"state": {"type": "PORT", "name": "Ethernet3/22"}, "name": "Ethernet3/22"}, "xcvr_6/9": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5588235808181539}, "input-power": {"instant": 2.5541724580849623}, "laser-bias-current": {"instant": 39.812}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.6823222951342087}, "input-power": {"instant": 2.3593225398629514}, "laser-bias-current": {"instant": 36.874}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5648857605001742}, "input-power": {"instant": 2.000292665537704}, "laser-bias-current": {"instant": 35.858000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5585202495926742}, "input-power": {"instant": 1.7684338450373893}, "laser-bias-current": {"instant": 31.612000000000002}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100152", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/9"}, "name": "xcvr_6/9"}, "xcvr_6/8": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.366888656722578}, "input-power": {"instant": 3.5791579857913014}, "laser-bias-current": {"instant": 39.848}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4401346578619867}, "input-power": {"instant": 3.015508366001667}, "laser-bias-current": {"instant": 36.288000000000004}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.3315553819799009}, "input-power": {"instant": 1.8895659252639874}, "laser-bias-current": {"instant": 42.602000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.3599084692162489}, "input-power": {"instant": 1.2509071308263442}, "laser-bias-current": {"instant": 34.274}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100371", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/8"}, "name": "xcvr_6/8"}, "Ethernet3/27": {"state": {"type": "PORT", "name": "Ethernet3/27"}, "name": "Ethernet3/27"}, "Ethernet3/26": {"state": {"type": "PORT", "name": "Ethernet3/26"}, "name": "Ethernet3/26"}, "xcvr_6/5": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.557003275593165}, "input-power": {"instant": 3.3661981290743848}, "laser-bias-current": {"instant": 32.992}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4310852276251262}, "input-power": {"instant": 3.605744813966325}, "laser-bias-current": {"instant": 29.494}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4851011061099895}, "input-power": {"instant": 3.625955575488198}, "laser-bias-current": {"instant": 29.494}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4894181490291114}, "input-power": {"instant": 3.426595041391187}, "laser-bias-current": {"instant": 34.504}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA160300413", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/5"}, "name": "xcvr_6/5"}, "xcvr_6/4": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5360147428841087}, "input-power": {"instant": 3.8715837827271304}, "laser-bias-current": {"instant": 34.018}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5491064578852365}, "input-power": {"instant": 3.7164038383788434}, "laser-bias-current": {"instant": 31.856}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4767632424109856}, "input-power": {"instant": 3.4338889746235424}, "laser-bias-current": {"instant": 34.558}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5032653649870742}, "input-power": {"instant": 2.8544478290741537}, "laser-bias-current": {"instant": 32.912}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600141", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/4"}, "name": "xcvr_6/4"}, "xcvr_6/7": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.499577088910593}, "input-power": {"instant": 2.7939314274786398}, "laser-bias-current": {"instant": 44.918}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5527529273009977}, "input-power": {"instant": 2.6264090375526195}, "laser-bias-current": {"instant": 42.52}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5204360248765125}, "input-power": {"instant": 1.6580797900378608}, "laser-bias-current": {"instant": 45.230000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.428898054390424}, "input-power": {"instant": 2.3934953900613687}, "laser-bias-current": {"instant": 44.444}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162000066", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/7"}, "name": "xcvr_6/7"}, "xcvr_6/6": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.0846354120359525}, "input-power": {"instant": 1.3541890502785225}, "laser-bias-current": {"instant": 48.296}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.3376238478734548}, "input-power": {"instant": 1.4295230734343223}, "laser-bias-current": {"instant": 42.082}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4326468201122067}, "input-power": {"instant": 1.148444131450237}, "laser-bias-current": {"instant": 41.386}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4538289197487453}, "input-power": {"instant": 0.9756963943137142}, "laser-bias-current": {"instant": 37.44}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100377", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/6"}, "name": "xcvr_6/6"}, "xcvr_6/1": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 0.6662405098342639}, "input-power": {"instant": 3.218468826928884}, "laser-bias-current": {"instant": 49.02}}}, "1": {"state": {"index": 1, "output-power": {"instant": -0.22642270454698465}, "input-power": {"instant": 3.7006876065005168}, "laser-bias-current": {"instant": 48.166000000000004}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.7092403147615034}, "input-power": {"instant": 3.5270335904754813}, "laser-bias-current": {"instant": 45.522}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.9149109426795121}, "input-power": {"instant": 3.750963750953966}, "laser-bias-current": {"instant": 44.992000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA155300202", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/1"}, "name": "xcvr_6/1"}, "xcvr_6/3": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.4702671522223065}, "input-power": {"instant": 2.844081725061991}, "laser-bias-current": {"instant": 34.474000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5609463063942774}, "input-power": {"instant": 2.4221832024761225}, "laser-bias-current": {"instant": 30.996000000000002}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5060295179300942}, "input-power": {"instant": 2.1375675240648384}, "laser-bias-current": {"instant": 37.552}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.469957572094649}, "input-power": {"instant": 2.476787295706573}, "laser-bias-current": {"instant": 29.762}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA160300373", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/3"}, "name": "xcvr_6/3"}, "xcvr_6/2": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.532659350758685}, "input-power": {"instant": 3.5930414234993258}, "laser-bias-current": {"instant": 35.858000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5084850666952265}, "input-power": {"instant": 3.473495337314567}, "laser-bias-current": {"instant": 31.556}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.46531122007445}, "input-power": {"instant": 3.102045888980056}, "laser-bias-current": {"instant": 30.044}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5463695951841983}, "input-power": {"instant": 2.866585246156861}, "laser-bias-current": {"instant": 35.464}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA155100408", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/2"}, "name": "xcvr_6/2"}, "xcvr_4/3": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -3.557584141562713}, "input-power": {"instant": -2.9895036927086016}, "laser-bias-current": {"instant": 5.156}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN0ED318042", "part-no": "SFP10GSRL-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_4/3"}, "name": "xcvr_4/3"}, "xcvr_4/2": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.7496355877864644}, "input-power": {"instant": -2.660007134616129}, "laser-bias-current": {"instant": 6.3580000000000005}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1314FE0F9", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_4/2"}, "name": "xcvr_4/2"}, "xcvr_4/1": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.6577009714832247}, "input-power": {"instant": -3.3592240981492516}, "laser-bias-current": {"instant": 6.524}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1312FE1QK", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_4/1"}, "name": "xcvr_4/1"}, "xcvr_4/5": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -3.48721986001856}, "input-power": {"instant": -2.973110318408665}, "laser-bias-current": {"instant": 5.2700000000000005}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN1017A3653", "part-no": "SFP10GSRL-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_4/5"}, "name": "xcvr_4/5"}, "xcvr_4/4": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -2.539888922480742}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 7.0840000000000005}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1320FE0TQ", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_4/4"}, "name": "xcvr_4/4"}, "TempSensor13/2": {"state": {"type": "SENSOR", "name": "TempSensor13/2", "temperature": {"max": 57.0, "instant": 51.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor13/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor13/1": {"state": {"type": "SENSOR", "name": "TempSensor13/1", "temperature": {"max": 50.25, "instant": 44.5}, "description": "Outlet sensor"}, "name": "TempSensor13/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/30/1": {"state": {"type": "PORT", "name": "Ethernet6/30/1"}, "name": "Ethernet6/30/1", "subcomponents": {"subcomponent": {"xcvr_6/30": {"state": {"name": "xcvr_6/30"}, "name": "xcvr_6/30"}}}}, "xcvr_3/49": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.292619958041751}, "input-power": {"instant": -1.1861534322942724}, "laser-bias-current": {"instant": 5.402}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.43558746914732716}, "input-power": {"instant": -0.5660442349104544}, "laser-bias-current": {"instant": 6.19}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.38381691467695767}, "input-power": {"instant": -0.8878910686244668}, "laser-bias-current": {"instant": 5.506}}}, "4": {"state": {"index": 4, "output-power": {"instant": 0.3730695089709135}, "input-power": {"instant": -0.4019568349166214}, "laser-bias-current": {"instant": 5.614}}}, "5": {"state": {"index": 5, "output-power": {"instant": 0.5034108183408437}, "input-power": {"instant": -0.8884239126002358}, "laser-bias-current": {"instant": 5.5760000000000005}}}, "6": {"state": {"index": 6, "output-power": {"instant": 0.41747871723265995}, "input-power": {"instant": -0.659562809644747}, "laser-bias-current": {"instant": 6.204}}}, "7": {"state": {"index": 7, "output-power": {"instant": 0.5422990986339737}, "input-power": {"instant": -0.6153031163235445}, "laser-bias-current": {"instant": 6.238}}}, "8": {"state": {"index": 8, "output-power": {"instant": 0.17367283553529678}, "input-power": {"instant": -0.6313454102437754}, "laser-bias-current": {"instant": 6.16}}}, "9": {"state": {"index": 9, "output-power": {"instant": 0.7025957740057498}, "input-power": {"instant": -0.7437854520917098}, "laser-bias-current": {"instant": 5.416}}}, "10": {"state": {"index": 10, "output-power": {"instant": 0.15736874477450424}, "input-power": {"instant": -0.11574829993696856}, "laser-bias-current": {"instant": 6.216}}}, "11": {"state": {"index": 11, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}}}, "state": {"ethernet-pmd": "ETH_100GBASE_SR10", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "JPE13510257", "part-no": "7500E-72S-LC", "type": "TRANSCEIVER", "name": "xcvr_3/49"}, "name": "xcvr_3/49"}, "xcvr_3/48": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XMD1018MCF8D", "part-no": "SFP-1G-T", "type": "TRANSCEIVER", "name": "xcvr_3/48"}, "name": "xcvr_3/48"}, "TempSensor12/2": {"state": {"type": "SENSOR", "name": "TempSensor12/2", "temperature": {"max": 57.0, "instant": 51.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor12/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet4/9": {"state": {"type": "PORT", "name": "Ethernet4/9"}, "name": "Ethernet4/9"}, "Ethernet5/34/1": {"state": {"type": "PORT", "name": "Ethernet5/34/1"}, "name": "Ethernet5/34/1"}, "TempSensor12/1": {"state": {"type": "SENSOR", "name": "TempSensor12/1", "temperature": {"max": 51.25, "instant": 44.75}, "description": "Outlet sensor"}, "name": "TempSensor12/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/33/1": {"state": {"type": "PORT", "name": "Ethernet6/33/1"}, "name": "Ethernet6/33/1", "subcomponents": {"subcomponent": {"xcvr_6/33": {"state": {"name": "xcvr_6/33"}, "name": "xcvr_6/33"}}}}, "Ethernet5/15/1": {"state": {"type": "PORT", "name": "Ethernet5/15/1"}, "name": "Ethernet5/15/1"}, "Ethernet5/35/1": {"state": {"type": "PORT", "name": "Ethernet5/35/1"}, "name": "Ethernet5/35/1"}, "TempSensor11/1": {"state": {"type": "SENSOR", "name": "TempSensor11/1", "temperature": {"max": 53.25, "instant": 47.0}, "description": "Outlet sensor"}, "name": "TempSensor11/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "xcvr_4/49": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.49101678208557153}, "input-power": {"instant": -0.7826151631540146}, "laser-bias-current": {"instant": 5.96}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.11232010319365937}, "input-power": {"instant": -0.5833952161160783}, "laser-bias-current": {"instant": 6.142}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.5551732784983132}, "input-power": {"instant": -1.1884367892443626}, "laser-bias-current": {"instant": 6.3340000000000005}}}, "4": {"state": {"index": 4, "output-power": {"instant": 0.34227260770550494}, "input-power": {"instant": -0.5601112492622828}, "laser-bias-current": {"instant": 5.988}}}, "5": {"state": {"index": 5, "output-power": {"instant": 0.31206419827462195}, "input-power": {"instant": -0.9598811640261173}, "laser-bias-current": {"instant": 5.972}}}, "6": {"state": {"index": 6, "output-power": {"instant": -0.3465716443937783}, "input-power": {"instant": -0.6323500239005853}, "laser-bias-current": {"instant": 6.1080000000000005}}}, "7": {"state": {"index": 7, "output-power": {"instant": 0.1367969729119256}, "input-power": {"instant": -0.38199360808321536}, "laser-bias-current": {"instant": 5.974}}}, "8": {"state": {"index": 8, "output-power": {"instant": 0.4883008652834997}, "input-power": {"instant": -0.5551732784983132}, "laser-bias-current": {"instant": 6.676}}}, "9": {"state": {"index": 9, "output-power": {"instant": 0.9971516235102351}, "input-power": {"instant": -1.281352979118049}, "laser-bias-current": {"instant": 5.96}}}, "10": {"state": {"index": 10, "output-power": {"instant": 0.07150105366684922}, "input-power": {"instant": -0.23558310621155432}, "laser-bias-current": {"instant": 6.3100000000000005}}}, "11": {"state": {"index": 11, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}}}, "state": {"ethernet-pmd": "ETH_100GBASE_SR10", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "JPE13510269", "part-no": "7500E-72S-LC", "type": "TRANSCEIVER", "name": "xcvr_4/49"}, "name": "xcvr_4/49"}, "TempSensor11/2": {"state": {"type": "SENSOR", "name": "TempSensor11/2", "temperature": {"max": 59.0, "instant": 53.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor11/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "powerSupply_2": {"state": {"mfg-name": "Arista Networks", "serial-no": "G100M3000402P", "part-no": "PWR-2900AC", "type": "POWER_SUPPLY", "name": "powerSupply_2"}, "name": "powerSupply_2", "subcomponents": {"subcomponent": {"TempSensorP2/1": {"state": {"name": "TempSensorP2/1"}, "name": "TempSensorP2/1"}, "TempSensorP2/2": {"state": {"name": "TempSensorP2/2"}, "name": "TempSensorP2/2"}}}}, "powerSupply_3": {"state": {"mfg-name": "Arista Networks", "serial-no": "G100M1000902P", "part-no": "PWR-2900AC", "type": "POWER_SUPPLY", "name": "powerSupply_3"}, "name": "powerSupply_3", "subcomponents": {"subcomponent": {"TempSensorP3/1": {"state": {"name": "TempSensorP3/1"}, "name": "TempSensorP3/1"}, "TempSensorP3/2": {"state": {"name": "TempSensorP3/2"}, "name": "TempSensorP3/2"}}}}, "powerSupply_1": {"state": {"mfg-name": "Arista Networks", "serial-no": "G100M3000502P", "part-no": "PWR-2900AC", "type": "POWER_SUPPLY", "name": "powerSupply_1"}, "name": "powerSupply_1", "subcomponents": {"subcomponent": {"TempSensorP1/2": {"state": {"name": "TempSensorP1/2"}, "name": "TempSensorP1/2"}, "TempSensorP1/1": {"state": {"name": "TempSensorP1/1"}, "name": "TempSensorP1/1"}}}}, "Ethernet5/36/1": {"state": {"type": "PORT", "name": "Ethernet5/36/1"}, "name": "Ethernet5/36/1"}, "powerSupply_4": {"state": {"mfg-name": "Arista Networks", "serial-no": "G100M100MA02P", "part-no": "PWR-2900AC", "type": "POWER_SUPPLY", "name": "powerSupply_4"}, "name": "powerSupply_4", "subcomponents": {"subcomponent": {"TempSensorP4/2": {"state": {"name": "TempSensorP4/2"}, "name": "TempSensorP4/2"}, "TempSensorP4/1": {"state": {"name": "TempSensorP4/1"}, "name": "TempSensorP4/1"}}}}, "Ethernet5/21/1": {"state": {"type": "PORT", "name": "Ethernet5/21/1"}, "name": "Ethernet5/21/1"}, "xcvr_5/3": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 0.31327657761131}, "input-power": {"instant": 1.947085515751228}, "laser-bias-current": {"instant": 48.764}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.7353506505878382}, "input-power": {"instant": 3.0958758744822834}, "laser-bias-current": {"instant": 46.768}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.24157154459672814}, "input-power": {"instant": 2.5925930985236345}, "laser-bias-current": {"instant": 49.796}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.8244197917456386}, "input-power": {"instant": 1.6749456163572152}, "laser-bias-current": {"instant": 47.838}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600205", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/3"}, "name": "xcvr_5/3"}, "xcvr_5/1": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 2.7937031817910807}, "input-power": {"instant": 4.266251064182471}, "laser-bias-current": {"instant": 40.612}}}, "1": {"state": {"index": 1, "output-power": {"instant": 2.6429824719021644}, "input-power": {"instant": 3.488109204051777}, "laser-bias-current": {"instant": 39.918}}}, "2": {"state": {"index": 2, "output-power": {"instant": 2.5051758561048487}, "input-power": {"instant": 3.146255192012708}, "laser-bias-current": {"instant": 42.442}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.7580163284827943}, "input-power": {"instant": 4.234424910752614}, "laser-bias-current": {"instant": 38.704}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH1537000RV", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/1"}, "name": "xcvr_5/1"}, "xcvr_5/6": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.542108822069741}, "input-power": {"instant": 1.4560035765224821}, "laser-bias-current": {"instant": 44.114000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.554878621412814}, "input-power": {"instant": 1.3506901382344783}, "laser-bias-current": {"instant": 44.706}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.549714415444714}, "input-power": {"instant": 2.013151742339918}, "laser-bias-current": {"instant": 35.09}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5609463063942774}, "input-power": {"instant": 1.8658909127240708}, "laser-bias-current": {"instant": 39.354}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600085", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/6"}, "name": "xcvr_5/6"}, "xcvr_5/7": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5408906901442077}, "input-power": {"instant": 0.510366951412129}, "laser-bias-current": {"instant": 33.12}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5654915133178138}, "input-power": {"instant": 2.443760940205717}, "laser-bias-current": {"instant": 28.022000000000002}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5035725799851907}, "input-power": {"instant": 2.579184503140586}, "laser-bias-current": {"instant": 36.188}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5164560251162795}, "input-power": {"instant": 3.0818010103066573}, "laser-bias-current": {"instant": 39.152}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600151", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/7"}, "name": "xcvr_5/7"}, "xcvr_5/4": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5213539686187616}, "input-power": {"instant": 3.102045888980056}, "laser-bias-current": {"instant": 35.886}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5736609176227034}, "input-power": {"instant": 3.1132995230379334}, "laser-bias-current": {"instant": 39.848}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5809097318555976}, "input-power": {"instant": 2.765537086243124}, "laser-bias-current": {"instant": 34.706}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4931150590791509}, "input-power": {"instant": 2.8809265454186983}, "laser-bias-current": {"instant": 40.148}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600039", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/4"}, "name": "xcvr_5/4"}, "xcvr_5/5": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5712419550486922}, "input-power": {"instant": -1.2418661116024232}, "laser-bias-current": {"instant": 41.432}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.189918001959751}, "input-power": {"instant": -1.2942053944731535}, "laser-bias-current": {"instant": 46.19}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.576380641009174}, "input-power": {"instant": -1.6045910703103106}, "laser-bias-current": {"instant": 40.480000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5573067127858842}, "input-power": {"instant": -0.4464904263234004}, "laser-bias-current": {"instant": 34.714}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600017", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/5"}, "name": "xcvr_5/5"}, "Ethernet5/20/1": {"state": {"type": "PORT", "name": "Ethernet5/20/1"}, "name": "Ethernet5/20/1"}, "xcvr_5/8": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3081605003474417}, "input-power": {"instant": 3.5835370103326536}, "laser-bias-current": {"instant": 47.966}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.3296372613072682}, "input-power": {"instant": 3.846580124622787}, "laser-bias-current": {"instant": 39.866}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4662408882400557}, "input-power": {"instant": 3.7366584299164485}, "laser-bias-current": {"instant": 39.354}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.3630826725581313}, "input-power": {"instant": 3.79686151906955}, "laser-bias-current": {"instant": 44.412}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600196", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/8"}, "name": "xcvr_5/8"}, "xcvr_5/9": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.4507203770499766}, "input-power": {"instant": -0.5774384958053513}, "laser-bias-current": {"instant": 38.85}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4656211315755652}, "input-power": {"instant": -0.6844043290919499}, "laser-bias-current": {"instant": 40.442}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.2083706025473706}, "input-power": {"instant": -0.7504911108438916}, "laser-bias-current": {"instant": 41.502}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4072796284418265}, "input-power": {"instant": -1.24649303420711}, "laser-bias-current": {"instant": 37.302}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163600181", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/9"}, "name": "xcvr_5/9"}, "Management1/2": {"state": {"type": "PORT", "name": "Management1/2"}, "name": "Management1/2"}, "Management1/1": {"state": {"type": "PORT", "name": "Management1/1"}, "name": "Management1/1"}, "xcvr_3/1": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -2.107719427326651}, "input-power": {"instant": -2.8042014228627687}, "laser-bias-current": {"instant": 6.582}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1320FE0AH", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_3/1"}, "name": "xcvr_3/1"}, "xcvr_3/2": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.9873352951037981}, "input-power": {"instant": -3.2947584221792026}, "laser-bias-current": {"instant": 6.748}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XCW1312FE1CK", "part-no": "SFP-10G-SRL", "type": "TRANSCEIVER", "name": "xcvr_3/2"}, "name": "xcvr_3/2"}, "xcvr_3/3": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -3.364875295848444}, "input-power": {"instant": -3.917949922956736}, "laser-bias-current": {"instant": 5.47}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN0ED318049", "part-no": "SFP10GSRL-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_3/3"}, "name": "xcvr_3/3"}, "xcvr_3/5": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -2.7646223846794316}, "input-power": {"instant": -3.355460714188423}, "laser-bias-current": {"instant": 5.756}}}}}, "state": {"ethernet-pmd": "ETH_10GBASE_SR", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN1017A3652", "part-no": "SFP10GSRL-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_3/5"}, "name": "xcvr_3/5"}, "Ethernet5/29/1": {"state": {"type": "PORT", "name": "Ethernet5/29/1"}, "name": "Ethernet5/29/1"}, "Ethernet3/21": {"state": {"type": "PORT", "name": "Ethernet3/21"}, "name": "Ethernet3/21"}, "Ethernet5/27/1": {"state": {"type": "PORT", "name": "Ethernet5/27/1"}, "name": "Ethernet5/27/1"}, "Ethernet5/30/1": {"state": {"type": "PORT", "name": "Ethernet5/30/1"}, "name": "Ethernet5/30/1"}, "Supervisor1": {"state": {"mfg-name": "Arista Networks", "version": "01.04", "name": "Supervisor1", "serial-no": "JPE14044652", "part-no": "DCS-7500E-SUP", "type": "LINECARD"}, "name": "Supervisor1", "subcomponents": {"subcomponent": {"TempSensor1/11": {"state": {"name": "TempSensor1/11"}, "name": "TempSensor1/11"}, "TempSensor1/10": {"state": {"name": "TempSensor1/10"}, "name": "TempSensor1/10"}, "Management1/2": {"state": {"name": "Management1/2"}, "name": "Management1/2"}, "Management1/1": {"state": {"name": "Management1/1"}, "name": "Management1/1"}, "TempSensor1/9": {"state": {"name": "TempSensor1/9"}, "name": "TempSensor1/9"}, "TempSensor1/8": {"state": {"name": "TempSensor1/8"}, "name": "TempSensor1/8"}, "TempSensor1/1": {"state": {"name": "TempSensor1/1"}, "name": "TempSensor1/1"}, "TempSensor1/3": {"state": {"name": "TempSensor1/3"}, "name": "TempSensor1/3"}, "TempSensor1/2": {"state": {"name": "TempSensor1/2"}, "name": "TempSensor1/2"}, "TempSensor1/5": {"state": {"name": "TempSensor1/5"}, "name": "TempSensor1/5"}, "TempSensor1/4": {"state": {"name": "TempSensor1/4"}, "name": "TempSensor1/4"}, "TempSensor1/7": {"state": {"name": "TempSensor1/7"}, "name": "TempSensor1/7"}, "TempSensor1/6": {"state": {"name": "TempSensor1/6"}, "name": "TempSensor1/6"}}}}, "Supervisor2": {"state": {"mfg-name": "Arista Networks", "version": "01.04", "name": "Supervisor2", "serial-no": "JPE13362385", "part-no": "DCS-7500E-SUP", "type": "LINECARD"}, "name": "Supervisor2", "subcomponents": {"subcomponent": {"TempSensor2/6": {"state": {"name": "TempSensor2/6"}, "name": "TempSensor2/6"}, "TempSensor2/7": {"state": {"name": "TempSensor2/7"}, "name": "TempSensor2/7"}, "TempSensor2/4": {"state": {"name": "TempSensor2/4"}, "name": "TempSensor2/4"}, "TempSensor2/5": {"state": {"name": "TempSensor2/5"}, "name": "TempSensor2/5"}, "TempSensor2/2": {"state": {"name": "TempSensor2/2"}, "name": "TempSensor2/2"}, "TempSensor2/3": {"state": {"name": "TempSensor2/3"}, "name": "TempSensor2/3"}, "TempSensor2/1": {"state": {"name": "TempSensor2/1"}, "name": "TempSensor2/1"}, "Management2/1": {"state": {"name": "Management2/1"}, "name": "Management2/1"}, "TempSensor2/8": {"state": {"name": "TempSensor2/8"}, "name": "TempSensor2/8"}, "TempSensor2/9": {"state": {"name": "TempSensor2/9"}, "name": "TempSensor2/9"}, "TempSensor2/11": {"state": {"name": "TempSensor2/11"}, "name": "TempSensor2/11"}, "Management2/2": {"state": {"name": "Management2/2"}, "name": "Management2/2"}, "TempSensor2/10": {"state": {"name": "TempSensor2/10"}, "name": "TempSensor2/10"}}}}, "Ethernet5/31/1": {"state": {"type": "PORT", "name": "Ethernet5/31/1"}, "name": "Ethernet5/31/1"}, "fan_3": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_3"}, "name": "fan_3"}, "fan_2": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_2"}, "name": "fan_2"}, "fan_1": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_1"}, "name": "fan_1"}, "Ethernet5/25/1": {"state": {"type": "PORT", "name": "Ethernet5/25/1"}, "name": "Ethernet5/25/1"}, "fan_6": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_6"}, "name": "fan_6"}, "fan_5": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_5"}, "name": "fan_5"}, "fan_4": {"state": {"mfg-name": "Arista Networks", "part-no": "7504E-FM", "type": "FAN", "name": "fan_4"}, "name": "fan_4"}, "Ethernet6/3/1": {"state": {"type": "PORT", "name": "Ethernet6/3/1"}, "name": "Ethernet6/3/1", "subcomponents": {"subcomponent": {"xcvr_6/3": {"state": {"name": "xcvr_6/3"}, "name": "xcvr_6/3"}}}}, "Ethernet6/31/1": {"state": {"type": "PORT", "name": "Ethernet6/31/1"}, "name": "Ethernet6/31/1", "subcomponents": {"subcomponent": {"xcvr_6/31": {"state": {"name": "xcvr_6/31"}, "name": "xcvr_6/31"}}}}, "Ethernet3/6": {"state": {"type": "PORT", "name": "Ethernet3/6"}, "name": "Ethernet3/6"}, "Ethernet5/24/1": {"state": {"type": "PORT", "name": "Ethernet5/24/1"}, "name": "Ethernet5/24/1"}, "Ethernet5/23/1": {"state": {"type": "PORT", "name": "Ethernet5/23/1"}, "name": "Ethernet5/23/1"}, "Ethernet4/42": {"state": {"type": "PORT", "name": "Ethernet4/42"}, "name": "Ethernet4/42"}, "Ethernet4/43": {"state": {"type": "PORT", "name": "Ethernet4/43"}, "name": "Ethernet4/43"}, "Ethernet4/40": {"state": {"type": "PORT", "name": "Ethernet4/40"}, "name": "Ethernet4/40"}, "Ethernet4/41": {"state": {"type": "PORT", "name": "Ethernet4/41"}, "name": "Ethernet4/41"}, "Ethernet3/49/1": {"state": {"type": "PORT", "name": "Ethernet3/49/1"}, "name": "Ethernet3/49/1", "subcomponents": {"subcomponent": {"xcvr_3/49": {"state": {"name": "xcvr_3/49"}, "name": "xcvr_3/49"}}}}, "Ethernet4/47": {"state": {"type": "PORT", "name": "Ethernet4/47"}, "name": "Ethernet4/47"}, "Ethernet4/44": {"state": {"type": "PORT", "name": "Ethernet4/44"}, "name": "Ethernet4/44"}, "Ethernet4/45": {"state": {"type": "PORT", "name": "Ethernet4/45"}, "name": "Ethernet4/45"}, "TempSensor5/6": {"state": {"type": "SENSOR", "name": "TempSensor5/6", "temperature": {"max": 79.75, "instant": 75.0}, "description": "Switch chip 2 sensor"}, "name": "TempSensor5/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet4/48": {"state": {"type": "PORT", "name": "Ethernet4/48"}, "name": "Ethernet4/48", "subcomponents": {"subcomponent": {"xcvr_4/48": {"state": {"name": "xcvr_4/48"}, "name": "xcvr_4/48"}}}}, "Ethernet5/22/1": {"state": {"type": "PORT", "name": "Ethernet5/22/1"}, "name": "Ethernet5/22/1"}, "Ethernet3/25": {"state": {"type": "PORT", "name": "Ethernet3/25"}, "name": "Ethernet3/25"}, "TempSensor14/1": {"state": {"type": "SENSOR", "name": "TempSensor14/1", "temperature": {"max": 49.75, "instant": 44.25}, "description": "Outlet sensor"}, "name": "TempSensor14/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor14/2": {"state": {"type": "SENSOR", "name": "TempSensor14/2", "temperature": {"max": 56.0, "instant": 50.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor14/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/4/1": {"state": {"type": "PORT", "name": "Ethernet6/4/1"}, "name": "Ethernet6/4/1", "subcomponents": {"subcomponent": {"xcvr_6/4": {"state": {"name": "xcvr_6/4"}, "name": "xcvr_6/4"}}}}, "Ethernet6/5/1": {"state": {"type": "PORT", "name": "Ethernet6/5/1"}, "name": "Ethernet6/5/1", "subcomponents": {"subcomponent": {"xcvr_6/5": {"state": {"name": "xcvr_6/5"}, "name": "xcvr_6/5"}}}}, "Ethernet3/24": {"state": {"type": "PORT", "name": "Ethernet3/24"}, "name": "Ethernet3/24"}, "Ethernet5/14/1": {"state": {"type": "PORT", "name": "Ethernet5/14/1"}, "name": "Ethernet5/14/1"}, "Linecard3": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Linecard3", "serial-no": "JPE13510257", "part-no": "7500E-72S-LC", "type": "LINECARD"}, "name": "Linecard3", "subcomponents": {"subcomponent": {"Ethernet3/21": {"state": {"name": "Ethernet3/21"}, "name": "Ethernet3/21"}, "Ethernet3/20": {"state": {"name": "Ethernet3/20"}, "name": "Ethernet3/20"}, "Ethernet3/23": {"state": {"name": "Ethernet3/23"}, "name": "Ethernet3/23"}, "Ethernet3/22": {"state": {"name": "Ethernet3/22"}, "name": "Ethernet3/22"}, "Ethernet3/25": {"state": {"name": "Ethernet3/25"}, "name": "Ethernet3/25"}, "Ethernet3/24": {"state": {"name": "Ethernet3/24"}, "name": "Ethernet3/24"}, "Ethernet3/27": {"state": {"name": "Ethernet3/27"}, "name": "Ethernet3/27"}, "Ethernet3/26": {"state": {"name": "Ethernet3/26"}, "name": "Ethernet3/26"}, "Ethernet3/29": {"state": {"name": "Ethernet3/29"}, "name": "Ethernet3/29"}, "Ethernet3/28": {"state": {"name": "Ethernet3/28"}, "name": "Ethernet3/28"}, "Ethernet3/50/1": {"state": {"name": "Ethernet3/50/1"}, "name": "Ethernet3/50/1"}, "Ethernet3/47": {"state": {"name": "Ethernet3/47"}, "name": "Ethernet3/47"}, "Ethernet3/46": {"state": {"name": "Ethernet3/46"}, "name": "Ethernet3/46"}, "Ethernet3/45": {"state": {"name": "Ethernet3/45"}, "name": "Ethernet3/45"}, "Ethernet3/44": {"state": {"name": "Ethernet3/44"}, "name": "Ethernet3/44"}, "Ethernet3/43": {"state": {"name": "Ethernet3/43"}, "name": "Ethernet3/43"}, "Ethernet3/42": {"state": {"name": "Ethernet3/42"}, "name": "Ethernet3/42"}, "Ethernet3/41": {"state": {"name": "Ethernet3/41"}, "name": "Ethernet3/41"}, "Ethernet3/40": {"state": {"name": "Ethernet3/40"}, "name": "Ethernet3/40"}, "Ethernet3/48": {"state": {"name": "Ethernet3/48"}, "name": "Ethernet3/48"}, "TempSensor3/7": {"state": {"name": "TempSensor3/7"}, "name": "TempSensor3/7"}, "TempSensor3/6": {"state": {"name": "TempSensor3/6"}, "name": "TempSensor3/6"}, "TempSensor3/5": {"state": {"name": "TempSensor3/5"}, "name": "TempSensor3/5"}, "TempSensor3/4": {"state": {"name": "TempSensor3/4"}, "name": "TempSensor3/4"}, "TempSensor3/3": {"state": {"name": "TempSensor3/3"}, "name": "TempSensor3/3"}, "TempSensor3/2": {"state": {"name": "TempSensor3/2"}, "name": "TempSensor3/2"}, "TempSensor3/1": {"state": {"name": "TempSensor3/1"}, "name": "TempSensor3/1"}, "Ethernet3/49/1": {"state": {"name": "Ethernet3/49/1"}, "name": "Ethernet3/49/1"}, "Ethernet3/36": {"state": {"name": "Ethernet3/36"}, "name": "Ethernet3/36"}, "Ethernet3/18": {"state": {"name": "Ethernet3/18"}, "name": "Ethernet3/18"}, "Ethernet3/19": {"state": {"name": "Ethernet3/19"}, "name": "Ethernet3/19"}, "Ethernet3/34": {"state": {"name": "Ethernet3/34"}, "name": "Ethernet3/34"}, "Ethernet3/35": {"state": {"name": "Ethernet3/35"}, "name": "Ethernet3/35"}, "Ethernet3/32": {"state": {"name": "Ethernet3/32"}, "name": "Ethernet3/32"}, "Ethernet3/33": {"state": {"name": "Ethernet3/33"}, "name": "Ethernet3/33"}, "Ethernet3/30": {"state": {"name": "Ethernet3/30"}, "name": "Ethernet3/30"}, "Ethernet3/31": {"state": {"name": "Ethernet3/31"}, "name": "Ethernet3/31"}, "Ethernet3/10": {"state": {"name": "Ethernet3/10"}, "name": "Ethernet3/10"}, "Ethernet3/11": {"state": {"name": "Ethernet3/11"}, "name": "Ethernet3/11"}, "Ethernet3/12": {"state": {"name": "Ethernet3/12"}, "name": "Ethernet3/12"}, "Ethernet3/13": {"state": {"name": "Ethernet3/13"}, "name": "Ethernet3/13"}, "Ethernet3/14": {"state": {"name": "Ethernet3/14"}, "name": "Ethernet3/14"}, "Ethernet3/15": {"state": {"name": "Ethernet3/15"}, "name": "Ethernet3/15"}, "Ethernet3/16": {"state": {"name": "Ethernet3/16"}, "name": "Ethernet3/16"}, "Ethernet3/17": {"state": {"name": "Ethernet3/17"}, "name": "Ethernet3/17"}, "Ethernet3/37": {"state": {"name": "Ethernet3/37"}, "name": "Ethernet3/37"}, "Ethernet3/38": {"state": {"name": "Ethernet3/38"}, "name": "Ethernet3/38"}, "Ethernet3/39": {"state": {"name": "Ethernet3/39"}, "name": "Ethernet3/39"}, "Ethernet3/6": {"state": {"name": "Ethernet3/6"}, "name": "Ethernet3/6"}, "Ethernet3/7": {"state": {"name": "Ethernet3/7"}, "name": "Ethernet3/7"}, "Ethernet3/4": {"state": {"name": "Ethernet3/4"}, "name": "Ethernet3/4"}, "Ethernet3/5": {"state": {"name": "Ethernet3/5"}, "name": "Ethernet3/5"}, "Ethernet3/2": {"state": {"name": "Ethernet3/2"}, "name": "Ethernet3/2"}, "Ethernet3/3": {"state": {"name": "Ethernet3/3"}, "name": "Ethernet3/3"}, "Ethernet3/1": {"state": {"name": "Ethernet3/1"}, "name": "Ethernet3/1"}, "Ethernet3/8": {"state": {"name": "Ethernet3/8"}, "name": "Ethernet3/8"}, "Ethernet3/9": {"state": {"name": "Ethernet3/9"}, "name": "Ethernet3/9"}}}}, "Linecard5": {"state": {"mfg-name": "Arista Networks", "version": "03.00", "name": "Linecard5", "serial-no": "JPE16030542", "part-no": "7500E-36Q-LC", "type": "LINECARD"}, "name": "Linecard5", "subcomponents": {"subcomponent": {"Ethernet5/32/1": {"state": {"name": "Ethernet5/32/1"}, "name": "Ethernet5/32/1"}, "Ethernet5/33/1": {"state": {"name": "Ethernet5/33/1"}, "name": "Ethernet5/33/1"}, "Ethernet5/1/1": {"state": {"name": "Ethernet5/1/1"}, "name": "Ethernet5/1/1"}, "Ethernet5/11/1": {"state": {"name": "Ethernet5/11/1"}, "name": "Ethernet5/11/1"}, "Ethernet5/35/1": {"state": {"name": "Ethernet5/35/1"}, "name": "Ethernet5/35/1"}, "Ethernet5/24/1": {"state": {"name": "Ethernet5/24/1"}, "name": "Ethernet5/24/1"}, "Ethernet5/15/1": {"state": {"name": "Ethernet5/15/1"}, "name": "Ethernet5/15/1"}, "Ethernet5/14/1": {"state": {"name": "Ethernet5/14/1"}, "name": "Ethernet5/14/1"}, "Ethernet5/34/1": {"state": {"name": "Ethernet5/34/1"}, "name": "Ethernet5/34/1"}, "Ethernet5/23/1": {"state": {"name": "Ethernet5/23/1"}, "name": "Ethernet5/23/1"}, "Ethernet5/7/1": {"state": {"name": "Ethernet5/7/1"}, "name": "Ethernet5/7/1"}, "Ethernet5/9/1": {"state": {"name": "Ethernet5/9/1"}, "name": "Ethernet5/9/1"}, "TempSensor5/9": {"state": {"name": "TempSensor5/9"}, "name": "TempSensor5/9"}, "Ethernet5/19/1": {"state": {"name": "Ethernet5/19/1"}, "name": "Ethernet5/19/1"}, "Ethernet5/22/1": {"state": {"name": "Ethernet5/22/1"}, "name": "Ethernet5/22/1"}, "Ethernet5/6/1": {"state": {"name": "Ethernet5/6/1"}, "name": "Ethernet5/6/1"}, "TempSensor5/4": {"state": {"name": "TempSensor5/4"}, "name": "TempSensor5/4"}, "Ethernet5/8/1": {"state": {"name": "Ethernet5/8/1"}, "name": "Ethernet5/8/1"}, "TempSensor5/6": {"state": {"name": "TempSensor5/6"}, "name": "TempSensor5/6"}, "TempSensor5/1": {"state": {"name": "TempSensor5/1"}, "name": "TempSensor5/1"}, "TempSensor5/3": {"state": {"name": "TempSensor5/3"}, "name": "TempSensor5/3"}, "TempSensor5/8": {"state": {"name": "TempSensor5/8"}, "name": "TempSensor5/8"}, "Ethernet5/21/1": {"state": {"name": "Ethernet5/21/1"}, "name": "Ethernet5/21/1"}, "Ethernet5/5/1": {"state": {"name": "Ethernet5/5/1"}, "name": "Ethernet5/5/1"}, "Ethernet5/20/1": {"state": {"name": "Ethernet5/20/1"}, "name": "Ethernet5/20/1"}, "Ethernet5/18/1": {"state": {"name": "Ethernet5/18/1"}, "name": "Ethernet5/18/1"}, "Ethernet5/4/1": {"state": {"name": "Ethernet5/4/1"}, "name": "Ethernet5/4/1"}, "TempSensor5/5": {"state": {"name": "TempSensor5/5"}, "name": "TempSensor5/5"}, "Ethernet5/12/1": {"state": {"name": "Ethernet5/12/1"}, "name": "Ethernet5/12/1"}, "Ethernet5/3/1": {"state": {"name": "Ethernet5/3/1"}, "name": "Ethernet5/3/1"}, "Ethernet5/29/1": {"state": {"name": "Ethernet5/29/1"}, "name": "Ethernet5/29/1"}, "Ethernet5/13/1": {"state": {"name": "Ethernet5/13/1"}, "name": "Ethernet5/13/1"}, "Ethernet5/2/1": {"state": {"name": "Ethernet5/2/1"}, "name": "Ethernet5/2/1"}, "TempSensor5/7": {"state": {"name": "TempSensor5/7"}, "name": "TempSensor5/7"}, "Ethernet5/28/1": {"state": {"name": "Ethernet5/28/1"}, "name": "Ethernet5/28/1"}, "Ethernet5/10/1": {"state": {"name": "Ethernet5/10/1"}, "name": "Ethernet5/10/1"}, "Ethernet5/36/1": {"state": {"name": "Ethernet5/36/1"}, "name": "Ethernet5/36/1"}, "Ethernet5/27/1": {"state": {"name": "Ethernet5/27/1"}, "name": "Ethernet5/27/1"}, "TempSensor5/11": {"state": {"name": "TempSensor5/11"}, "name": "TempSensor5/11"}, "TempSensor5/10": {"state": {"name": "TempSensor5/10"}, "name": "TempSensor5/10"}, "Ethernet5/30/1": {"state": {"name": "Ethernet5/30/1"}, "name": "Ethernet5/30/1"}, "TempSensor5/12": {"state": {"name": "TempSensor5/12"}, "name": "TempSensor5/12"}, "Ethernet5/26/1": {"state": {"name": "Ethernet5/26/1"}, "name": "Ethernet5/26/1"}, "Ethernet5/16/1": {"state": {"name": "Ethernet5/16/1"}, "name": "Ethernet5/16/1"}, "Ethernet5/31/1": {"state": {"name": "Ethernet5/31/1"}, "name": "Ethernet5/31/1"}, "TempSensor5/2": {"state": {"name": "TempSensor5/2"}, "name": "TempSensor5/2"}, "Ethernet5/25/1": {"state": {"name": "Ethernet5/25/1"}, "name": "Ethernet5/25/1"}, "Ethernet5/17/1": {"state": {"name": "Ethernet5/17/1"}, "name": "Ethernet5/17/1"}}}}, "Linecard4": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Linecard4", "serial-no": "JPE13510269", "part-no": "7500E-72S-LC", "type": "LINECARD"}, "name": "Linecard4", "subcomponents": {"subcomponent": {"Ethernet4/42": {"state": {"name": "Ethernet4/42"}, "name": "Ethernet4/42"}, "Ethernet4/14": {"state": {"name": "Ethernet4/14"}, "name": "Ethernet4/14"}, "Ethernet4/28": {"state": {"name": "Ethernet4/28"}, "name": "Ethernet4/28"}, "Ethernet4/29": {"state": {"name": "Ethernet4/29"}, "name": "Ethernet4/29"}, "Ethernet4/43": {"state": {"name": "Ethernet4/43"}, "name": "Ethernet4/43"}, "Ethernet4/20": {"state": {"name": "Ethernet4/20"}, "name": "Ethernet4/20"}, "Ethernet4/21": {"state": {"name": "Ethernet4/21"}, "name": "Ethernet4/21"}, "Ethernet4/22": {"state": {"name": "Ethernet4/22"}, "name": "Ethernet4/22"}, "Ethernet4/23": {"state": {"name": "Ethernet4/23"}, "name": "Ethernet4/23"}, "Ethernet4/24": {"state": {"name": "Ethernet4/24"}, "name": "Ethernet4/24"}, "Ethernet4/25": {"state": {"name": "Ethernet4/25"}, "name": "Ethernet4/25"}, "Ethernet4/26": {"state": {"name": "Ethernet4/26"}, "name": "Ethernet4/26"}, "Ethernet4/27": {"state": {"name": "Ethernet4/27"}, "name": "Ethernet4/27"}, "TempSensor4/4": {"state": {"name": "TempSensor4/4"}, "name": "TempSensor4/4"}, "TempSensor4/5": {"state": {"name": "TempSensor4/5"}, "name": "TempSensor4/5"}, "TempSensor4/6": {"state": {"name": "TempSensor4/6"}, "name": "TempSensor4/6"}, "TempSensor4/7": {"state": {"name": "TempSensor4/7"}, "name": "TempSensor4/7"}, "Ethernet4/46": {"state": {"name": "Ethernet4/46"}, "name": "Ethernet4/46"}, "TempSensor4/1": {"state": {"name": "TempSensor4/1"}, "name": "TempSensor4/1"}, "TempSensor4/2": {"state": {"name": "TempSensor4/2"}, "name": "TempSensor4/2"}, "TempSensor4/3": {"state": {"name": "TempSensor4/3"}, "name": "TempSensor4/3"}, "Ethernet4/48": {"state": {"name": "Ethernet4/48"}, "name": "Ethernet4/48"}, "Ethernet4/47": {"state": {"name": "Ethernet4/47"}, "name": "Ethernet4/47"}, "Ethernet4/49/1": {"state": {"name": "Ethernet4/49/1"}, "name": "Ethernet4/49/1"}, "Ethernet4/44": {"state": {"name": "Ethernet4/44"}, "name": "Ethernet4/44"}, "Ethernet4/40": {"state": {"name": "Ethernet4/40"}, "name": "Ethernet4/40"}, "Ethernet4/45": {"state": {"name": "Ethernet4/45"}, "name": "Ethernet4/45"}, "Ethernet4/13": {"state": {"name": "Ethernet4/13"}, "name": "Ethernet4/13"}, "Ethernet4/5": {"state": {"name": "Ethernet4/5"}, "name": "Ethernet4/5"}, "Ethernet4/4": {"state": {"name": "Ethernet4/4"}, "name": "Ethernet4/4"}, "Ethernet4/7": {"state": {"name": "Ethernet4/7"}, "name": "Ethernet4/7"}, "Ethernet4/6": {"state": {"name": "Ethernet4/6"}, "name": "Ethernet4/6"}, "Ethernet4/1": {"state": {"name": "Ethernet4/1"}, "name": "Ethernet4/1"}, "Ethernet4/3": {"state": {"name": "Ethernet4/3"}, "name": "Ethernet4/3"}, "Ethernet4/2": {"state": {"name": "Ethernet4/2"}, "name": "Ethernet4/2"}, "Ethernet4/50/1": {"state": {"name": "Ethernet4/50/1"}, "name": "Ethernet4/50/1"}, "Ethernet4/9": {"state": {"name": "Ethernet4/9"}, "name": "Ethernet4/9"}, "Ethernet4/8": {"state": {"name": "Ethernet4/8"}, "name": "Ethernet4/8"}, "Ethernet4/12": {"state": {"name": "Ethernet4/12"}, "name": "Ethernet4/12"}, "Ethernet4/11": {"state": {"name": "Ethernet4/11"}, "name": "Ethernet4/11"}, "Ethernet4/10": {"state": {"name": "Ethernet4/10"}, "name": "Ethernet4/10"}, "Ethernet4/39": {"state": {"name": "Ethernet4/39"}, "name": "Ethernet4/39"}, "Ethernet4/38": {"state": {"name": "Ethernet4/38"}, "name": "Ethernet4/38"}, "Ethernet4/15": {"state": {"name": "Ethernet4/15"}, "name": "Ethernet4/15"}, "Ethernet4/41": {"state": {"name": "Ethernet4/41"}, "name": "Ethernet4/41"}, "Ethernet4/17": {"state": {"name": "Ethernet4/17"}, "name": "Ethernet4/17"}, "Ethernet4/16": {"state": {"name": "Ethernet4/16"}, "name": "Ethernet4/16"}, "Ethernet4/33": {"state": {"name": "Ethernet4/33"}, "name": "Ethernet4/33"}, "Ethernet4/32": {"state": {"name": "Ethernet4/32"}, "name": "Ethernet4/32"}, "Ethernet4/31": {"state": {"name": "Ethernet4/31"}, "name": "Ethernet4/31"}, "Ethernet4/30": {"state": {"name": "Ethernet4/30"}, "name": "Ethernet4/30"}, "Ethernet4/37": {"state": {"name": "Ethernet4/37"}, "name": "Ethernet4/37"}, "Ethernet4/36": {"state": {"name": "Ethernet4/36"}, "name": "Ethernet4/36"}, "Ethernet4/35": {"state": {"name": "Ethernet4/35"}, "name": "Ethernet4/35"}, "Ethernet4/34": {"state": {"name": "Ethernet4/34"}, "name": "Ethernet4/34"}, "Ethernet4/19": {"state": {"name": "Ethernet4/19"}, "name": "Ethernet4/19"}, "Ethernet4/18": {"state": {"name": "Ethernet4/18"}, "name": "Ethernet4/18"}}}}, "Linecard6": {"state": {"mfg-name": "Arista Networks", "version": "03.00", "name": "Linecard6", "serial-no": "JPE16030547", "part-no": "7500E-36Q-LC", "type": "LINECARD"}, "name": "Linecard6", "subcomponents": {"subcomponent": {"Ethernet6/24/1": {"state": {"name": "Ethernet6/24/1"}, "name": "Ethernet6/24/1"}, "Ethernet6/15/1": {"state": {"name": "Ethernet6/15/1"}, "name": "Ethernet6/15/1"}, "Ethernet6/33/1": {"state": {"name": "Ethernet6/33/1"}, "name": "Ethernet6/33/1"}, "TempSensor6/10": {"state": {"name": "TempSensor6/10"}, "name": "TempSensor6/10"}, "TempSensor6/11": {"state": {"name": "TempSensor6/11"}, "name": "TempSensor6/11"}, "TempSensor6/12": {"state": {"name": "TempSensor6/12"}, "name": "TempSensor6/12"}, "Ethernet6/14/1": {"state": {"name": "Ethernet6/14/1"}, "name": "Ethernet6/14/1"}, "Ethernet6/18/1": {"state": {"name": "Ethernet6/18/1"}, "name": "Ethernet6/18/1"}, "Ethernet6/22/1": {"state": {"name": "Ethernet6/22/1"}, "name": "Ethernet6/22/1"}, "Ethernet6/31/1": {"state": {"name": "Ethernet6/31/1"}, "name": "Ethernet6/31/1"}, "Ethernet6/35/1": {"state": {"name": "Ethernet6/35/1"}, "name": "Ethernet6/35/1"}, "Ethernet6/23/1": {"state": {"name": "Ethernet6/23/1"}, "name": "Ethernet6/23/1"}, "Ethernet6/6/1": {"state": {"name": "Ethernet6/6/1"}, "name": "Ethernet6/6/1"}, "Ethernet6/30/1": {"state": {"name": "Ethernet6/30/1"}, "name": "Ethernet6/30/1"}, "Ethernet6/34/1": {"state": {"name": "Ethernet6/34/1"}, "name": "Ethernet6/34/1"}, "Ethernet6/1/1": {"state": {"name": "Ethernet6/1/1"}, "name": "Ethernet6/1/1"}, "Ethernet6/19/1": {"state": {"name": "Ethernet6/19/1"}, "name": "Ethernet6/19/1"}, "Ethernet6/13/1": {"state": {"name": "Ethernet6/13/1"}, "name": "Ethernet6/13/1"}, "Ethernet6/2/1": {"state": {"name": "Ethernet6/2/1"}, "name": "Ethernet6/2/1"}, "Ethernet6/36/1": {"state": {"name": "Ethernet6/36/1"}, "name": "Ethernet6/36/1"}, "Ethernet6/12/1": {"state": {"name": "Ethernet6/12/1"}, "name": "Ethernet6/12/1"}, "Ethernet6/3/1": {"state": {"name": "Ethernet6/3/1"}, "name": "Ethernet6/3/1"}, "Ethernet6/7/1": {"state": {"name": "Ethernet6/7/1"}, "name": "Ethernet6/7/1"}, "Ethernet6/11/1": {"state": {"name": "Ethernet6/11/1"}, "name": "Ethernet6/11/1"}, "Ethernet6/4/1": {"state": {"name": "Ethernet6/4/1"}, "name": "Ethernet6/4/1"}, "Ethernet6/20/1": {"state": {"name": "Ethernet6/20/1"}, "name": "Ethernet6/20/1"}, "Ethernet6/8/1": {"state": {"name": "Ethernet6/8/1"}, "name": "Ethernet6/8/1"}, "Ethernet6/5/1": {"state": {"name": "Ethernet6/5/1"}, "name": "Ethernet6/5/1"}, "Ethernet6/10/1": {"state": {"name": "Ethernet6/10/1"}, "name": "Ethernet6/10/1"}, "Ethernet6/25/1": {"state": {"name": "Ethernet6/25/1"}, "name": "Ethernet6/25/1"}, "Ethernet6/9/1": {"state": {"name": "Ethernet6/9/1"}, "name": "Ethernet6/9/1"}, "Ethernet6/21/1": {"state": {"name": "Ethernet6/21/1"}, "name": "Ethernet6/21/1"}, "Ethernet6/17/1": {"state": {"name": "Ethernet6/17/1"}, "name": "Ethernet6/17/1"}, "Ethernet6/16/1": {"state": {"name": "Ethernet6/16/1"}, "name": "Ethernet6/16/1"}, "TempSensor6/8": {"state": {"name": "TempSensor6/8"}, "name": "TempSensor6/8"}, "TempSensor6/9": {"state": {"name": "TempSensor6/9"}, "name": "TempSensor6/9"}, "TempSensor6/2": {"state": {"name": "TempSensor6/2"}, "name": "TempSensor6/2"}, "TempSensor6/3": {"state": {"name": "TempSensor6/3"}, "name": "TempSensor6/3"}, "TempSensor6/1": {"state": {"name": "TempSensor6/1"}, "name": "TempSensor6/1"}, "TempSensor6/6": {"state": {"name": "TempSensor6/6"}, "name": "TempSensor6/6"}, "TempSensor6/7": {"state": {"name": "TempSensor6/7"}, "name": "TempSensor6/7"}, "TempSensor6/4": {"state": {"name": "TempSensor6/4"}, "name": "TempSensor6/4"}, "TempSensor6/5": {"state": {"name": "TempSensor6/5"}, "name": "TempSensor6/5"}, "Ethernet6/28/1": {"state": {"name": "Ethernet6/28/1"}, "name": "Ethernet6/28/1"}, "Ethernet6/26/1": {"state": {"name": "Ethernet6/26/1"}, "name": "Ethernet6/26/1"}, "Ethernet6/29/1": {"state": {"name": "Ethernet6/29/1"}, "name": "Ethernet6/29/1"}, "Ethernet6/27/1": {"state": {"name": "Ethernet6/27/1"}, "name": "Ethernet6/27/1"}, "Ethernet6/32/1": {"state": {"name": "Ethernet6/32/1"}, "name": "Ethernet6/32/1"}}}}, "Ethernet3/50/1": {"state": {"type": "PORT", "name": "Ethernet3/50/1"}, "name": "Ethernet3/50/1", "subcomponents": {"subcomponent": {"xcvr_3/50": {"state": {"name": "xcvr_3/50"}, "name": "xcvr_3/50"}}}}, "TempSensor1/9": {"state": {"type": "SENSOR", "name": "TempSensor1/9", "temperature": {"max": 31.0, "instant": 20.0}, "description": "Front sensor"}, "name": "TempSensor1/9", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 75.0}, "name": "critical-threshold"}}}}, "TempSensor1/8": {"state": {"type": "SENSOR", "name": "TempSensor1/8", "temperature": {"max": 33.0, "instant": 23.0}, "description": "Rear sensor"}, "name": "TempSensor1/8", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 75.0}, "name": "critical-threshold"}}}}, "TempSensor1/1": {"state": {"type": "SENSOR", "name": "TempSensor1/1", "temperature": {"max": 50.0, "instant": 33.0}, "description": "Digital Temperature Sensor on cpu0"}, "name": "TempSensor1/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor1/3": {"state": {"type": "SENSOR", "name": "TempSensor1/3", "temperature": {"max": 44.0, "instant": 27.0}, "description": "Digital Temperature Sensor on cpu2"}, "name": "TempSensor1/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor1/2": {"state": {"type": "SENSOR", "name": "TempSensor1/2", "temperature": {"max": 50.0, "instant": 30.0}, "description": "Digital Temperature Sensor on cpu1"}, "name": "TempSensor1/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor1/5": {"state": {"type": "SENSOR", "name": "TempSensor1/5", "temperature": {"max": 38.0, "instant": 28.0}, "description": "Supervisor temp sensor"}, "name": "TempSensor1/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 85.0}, "name": "critical-threshold"}}}}, "TempSensor1/4": {"state": {"type": "SENSOR", "name": "TempSensor1/4", "temperature": {"max": 43.0, "instant": 29.0}, "description": "Digital Temperature Sensor on cpu3"}, "name": "TempSensor1/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor1/7": {"state": {"type": "SENSOR", "name": "TempSensor1/7", "temperature": {"max": 57.0, "instant": 44.0}, "description": "PlxFc sensor"}, "name": "TempSensor1/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 103.0}, "name": "critical-threshold"}}}}, "TempSensor1/6": {"state": {"type": "SENSOR", "name": "TempSensor1/6", "temperature": {"max": 57.0, "instant": 46.0}, "description": "PlxLc sensor"}, "name": "TempSensor1/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 103.0}, "name": "critical-threshold"}}}}, "Ethernet4/28": {"state": {"type": "PORT", "name": "Ethernet4/28"}, "name": "Ethernet4/28"}, "TempSensor2/7": {"state": {"type": "SENSOR", "name": "TempSensor2/7", "temperature": {"max": 60.0, "instant": 50.0}, "description": "PlxFc sensor"}, "name": "TempSensor2/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 103.0}, "name": "critical-threshold"}}}}, "TempSensor2/4": {"state": {"type": "SENSOR", "name": "TempSensor2/4", "temperature": {"max": 53.0, "instant": 35.0}, "description": "Digital Temperature Sensor on cpu3"}, "name": "TempSensor2/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor2/5": {"state": {"type": "SENSOR", "name": "TempSensor2/5", "temperature": {"max": 37.0, "instant": 29.0}, "description": "Supervisor temp sensor"}, "name": "TempSensor2/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 85.0}, "name": "critical-threshold"}}}}, "TempSensor2/2": {"state": {"type": "SENSOR", "name": "TempSensor2/2", "temperature": {"max": 51.0, "instant": 30.0}, "description": "Digital Temperature Sensor on cpu1"}, "name": "TempSensor2/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor2/3": {"state": {"type": "SENSOR", "name": "TempSensor2/3", "temperature": {"max": 54.0, "instant": 33.0}, "description": "Digital Temperature Sensor on cpu2"}, "name": "TempSensor2/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor2/1": {"state": {"type": "SENSOR", "name": "TempSensor2/1", "temperature": {"max": 59.0, "instant": 37.0}, "description": "Digital Temperature Sensor on cpu0"}, "name": "TempSensor2/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/1/1": {"state": {"type": "PORT", "name": "Ethernet6/1/1"}, "name": "Ethernet6/1/1", "subcomponents": {"subcomponent": {"xcvr_6/1": {"state": {"name": "xcvr_6/1"}, "name": "xcvr_6/1"}}}}, "Ethernet4/21": {"state": {"type": "PORT", "name": "Ethernet4/21"}, "name": "Ethernet4/21"}, "TempSensor3/5": {"state": {"type": "SENSOR", "name": "TempSensor3/5", "temperature": {"max": 32.0, "instant": 23.0}, "description": "Inlet sensor"}, "name": "TempSensor3/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "Ethernet4/23": {"state": {"type": "PORT", "name": "Ethernet4/23"}, "name": "Ethernet4/23"}, "Ethernet4/24": {"state": {"type": "PORT", "name": "Ethernet4/24"}, "name": "Ethernet4/24"}, "Ethernet4/25": {"state": {"type": "PORT", "name": "Ethernet4/25"}, "name": "Ethernet4/25"}, "TempSensor3/1": {"state": {"type": "SENSOR", "name": "TempSensor3/1", "temperature": {"max": 46.0, "instant": 39.0}, "description": "Board sensor"}, "name": "TempSensor3/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet4/27": {"state": {"type": "PORT", "name": "Ethernet4/27"}, "name": "Ethernet4/27"}, "xcvr_6/15": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3786028215286006}, "input-power": {"instant": 3.5360852070863924}, "laser-bias-current": {"instant": 40.972}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4388875810927493}, "input-power": {"instant": 3.1494108669298315}, "laser-bias-current": {"instant": 38.976}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.3649860815669923}, "input-power": {"instant": 3.180842140032647}, "laser-bias-current": {"instant": 38.538000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5140049803561784}, "input-power": {"instant": 3.2166055684867034}, "laser-bias-current": {"instant": 34.358000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA161900940", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/15"}, "name": "xcvr_6/15"}, "xcvr_6/14": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3506901382344783}, "input-power": {"instant": 2.803279187476755}, "laser-bias-current": {"instant": 47.794000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4154383422065298}, "input-power": {"instant": 3.1026836663244772}, "laser-bias-current": {"instant": 44.552}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5066435352956065}, "input-power": {"instant": 3.0713219065578024}, "laser-bias-current": {"instant": 44.188}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5484984152074421}, "input-power": {"instant": 2.441781250225441}, "laser-bias-current": {"instant": 35.502}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100059", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/14"}, "name": "xcvr_6/14"}, "xcvr_6/17": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.2182237675218488}, "input-power": {"instant": 0.3124683623267499}, "laser-bias-current": {"instant": 46.978}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4528965905414637}, "input-power": {"instant": 1.546065392836229}, "laser-bias-current": {"instant": 45.652}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.042138841993232}, "input-power": {"instant": 1.0274233614457007}, "laser-bias-current": {"instant": 45.816}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.9725730969341972}, "input-power": {"instant": 0.9729202409189597}, "laser-bias-current": {"instant": 48.864000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100393", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/17"}, "name": "xcvr_6/17"}, "xcvr_6/16": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 3.047274293836333}, "input-power": {"instant": 2.6601990885349824}, "laser-bias-current": {"instant": 39.21}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4326468201122067}, "input-power": {"instant": 2.4765417581902405}, "laser-bias-current": {"instant": 40.79}}}, "2": {"state": {"index": 2, "output-power": {"instant": 2.675002593932656}, "input-power": {"instant": 2.572944983622567}, "laser-bias-current": {"instant": 40.754}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.6184695952851902}, "input-power": {"instant": 2.4770328193417157}, "laser-bias-current": {"instant": 70.718}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH1603000AW", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/16"}, "name": "xcvr_6/16"}, "TempSensor5/9": {"state": {"type": "SENSOR", "name": "TempSensor5/9", "temperature": {"max": 74.25, "instant": 69.0}, "description": "Switch chip 4 sensor"}, "name": "TempSensor5/9", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "xcvr_6/10": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.7017367380627135}, "input-power": {"instant": 2.3979981844709863}, "laser-bias-current": {"instant": 38.048}}}, "1": {"state": {"index": 1, "output-power": {"instant": 2.5051758561048487}, "input-power": {"instant": 1.8092831999399106}, "laser-bias-current": {"instant": 36.428}}}, "2": {"state": {"index": 2, "output-power": {"instant": 2.5212455250564414}, "input-power": {"instant": 2.218834917852406}, "laser-bias-current": {"instant": 35.962}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.3334726558624288}, "input-power": {"instant": 2.9205660462146854}, "laser-bias-current": {"instant": 39.772}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH1605000G7", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/10"}, "name": "xcvr_6/10"}, "TempSensor4/2": {"state": {"type": "SENSOR", "name": "TempSensor4/2", "temperature": {"max": 45.0, "instant": 36.0}, "description": "Switch chip 1 sensor"}, "name": "TempSensor4/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor4/3": {"state": {"type": "SENSOR", "name": "TempSensor4/3", "temperature": {"max": 45.0, "instant": 37.0}, "description": "Switch chip 2 sensor"}, "name": "TempSensor4/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor5/5": {"state": {"type": "SENSOR", "name": "TempSensor5/5", "temperature": {"max": 56.75, "instant": 50.75}, "description": "Switch chip 1 sensor"}, "name": "TempSensor5/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor5/4": {"state": {"type": "SENSOR", "name": "TempSensor5/4", "temperature": {"max": 72.0, "instant": 67.0}, "description": "Board sensor"}, "name": "TempSensor5/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor5/7": {"state": {"type": "SENSOR", "name": "TempSensor5/7", "temperature": {"max": 69.0, "instant": 63.0}, "description": "Board sensor"}, "name": "TempSensor5/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor15/2": {"state": {"type": "SENSOR", "name": "TempSensor15/2", "temperature": {"max": 58.0, "instant": 52.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor15/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor5/1": {"state": {"type": "SENSOR", "name": "TempSensor5/1", "temperature": {"max": 46.0, "instant": 40.0}, "description": "Inlet sensor"}, "name": "TempSensor5/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "xcvr_6/18": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3580028330211125}, "input-power": {"instant": 1.744668588860181}, "laser-bias-current": {"instant": 41.21}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5887489845599667}, "input-power": {"instant": 2.3182625864728124}, "laser-bias-current": {"instant": 37.286}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.582720046520838}, "input-power": {"instant": 1.9337508061569908}, "laser-bias-current": {"instant": 38.732}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5736609176227034}, "input-power": {"instant": 2.047438326887998}, "laser-bias-current": {"instant": 34.86}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA160800021", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/18"}, "name": "xcvr_6/18"}, "TempSensor5/3": {"state": {"type": "SENSOR", "name": "TempSensor5/3", "temperature": {"max": 50.5, "instant": 45.0}, "description": "Outlet sensor"}, "name": "TempSensor5/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor5/2": {"state": {"type": "SENSOR", "name": "TempSensor5/2", "temperature": {"max": 68.75, "instant": 63.5}, "description": "Board sensor"}, "name": "TempSensor5/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet3/18": {"state": {"type": "PORT", "name": "Ethernet3/18"}, "name": "Ethernet3/18"}, "Ethernet3/19": {"state": {"type": "PORT", "name": "Ethernet3/19"}, "name": "Ethernet3/19"}, "Ethernet3/10": {"state": {"type": "PORT", "name": "Ethernet3/10"}, "name": "Ethernet3/10"}, "Ethernet3/11": {"state": {"type": "PORT", "name": "Ethernet3/11"}, "name": "Ethernet3/11"}, "Ethernet3/12": {"state": {"type": "PORT", "name": "Ethernet3/12"}, "name": "Ethernet3/12"}, "Ethernet3/13": {"state": {"type": "PORT", "name": "Ethernet3/13"}, "name": "Ethernet3/13"}, "Ethernet3/14": {"state": {"type": "PORT", "name": "Ethernet3/14"}, "name": "Ethernet3/14"}, "Ethernet3/15": {"state": {"type": "PORT", "name": "Ethernet3/15"}, "name": "Ethernet3/15"}, "Ethernet3/16": {"state": {"type": "PORT", "name": "Ethernet3/16"}, "name": "Ethernet3/16"}, "Ethernet3/17": {"state": {"type": "PORT", "name": "Ethernet3/17"}, "name": "Ethernet3/17"}, "Ethernet3/28": {"state": {"type": "PORT", "name": "Ethernet3/28"}, "name": "Ethernet3/28"}, "Ethernet6/2/1": {"state": {"type": "PORT", "name": "Ethernet6/2/1"}, "name": "Ethernet6/2/1", "subcomponents": {"subcomponent": {"xcvr_6/2": {"state": {"name": "xcvr_6/2"}, "name": "xcvr_6/2"}}}}, "TempSensor6/8": {"state": {"type": "SENSOR", "name": "TempSensor6/8", "temperature": {"max": 63.0, "instant": 56.75}, "description": "Switch chip 3 sensor"}, "name": "TempSensor6/8", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/9": {"state": {"type": "SENSOR", "name": "TempSensor6/9", "temperature": {"max": 80.25, "instant": 75.75}, "description": "Switch chip 4 sensor"}, "name": "TempSensor6/9", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/2": {"state": {"type": "SENSOR", "name": "TempSensor6/2", "temperature": {"max": 75.25, "instant": 70.5}, "description": "Board sensor"}, "name": "TempSensor6/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor6/3": {"state": {"type": "SENSOR", "name": "TempSensor6/3", "temperature": {"max": 52.75, "instant": 48.0}, "description": "Outlet sensor"}, "name": "TempSensor6/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor6/1": {"state": {"type": "SENSOR", "name": "TempSensor6/1", "temperature": {"max": 51.75, "instant": 46.25}, "description": "Inlet sensor"}, "name": "TempSensor6/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor6/6": {"state": {"type": "SENSOR", "name": "TempSensor6/6", "temperature": {"max": 83.75, "instant": 79.25}, "description": "Switch chip 2 sensor"}, "name": "TempSensor6/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/7": {"state": {"type": "SENSOR", "name": "TempSensor6/7", "temperature": {"max": 76.0, "instant": 71.0}, "description": "Board sensor"}, "name": "TempSensor6/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/4": {"state": {"type": "SENSOR", "name": "TempSensor6/4", "temperature": {"max": 76.0, "instant": 71.0}, "description": "Board sensor"}, "name": "TempSensor6/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/5": {"state": {"type": "SENSOR", "name": "TempSensor6/5", "temperature": {"max": 60.5, "instant": 54.75}, "description": "Switch chip 1 sensor"}, "name": "TempSensor6/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Management2/1": {"state": {"type": "PORT", "name": "Management2/1"}, "name": "Management2/1"}, "TempSensor6/10": {"state": {"type": "SENSOR", "name": "TempSensor6/10", "temperature": {"max": 75.0, "instant": 70.0}, "description": "Board sensor"}, "name": "TempSensor6/10", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/11": {"state": {"type": "SENSOR", "name": "TempSensor6/11", "temperature": {"max": 60.75, "instant": 55.0}, "description": "Switch chip 5 sensor"}, "name": "TempSensor6/11", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor6/12": {"state": {"type": "SENSOR", "name": "TempSensor6/12", "temperature": {"max": 81.5, "instant": 77.25}, "description": "Switch chip 6 sensor"}, "name": "TempSensor6/12", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "xcvr_5/18": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5094055396547734}, "input-power": {"instant": -0.09616741093766645}, "laser-bias-current": {"instant": 34.182}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5781928441729765}, "input-power": {"instant": 0.4898530257071121}, "laser-bias-current": {"instant": 29.256}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5688216443937675}, "input-power": {"instant": 0.4194507214526366}, "laser-bias-current": {"instant": 30.758}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4764541250174235}, "input-power": {"instant": 1.0428220709443803}, "laser-bias-current": {"instant": 27.16}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163600360", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/18"}, "name": "xcvr_5/18"}, "Management2/2": {"state": {"type": "PORT", "name": "Management2/2"}, "name": "Management2/2"}, "xcvr_5/10": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3385812520333484}, "input-power": {"instant": -0.038387066319929275}, "laser-bias-current": {"instant": 46.822}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4338956899465582}, "input-power": {"instant": 0.35629827790438995}, "laser-bias-current": {"instant": 45.212}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4807797676250578}, "input-power": {"instant": 0.44265299915319467}, "laser-bias-current": {"instant": 42.438}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.546065392836229}, "input-power": {"instant": -0.9210516458371698}, "laser-bias-current": {"instant": 36.884}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163100576", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/10"}, "name": "xcvr_5/10"}, "xcvr_5/11": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.4968088248293832}, "input-power": {"instant": 2.168517832843797}, "laser-bias-current": {"instant": 51.994}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5378438646936976}, "input-power": {"instant": 1.8627810344536755}, "laser-bias-current": {"instant": 49.88}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5011142512878184}, "input-power": {"instant": 1.1750329942923088}, "laser-bias-current": {"instant": 49.22}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.2865257363311846}, "input-power": {"instant": 0.5238609538937489}, "laser-bias-current": {"instant": 48.918}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800411", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/11"}, "name": "xcvr_5/11"}, "xcvr_5/12": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5384534008096518}, "input-power": {"instant": 1.3950127473591012}, "laser-bias-current": {"instant": 35.52}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.4612803567823818}, "input-power": {"instant": 1.2414542506165382}, "laser-bias-current": {"instant": 41.484}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5509300753040245}, "input-power": {"instant": 1.250581511720732}, "laser-bias-current": {"instant": 36.92}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.411674686462323}, "input-power": {"instant": 0.7401144600894494}, "laser-bias-current": {"instant": 46.574}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA160900525", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/12"}, "name": "xcvr_5/12"}, "xcvr_5/13": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.7554080401676808}, "input-power": {"instant": 0.21891873919109184}, "laser-bias-current": {"instant": 49.952}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.8469143081759887}, "input-power": {"instant": 0.8703566480566005}, "laser-bias-current": {"instant": 51.316}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.8087105165054362}, "input-power": {"instant": -0.5680236993107357}, "laser-bias-current": {"instant": 49.146}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.69527489553293}, "input-power": {"instant": -1.8601892436352818}, "laser-bias-current": {"instant": 45.578}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800401", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/13"}, "name": "xcvr_5/13"}, "xcvr_6/28": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -0.27612000892527355}, "input-power": {"instant": 3.1371961949509286}, "laser-bias-current": {"instant": 48.892}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.1132973670415014}, "input-power": {"instant": 2.9587484521737917}, "laser-bias-current": {"instant": 45.128}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.4473569745050687}, "input-power": {"instant": 3.0196272647336286}, "laser-bias-current": {"instant": 42.996}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.6284511327705067}, "input-power": {"instant": 3.095450032954359}, "laser-bias-current": {"instant": 40.910000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163600368", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/28"}, "name": "xcvr_6/28"}, "xcvr_6/33": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.084973713482591}, "input-power": {"instant": 2.496385455404173}, "laser-bias-current": {"instant": 55.446}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.825002473791999}, "input-power": {"instant": 2.5358028956218304}, "laser-bias-current": {"instant": 48.926}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.8161495172896114}, "input-power": {"instant": 2.2561938133339954}, "laser-bias-current": {"instant": 48.068}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.7926446433902532}, "input-power": {"instant": 2.488311928079616}, "laser-bias-current": {"instant": 46.042}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800402", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/33"}, "name": "xcvr_6/33"}, "xcvr_6/32": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.781132523146316}, "input-power": {"instant": 2.625934580260507}, "laser-bias-current": {"instant": 31.912}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.901635516307052}, "input-power": {"instant": 2.586851626074722}, "laser-bias-current": {"instant": 31.464000000000002}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.8452108585291116}, "input-power": {"instant": 2.255677134394709}, "laser-bias-current": {"instant": 34.724000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.777384504017192}, "input-power": {"instant": 1.8934992433919762}, "laser-bias-current": {"instant": 35.676}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800430", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/32"}, "name": "xcvr_6/32"}, "xcvr_6/31": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.7376882313664987}, "input-power": {"instant": 3.120291800255357}, "laser-bias-current": {"instant": 38.77}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.7105328755937599}, "input-power": {"instant": 2.910356747682661}, "laser-bias-current": {"instant": 41.688}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.7403071803802561}, "input-power": {"instant": 3.134242671691929}, "laser-bias-current": {"instant": 43.602000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.7940815151383571}, "input-power": {"instant": 3.3118426658608335}, "laser-bias-current": {"instant": 32.498}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800408", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/31"}, "name": "xcvr_6/31"}, "xcvr_6/30": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.280436738264572}, "input-power": {"instant": 2.946645895001745}, "laser-bias-current": {"instant": 52.36}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.6932168368183698}, "input-power": {"instant": 3.577252684006318}, "laser-bias-current": {"instant": 47.318}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.2652102554341216}, "input-power": {"instant": 3.539546793717099}, "laser-bias-current": {"instant": 51.262}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.7295302754635467}, "input-power": {"instant": 2.6670196688408776}, "laser-bias-current": {"instant": 42.924}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800359", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/30"}, "name": "xcvr_6/30"}, "TempSensor2/8": {"state": {"type": "SENSOR", "name": "TempSensor2/8", "temperature": {"max": 33.0, "instant": 24.0}, "description": "Rear sensor"}, "name": "TempSensor2/8", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 75.0}, "name": "critical-threshold"}}}}, "xcvr_5/2": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3436838460337874}, "input-power": {"instant": 2.7468884223755863}, "laser-bias-current": {"instant": 47.196}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.9516935143175509}, "input-power": {"instant": 2.3646168162681525}, "laser-bias-current": {"instant": 47.316}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.9843604534036299}, "input-power": {"instant": 2.5056636904012386}, "laser-bias-current": {"instant": 50.31}}}, "3": {"state": {"index": 3, "output-power": {"instant": 0.7302145435973895}, "input-power": {"instant": 2.5671774597748698}, "laser-bias-current": {"instant": 46.730000000000004}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153500549", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_5/2"}, "name": "xcvr_5/2"}, "xcvr_6/29": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.2768778753985055}, "input-power": {"instant": 3.313665517857811}, "laser-bias-current": {"instant": 51.664}}}, "1": {"state": {"index": 1, "output-power": {"instant": 0.8303654241196456}, "input-power": {"instant": 3.4242268082220617}, "laser-bias-current": {"instant": 52.066}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.28571252692537463}, "input-power": {"instant": 3.2182618376850325}, "laser-bias-current": {"instant": 52.114000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5384534008096518}, "input-power": {"instant": 2.537982298682495}, "laser-bias-current": {"instant": 47.94}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800357", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/29"}, "name": "xcvr_6/29"}, "Ethernet3/36": {"state": {"type": "PORT", "name": "Ethernet3/36"}, "name": "Ethernet3/36", "subcomponents": {"subcomponent": {"xcvr_3/36": {"state": {"name": "xcvr_3/36"}, "name": "xcvr_3/36"}}}}, "Ethernet3/37": {"state": {"type": "PORT", "name": "Ethernet3/37"}, "name": "Ethernet3/37"}, "Ethernet3/34": {"state": {"type": "PORT", "name": "Ethernet3/34"}, "name": "Ethernet3/34", "subcomponents": {"subcomponent": {"xcvr_3/34": {"state": {"name": "xcvr_3/34"}, "name": "xcvr_3/34"}}}}, "Ethernet3/35": {"state": {"type": "PORT", "name": "Ethernet3/35"}, "name": "Ethernet3/35", "subcomponents": {"subcomponent": {"xcvr_3/35": {"state": {"name": "xcvr_3/35"}, "name": "xcvr_3/35"}}}}, "Ethernet3/32": {"state": {"type": "PORT", "name": "Ethernet3/32"}, "name": "Ethernet3/32"}, "Ethernet3/33": {"state": {"type": "PORT", "name": "Ethernet3/33"}, "name": "Ethernet3/33"}, "Ethernet3/30": {"state": {"type": "PORT", "name": "Ethernet3/30"}, "name": "Ethernet3/30"}, "Ethernet3/31": {"state": {"type": "PORT", "name": "Ethernet3/31"}, "name": "Ethernet3/31"}, "Ethernet6/8/1": {"state": {"type": "PORT", "name": "Ethernet6/8/1"}, "name": "Ethernet6/8/1", "subcomponents": {"subcomponent": {"xcvr_6/8": {"state": {"name": "xcvr_6/8"}, "name": "xcvr_6/8"}}}}, "Ethernet3/38": {"state": {"type": "PORT", "name": "Ethernet3/38"}, "name": "Ethernet3/38"}, "Ethernet3/39": {"state": {"type": "PORT", "name": "Ethernet3/39"}, "name": "Ethernet3/39"}, "Ethernet6/9/1": {"state": {"type": "PORT", "name": "Ethernet6/9/1"}, "name": "Ethernet6/9/1", "subcomponents": {"subcomponent": {"xcvr_6/9": {"state": {"name": "xcvr_6/9"}, "name": "xcvr_6/9"}}}}, "Ethernet5/9/1": {"state": {"type": "PORT", "name": "Ethernet5/9/1"}, "name": "Ethernet5/9/1", "subcomponents": {"subcomponent": {"xcvr_5/9": {"state": {"name": "xcvr_5/9"}, "name": "xcvr_5/9"}}}}, "Ethernet5/19/1": {"state": {"type": "PORT", "name": "Ethernet5/19/1"}, "name": "Ethernet5/19/1"}, "TempSensor5/11": {"state": {"type": "SENSOR", "name": "TempSensor5/11", "temperature": {"max": 51.75, "instant": 45.25}, "description": "Switch chip 5 sensor"}, "name": "TempSensor5/11", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor5/10": {"state": {"type": "SENSOR", "name": "TempSensor5/10", "temperature": {"max": 67.0, "instant": 62.0}, "description": "Board sensor"}, "name": "TempSensor5/10", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "xcvr_3/36": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.3900356324280416}, "input-power": {"instant": -5.476001540885584}, "laser-bias-current": {"instant": 26.22}}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN0FD692787", "part-no": "SFP10G-LR-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_3/36"}, "name": "xcvr_3/36"}, "TempSensor5/12": {"state": {"type": "SENSOR", "name": "TempSensor5/12", "temperature": {"max": 73.75, "instant": 68.25}, "description": "Switch chip 6 sensor"}, "name": "TempSensor5/12", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet4/26": {"state": {"type": "PORT", "name": "Ethernet4/26"}, "name": "Ethernet4/26"}, "xcvr_4/50": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}, "1": {"state": {"index": 1, "output-power": {"instant": -0.6278310913729435}, "input-power": {"instant": 0.06337660374550858}, "laser-bias-current": {"instant": 5.384}}}, "2": {"state": {"index": 2, "output-power": {"instant": -0.34046110897937076}, "input-power": {"instant": -0.22688026603074007}, "laser-bias-current": {"instant": 5.518}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.09972101229705377}, "input-power": {"instant": -0.25396207912967483}, "laser-bias-current": {"instant": 5.886}}}, "4": {"state": {"index": 4, "output-power": {"instant": -0.12959713020733066}, "input-power": {"instant": -0.6338573802478864}, "laser-bias-current": {"instant": 5.432}}}, "5": {"state": {"index": 5, "output-power": {"instant": 0.11189687609991505}, "input-power": {"instant": -0.33295223342125535}, "laser-bias-current": {"instant": 5.822}}}, "6": {"state": {"index": 6, "output-power": {"instant": -0.06651960076740071}, "input-power": {"instant": -1.0385974855798041}, "laser-bias-current": {"instant": 5.402}}}, "7": {"state": {"index": 7, "output-power": {"instant": 0.11824095594308748}, "input-power": {"instant": -0.24752058759319073}, "laser-bias-current": {"instant": 5.378}}}, "8": {"state": {"index": 8, "output-power": {"instant": 0.10639116736629983}, "input-power": {"instant": -0.6333548699992475}, "laser-bias-current": {"instant": 5.708}}}, "9": {"state": {"index": 9, "output-power": {"instant": -0.2489001031383875}, "input-power": {"instant": -0.24292536462819925}, "laser-bias-current": {"instant": 5.38}}}, "10": {"state": {"index": 10, "output-power": {"instant": -0.22139270735302752}, "input-power": {"instant": -0.17186237868137333}, "laser-bias-current": {"instant": 5.824}}}, "11": {"state": {"index": 11, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}}}, "state": {"ethernet-pmd": "ETH_100GBASE_SR10", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "JPE13510269", "part-no": "7500E-72S-LC", "type": "TRANSCEIVER", "name": "xcvr_4/50"}, "name": "xcvr_4/50"}, "Ethernet3/29": {"state": {"type": "PORT", "name": "Ethernet3/29"}, "name": "Ethernet3/29"}, "Ethernet4/46": {"state": {"type": "PORT", "name": "Ethernet4/46"}, "name": "Ethernet4/46"}, "TempSensorP1/2": {"state": {"type": "SENSOR", "name": "TempSensorP1/2", "temperature": {"max": 30.0, "instant": 24.875}, "description": "Power supply sensor"}, "name": "TempSensorP1/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP1/1": {"state": {"type": "SENSOR", "name": "TempSensorP1/1", "temperature": {"max": 47.5, "instant": 32.0}, "description": "Power supply sensor"}, "name": "TempSensorP1/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP2/1": {"state": {"type": "SENSOR", "name": "TempSensorP2/1", "temperature": {"max": 46.25, "instant": 31.75}, "description": "Power supply sensor"}, "name": "TempSensorP2/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "xcvr_6/24": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5527529273009977}, "input-power": {"instant": 2.9165739610218067}, "laser-bias-current": {"instant": 38.686}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5560928367891558}, "input-power": {"instant": 3.084790401617301}, "laser-bias-current": {"instant": 32.728}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5736609176227034}, "input-power": {"instant": 2.4286429614070704}, "laser-bias-current": {"instant": 37.872}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5026508697870389}, "input-power": {"instant": 2.580862843279794}, "laser-bias-current": {"instant": 29.64}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100696", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/24"}, "name": "xcvr_6/24"}, "TempSensorP2/2": {"state": {"type": "SENSOR", "name": "TempSensorP2/2", "temperature": {"max": 31.0, "instant": 24.25}, "description": "Power supply sensor"}, "name": "TempSensorP2/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP3/1": {"state": {"type": "SENSOR", "name": "TempSensorP3/1", "temperature": {"max": 48.5, "instant": 31.625}, "description": "Power supply sensor"}, "name": "TempSensorP3/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP3/2": {"state": {"type": "SENSOR", "name": "TempSensorP3/2", "temperature": {"max": 31.375, "instant": 24.375}, "description": "Power supply sensor"}, "name": "TempSensorP3/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP4/2": {"state": {"type": "SENSOR", "name": "TempSensorP4/2", "temperature": {"max": 34.375, "instant": 25.25}, "description": "Power supply sensor"}, "name": "TempSensorP4/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "TempSensorP4/1": {"state": {"type": "SENSOR", "name": "TempSensorP4/1", "temperature": {"max": 45.25, "instant": 31.5}, "description": "Power supply sensor"}, "name": "TempSensorP4/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 70.0}, "name": "critical-threshold"}}}}, "xcvr_6/25": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.3296372613072682}, "input-power": {"instant": 1.4126159062208998}, "laser-bias-current": {"instant": 26.080000000000002}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5204360248765125}, "input-power": {"instant": 1.3899701403263576}, "laser-bias-current": {"instant": 28.076}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.4776904626014709}, "input-power": {"instant": 1.6767171623002097}, "laser-bias-current": {"instant": 28.212}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4884934295922037}, "input-power": {"instant": 2.024883170600935}, "laser-bias-current": {"instant": 38.402}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162200388", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/25"}, "name": "xcvr_6/25"}, "Ethernet6/17/1": {"state": {"type": "PORT", "name": "Ethernet6/17/1"}, "name": "Ethernet6/17/1", "subcomponents": {"subcomponent": {"xcvr_6/17": {"state": {"name": "xcvr_6/17"}, "name": "xcvr_6/17"}}}}, "Ethernet6/6/1": {"state": {"type": "PORT", "name": "Ethernet6/6/1"}, "name": "Ethernet6/6/1", "subcomponents": {"subcomponent": {"xcvr_6/6": {"state": {"name": "xcvr_6/6"}, "name": "xcvr_6/6"}}}}, "TempSensor1/11": {"state": {"type": "SENSOR", "name": "TempSensor1/11", "temperature": {"max": 37.0, "instant": 27.0}, "description": "CPU VRM temp sensor 1"}, "name": "TempSensor1/11", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 105.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor1/10": {"state": {"type": "SENSOR", "name": "TempSensor1/10", "temperature": {"max": 37.0, "instant": 27.0}, "description": "CPU VRM temp sensor 0"}, "name": "TempSensor1/10", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 105.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet5/28/1": {"state": {"type": "PORT", "name": "Ethernet5/28/1"}, "name": "Ethernet5/28/1"}, "Ethernet4/4": {"state": {"type": "PORT", "name": "Ethernet4/4"}, "name": "Ethernet4/4", "subcomponents": {"subcomponent": {"xcvr_4/4": {"state": {"name": "xcvr_4/4"}, "name": "xcvr_4/4"}}}}, "xcvr_3/50": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}, "1": {"state": {"index": 1, "output-power": {"instant": -0.13631406429726933}, "input-power": {"instant": -0.4575749056067524}, "laser-bias-current": {"instant": 6.144}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.09620840814324794}, "input-power": {"instant": -0.17683530307934792}, "laser-bias-current": {"instant": 5.612}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.10105436281226954}, "input-power": {"instant": -0.7572071393811841}, "laser-bias-current": {"instant": 6.198}}}, "4": {"state": {"index": 4, "output-power": {"instant": -0.1430414031015781}, "input-power": {"instant": -0.2881695914383853}, "laser-bias-current": {"instant": 5.6240000000000006}}}, "5": {"state": {"index": 5, "output-power": {"instant": 0.08174184006426444}, "input-power": {"instant": -0.32405227328110353}, "laser-bias-current": {"instant": 5.586}}}, "6": {"state": {"index": 6, "output-power": {"instant": 0.13427127070696265}, "input-power": {"instant": -1.0193333935836524}, "laser-bias-current": {"instant": 5.562}}}, "7": {"state": {"index": 7, "output-power": {"instant": 0.07449044497748858}, "input-power": {"instant": -0.4730440041308315}, "laser-bias-current": {"instant": 5.488}}}, "8": {"state": {"index": 8, "output-power": {"instant": 0.35029282202367895}, "input-power": {"instant": -0.3976712687148787}, "laser-bias-current": {"instant": 5.5440000000000005}}}, "9": {"state": {"index": 9, "output-power": {"instant": 0.306401948686319}, "input-power": {"instant": -0.9049745859458458}, "laser-bias-current": {"instant": 5.622}}}, "10": {"state": {"index": 10, "output-power": {"instant": 0.31570032141100324}, "input-power": {"instant": -0.6509774167768612}, "laser-bias-current": {"instant": 5.566}}}, "11": {"state": {"index": 11, "output-power": {"instant": -30.0}, "input-power": {"instant": -30.0}, "laser-bias-current": {"instant": 0.0}}}}}, "state": {"ethernet-pmd": "ETH_100GBASE_SR10", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "JPE13510257", "part-no": "7500E-72S-LC", "type": "TRANSCEIVER", "name": "xcvr_3/50"}, "name": "xcvr_3/50"}, "Fabric6": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric6", "serial-no": "JPE13473813", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric6", "subcomponents": {"subcomponent": {"TempSensor16/2": {"state": {"name": "TempSensor16/2"}, "name": "TempSensor16/2"}, "TempSensor16/1": {"state": {"name": "TempSensor16/1"}, "name": "TempSensor16/1"}}}}, "Fabric4": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric4", "serial-no": "JPE13492642", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric4", "subcomponents": {"subcomponent": {"TempSensor14/1": {"state": {"name": "TempSensor14/1"}, "name": "TempSensor14/1"}, "TempSensor14/2": {"state": {"name": "TempSensor14/2"}, "name": "TempSensor14/2"}}}}, "Fabric5": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric5", "serial-no": "JPE13470733", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric5", "subcomponents": {"subcomponent": {"TempSensor15/1": {"state": {"name": "TempSensor15/1"}, "name": "TempSensor15/1"}, "TempSensor15/2": {"state": {"name": "TempSensor15/2"}, "name": "TempSensor15/2"}}}}, "Fabric2": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric2", "serial-no": "JPE13470700", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric2", "subcomponents": {"subcomponent": {"TempSensor12/2": {"state": {"name": "TempSensor12/2"}, "name": "TempSensor12/2"}, "TempSensor12/1": {"state": {"name": "TempSensor12/1"}, "name": "TempSensor12/1"}}}}, "Fabric3": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric3", "serial-no": "JPE13470749", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric3", "subcomponents": {"subcomponent": {"TempSensor13/2": {"state": {"name": "TempSensor13/2"}, "name": "TempSensor13/2"}, "TempSensor13/1": {"state": {"name": "TempSensor13/1"}, "name": "TempSensor13/1"}}}}, "Fabric1": {"state": {"mfg-name": "Arista Networks", "version": "01.01", "name": "Fabric1", "serial-no": "JPE13470767", "part-no": "7504E-FM", "type": "LINECARD"}, "name": "Fabric1", "subcomponents": {"subcomponent": {"TempSensor11/1": {"state": {"name": "TempSensor11/1"}, "name": "TempSensor11/1"}, "TempSensor11/2": {"state": {"name": "TempSensor11/2"}, "name": "TempSensor11/2"}}}}, "TempSensor2/10": {"state": {"type": "SENSOR", "name": "TempSensor2/10", "temperature": {"max": 37.0, "instant": 29.0}, "description": "CPU VRM temp sensor 0"}, "name": "TempSensor2/10", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 105.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor2/11": {"state": {"type": "SENSOR", "name": "TempSensor2/11", "temperature": {"max": 37.0, "instant": 29.0}, "description": "CPU VRM temp sensor 1"}, "name": "TempSensor2/11", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 105.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet6/7/1": {"state": {"type": "PORT", "name": "Ethernet6/7/1"}, "name": "Ethernet6/7/1", "subcomponents": {"subcomponent": {"xcvr_6/7": {"state": {"name": "xcvr_6/7"}, "name": "xcvr_6/7"}}}}, "Ethernet3/47": {"state": {"type": "PORT", "name": "Ethernet3/47"}, "name": "Ethernet3/47"}, "Ethernet3/46": {"state": {"type": "PORT", "name": "Ethernet3/46"}, "name": "Ethernet3/46"}, "Ethernet3/45": {"state": {"type": "PORT", "name": "Ethernet3/45"}, "name": "Ethernet3/45"}, "Ethernet3/44": {"state": {"type": "PORT", "name": "Ethernet3/44"}, "name": "Ethernet3/44"}, "Ethernet3/43": {"state": {"type": "PORT", "name": "Ethernet3/43"}, "name": "Ethernet3/43"}, "Ethernet3/42": {"state": {"type": "PORT", "name": "Ethernet3/42"}, "name": "Ethernet3/42"}, "Ethernet3/41": {"state": {"type": "PORT", "name": "Ethernet3/41"}, "name": "Ethernet3/41"}, "Ethernet3/40": {"state": {"type": "PORT", "name": "Ethernet3/40"}, "name": "Ethernet3/40"}, "Ethernet3/48": {"state": {"type": "PORT", "name": "Ethernet3/48"}, "name": "Ethernet3/48", "subcomponents": {"subcomponent": {"xcvr_3/48": {"state": {"name": "xcvr_3/48"}, "name": "xcvr_3/48"}}}}, "Ethernet5/26/1": {"state": {"type": "PORT", "name": "Ethernet5/26/1"}, "name": "Ethernet5/26/1"}, "DCS-7504": {"state": {"name": "DCS-7504", "serial-no": "HSH13485008", "part-no": "DCS-7504", "mfg-name": "Arista Networks", "version": "02.00", "type": "CHASSIS", "description": "DCS-7504 Chassis"}, "name": "DCS-7504", "subcomponents": {"subcomponent": {"powerSupply_4": {"state": {"name": "powerSupply_4"}, "name": "powerSupply_4"}, "fan_3": {"state": {"name": "fan_3"}, "name": "fan_3"}, "fan_1": {"state": {"name": "fan_1"}, "name": "fan_1"}, "powerSupply_2": {"state": {"name": "powerSupply_2"}, "name": "powerSupply_2"}, "Fabric1": {"state": {"name": "Fabric1"}, "name": "Fabric1"}, "Linecard3": {"state": {"name": "Linecard3"}, "name": "Linecard3"}, "fan_6": {"state": {"name": "fan_6"}, "name": "fan_6"}, "powerSupply_1": {"state": {"name": "powerSupply_1"}, "name": "powerSupply_1"}, "Linecard5": {"state": {"name": "Linecard5"}, "name": "Linecard5"}, "fan_4": {"state": {"name": "fan_4"}, "name": "fan_4"}, "Fabric3": {"state": {"name": "Fabric3"}, "name": "Fabric3"}, "Supervisor1": {"state": {"name": "Supervisor1"}, "name": "Supervisor1"}, "Supervisor2": {"state": {"name": "Supervisor2"}, "name": "Supervisor2"}, "powerSupply_3": {"state": {"name": "powerSupply_3"}, "name": "powerSupply_3"}, "Fabric6": {"state": {"name": "Fabric6"}, "name": "Fabric6"}, "fan_2": {"state": {"name": "fan_2"}, "name": "fan_2"}, "Fabric4": {"state": {"name": "Fabric4"}, "name": "Fabric4"}, "Fabric5": {"state": {"name": "Fabric5"}, "name": "Fabric5"}, "Fabric2": {"state": {"name": "Fabric2"}, "name": "Fabric2"}, "Linecard4": {"state": {"name": "Linecard4"}, "name": "Linecard4"}, "fan_5": {"state": {"name": "fan_5"}, "name": "fan_5"}, "Linecard6": {"state": {"name": "Linecard6"}, "name": "Linecard6"}}}}, "TempSensor2/6": {"state": {"type": "SENSOR", "name": "TempSensor2/6", "temperature": {"max": 59.0, "instant": 49.0}, "description": "PlxLc sensor"}, "name": "TempSensor2/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 103.0}, "name": "critical-threshold"}}}}, "Ethernet4/29": {"state": {"type": "PORT", "name": "Ethernet4/29"}, "name": "Ethernet4/29"}, "TempSensor16/2": {"state": {"type": "SENSOR", "name": "TempSensor16/2", "temperature": {"max": 55.0, "instant": 50.0}, "description": "Fan controller 1 sensor"}, "name": "TempSensor16/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "xcvr_3/35": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": -1.4200450443907586}, "input-power": {"instant": -9.292235371565653}, "laser-bias-current": {"instant": 30.21}}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAN0FD692786", "part-no": "SFP10G-LR-ARISTA", "type": "TRANSCEIVER", "name": "xcvr_3/35"}, "name": "xcvr_3/35"}, "TempSensor3/7": {"state": {"type": "SENSOR", "name": "TempSensor3/7", "temperature": {"max": 35.0, "instant": 27.0}, "description": "Outlet sensor"}, "name": "TempSensor3/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor3/6": {"state": {"type": "SENSOR", "name": "TempSensor3/6", "temperature": {"max": 42.0, "instant": 35.0}, "description": "Board sensor"}, "name": "TempSensor3/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet4/22": {"state": {"type": "PORT", "name": "Ethernet4/22"}, "name": "Ethernet4/22"}, "TempSensor3/4": {"state": {"type": "SENSOR", "name": "TempSensor3/4", "temperature": {"max": 49.0, "instant": 40.0}, "description": "Switch chip 3 sensor"}, "name": "TempSensor3/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor3/3": {"state": {"type": "SENSOR", "name": "TempSensor3/3", "temperature": {"max": 47.0, "instant": 40.0}, "description": "Switch chip 2 sensor"}, "name": "TempSensor3/3", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor3/2": {"state": {"type": "SENSOR", "name": "TempSensor3/2", "temperature": {"max": 46.0, "instant": 37.0}, "description": "Switch chip 1 sensor"}, "name": "TempSensor3/2", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet6/18/1": {"state": {"type": "PORT", "name": "Ethernet6/18/1"}, "name": "Ethernet6/18/1", "subcomponents": {"subcomponent": {"xcvr_6/18": {"state": {"name": "xcvr_6/18"}, "name": "xcvr_6/18"}}}}, "TempSensor2/9": {"state": {"type": "SENSOR", "name": "TempSensor2/9", "temperature": {"max": 30.0, "instant": 21.0}, "description": "Front sensor"}, "name": "TempSensor2/9", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 65.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 75.0}, "name": "critical-threshold"}}}}, "xcvr_4/48": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XMD1018MCF6J", "part-no": "SFP-1G-T", "type": "TRANSCEIVER", "name": "xcvr_4/48"}, "name": "xcvr_4/48"}, "TempSensor4/4": {"state": {"type": "SENSOR", "name": "TempSensor4/4", "temperature": {"max": 48.0, "instant": 39.0}, "description": "Switch chip 3 sensor"}, "name": "TempSensor4/4", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "TempSensor4/5": {"state": {"type": "SENSOR", "name": "TempSensor4/5", "temperature": {"max": 32.0, "instant": 23.0}, "description": "Inlet sensor"}, "name": "TempSensor4/5", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "TempSensor4/6": {"state": {"type": "SENSOR", "name": "TempSensor4/6", "temperature": {"max": 41.0, "instant": 34.0}, "description": "Board sensor"}, "name": "TempSensor4/6", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "TempSensor4/7": {"state": {"type": "SENSOR", "name": "TempSensor4/7", "temperature": {"max": 36.0, "instant": 29.0}, "description": "Outlet sensor"}, "name": "TempSensor4/7", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 75.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 90.0}, "name": "critical-threshold"}}}}, "xcvr_6/11": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5280796341906377}, "input-power": {"instant": 0.3506934442110454}, "laser-bias-current": {"instant": 38.934}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.45662470707546}, "input-power": {"instant": 0.6329582107352039}, "laser-bias-current": {"instant": 30.722}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5341848503771072}, "input-power": {"instant": 1.980244255331196}, "laser-bias-current": {"instant": 34.550000000000004}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.398161406105758}, "input-power": {"instant": 0.8753297573409347}, "laser-bias-current": {"instant": 28.23}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA153600154", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/11"}, "name": "xcvr_6/11"}, "Ethernet5/8/1": {"state": {"type": "PORT", "name": "Ethernet5/8/1"}, "name": "Ethernet5/8/1", "subcomponents": {"subcomponent": {"xcvr_5/8": {"state": {"name": "xcvr_5/8"}, "name": "xcvr_5/8"}}}}, "TempSensor5/8": {"state": {"type": "SENSOR", "name": "TempSensor5/8", "temperature": {"max": 53.0, "instant": 46.25}, "description": "Switch chip 3 sensor"}, "name": "TempSensor5/8", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet6/11/1": {"state": {"type": "PORT", "name": "Ethernet6/11/1"}, "name": "Ethernet6/11/1", "subcomponents": {"subcomponent": {"xcvr_6/11": {"state": {"name": "xcvr_6/11"}, "name": "xcvr_6/11"}}}}, "xcvr_6/13": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.511245900506819}, "input-power": {"instant": 2.07284205912198}, "laser-bias-current": {"instant": 38.300000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5424133016729824}, "input-power": {"instant": 1.9898680567093319}, "laser-bias-current": {"instant": 30.428}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.479853206838051}, "input-power": {"instant": 2.4467287841611007}, "laser-bias-current": {"instant": 28.652}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5198239545747416}, "input-power": {"instant": 1.8582535961296198}, "laser-bias-current": {"instant": 33.314}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100079", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/13"}, "name": "xcvr_6/13"}, "Ethernet5/5/1": {"state": {"type": "PORT", "name": "Ethernet5/5/1"}, "name": "Ethernet5/5/1", "subcomponents": {"subcomponent": {"xcvr_5/5": {"state": {"name": "xcvr_5/5"}, "name": "xcvr_5/5"}}}}, "xcvr_6/12": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.555789314769318}, "input-power": {"instant": 2.0972942801620498}, "laser-bias-current": {"instant": 35.464}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5715443990628142}, "input-power": {"instant": 1.9879450017559863}, "laser-bias-current": {"instant": 36.006}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5390628513886773}, "input-power": {"instant": 2.003579455416351}, "laser-bias-current": {"instant": 34.706}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5433266124230505}, "input-power": {"instant": 2.0650205758868534}, "laser-bias-current": {"instant": 33.56}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162100055", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/12"}, "name": "xcvr_6/12"}, "Ethernet6/10/1": {"state": {"type": "PORT", "name": "Ethernet6/10/1"}, "name": "Ethernet6/10/1", "subcomponents": {"subcomponent": {"xcvr_6/10": {"state": {"name": "xcvr_6/10"}, "name": "xcvr_6/10"}}}}, "Ethernet5/4/1": {"state": {"type": "PORT", "name": "Ethernet5/4/1"}, "name": "Ethernet5/4/1", "subcomponents": {"subcomponent": {"xcvr_5/4": {"state": {"name": "xcvr_5/4"}, "name": "xcvr_5/4"}}}}, "Ethernet4/5": {"state": {"type": "PORT", "name": "Ethernet4/5"}, "name": "Ethernet4/5", "subcomponents": {"subcomponent": {"xcvr_4/5": {"state": {"name": "xcvr_4/5"}, "name": "xcvr_4/5"}}}}, "TempSensor15/1": {"state": {"type": "SENSOR", "name": "TempSensor15/1", "temperature": {"max": 50.75, "instant": 44.75}, "description": "Outlet sensor"}, "name": "TempSensor15/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet4/7": {"state": {"type": "PORT", "name": "Ethernet4/7"}, "name": "Ethernet4/7"}, "Ethernet4/6": {"state": {"type": "PORT", "name": "Ethernet4/6"}, "name": "Ethernet4/6"}, "Ethernet4/1": {"state": {"type": "PORT", "name": "Ethernet4/1"}, "name": "Ethernet4/1", "subcomponents": {"subcomponent": {"xcvr_4/1": {"state": {"name": "xcvr_4/1"}, "name": "xcvr_4/1"}}}}, "Ethernet5/3/1": {"state": {"type": "PORT", "name": "Ethernet5/3/1"}, "name": "Ethernet5/3/1", "subcomponents": {"subcomponent": {"xcvr_5/3": {"state": {"name": "xcvr_5/3"}, "name": "xcvr_5/3"}}}}, "Ethernet4/3": {"state": {"type": "PORT", "name": "Ethernet4/3"}, "name": "Ethernet4/3", "subcomponents": {"subcomponent": {"xcvr_4/3": {"state": {"name": "xcvr_4/3"}, "name": "xcvr_4/3"}}}}, "Ethernet4/2": {"state": {"type": "PORT", "name": "Ethernet4/2"}, "name": "Ethernet4/2", "subcomponents": {"subcomponent": {"xcvr_4/2": {"state": {"name": "xcvr_4/2"}, "name": "xcvr_4/2"}}}}, "Ethernet4/15": {"state": {"type": "PORT", "name": "Ethernet4/15"}, "name": "Ethernet4/15"}, "Ethernet4/50/1": {"state": {"type": "PORT", "name": "Ethernet4/50/1"}, "name": "Ethernet4/50/1", "subcomponents": {"subcomponent": {"xcvr_4/50": {"state": {"name": "xcvr_4/50"}, "name": "xcvr_4/50"}}}}, "Ethernet5/2/1": {"state": {"type": "PORT", "name": "Ethernet5/2/1"}, "name": "Ethernet5/2/1", "subcomponents": {"subcomponent": {"xcvr_5/2": {"state": {"name": "xcvr_5/2"}, "name": "xcvr_5/2"}}}}, "Ethernet4/8": {"state": {"type": "PORT", "name": "Ethernet4/8"}, "name": "Ethernet4/8"}, "Ethernet6/16/1": {"state": {"type": "PORT", "name": "Ethernet6/16/1"}, "name": "Ethernet6/16/1", "subcomponents": {"subcomponent": {"xcvr_6/16": {"state": {"name": "xcvr_6/16"}, "name": "xcvr_6/16"}}}}, "Ethernet4/39": {"state": {"type": "PORT", "name": "Ethernet4/39"}, "name": "Ethernet4/39"}, "Ethernet4/38": {"state": {"type": "PORT", "name": "Ethernet4/38"}, "name": "Ethernet4/38"}, "Ethernet4/33": {"state": {"type": "PORT", "name": "Ethernet4/33"}, "name": "Ethernet4/33"}, "Ethernet4/32": {"state": {"type": "PORT", "name": "Ethernet4/32"}, "name": "Ethernet4/32"}, "Ethernet4/31": {"state": {"type": "PORT", "name": "Ethernet4/31"}, "name": "Ethernet4/31"}, "Ethernet4/30": {"state": {"type": "PORT", "name": "Ethernet4/30"}, "name": "Ethernet4/30"}, "Ethernet4/37": {"state": {"type": "PORT", "name": "Ethernet4/37"}, "name": "Ethernet4/37"}, "Ethernet4/36": {"state": {"type": "PORT", "name": "Ethernet4/36"}, "name": "Ethernet4/36"}, "Ethernet4/35": {"state": {"type": "PORT", "name": "Ethernet4/35"}, "name": "Ethernet4/35"}, "Ethernet4/34": {"state": {"type": "PORT", "name": "Ethernet4/34"}, "name": "Ethernet4/34"}, "Ethernet6/28/1": {"state": {"type": "PORT", "name": "Ethernet6/28/1"}, "name": "Ethernet6/28/1", "subcomponents": {"subcomponent": {"xcvr_6/28": {"state": {"name": "xcvr_6/28"}, "name": "xcvr_6/28"}}}}, "Ethernet3/7": {"state": {"type": "PORT", "name": "Ethernet3/7"}, "name": "Ethernet3/7"}, "Ethernet3/4": {"state": {"type": "PORT", "name": "Ethernet3/4"}, "name": "Ethernet3/4"}, "Ethernet3/5": {"state": {"type": "PORT", "name": "Ethernet3/5"}, "name": "Ethernet3/5", "subcomponents": {"subcomponent": {"xcvr_3/5": {"state": {"name": "xcvr_3/5"}, "name": "xcvr_3/5"}}}}, "Ethernet3/2": {"state": {"type": "PORT", "name": "Ethernet3/2"}, "name": "Ethernet3/2", "subcomponents": {"subcomponent": {"xcvr_3/2": {"state": {"name": "xcvr_3/2"}, "name": "xcvr_3/2"}}}}, "Ethernet3/3": {"state": {"type": "PORT", "name": "Ethernet3/3"}, "name": "Ethernet3/3", "subcomponents": {"subcomponent": {"xcvr_3/3": {"state": {"name": "xcvr_3/3"}, "name": "xcvr_3/3"}}}}, "Ethernet3/1": {"state": {"type": "PORT", "name": "Ethernet3/1"}, "name": "Ethernet3/1", "subcomponents": {"subcomponent": {"xcvr_3/1": {"state": {"name": "xcvr_3/1"}, "name": "xcvr_3/1"}}}}, "Ethernet6/29/1": {"state": {"type": "PORT", "name": "Ethernet6/29/1"}, "name": "Ethernet6/29/1", "subcomponents": {"subcomponent": {"xcvr_6/29": {"state": {"name": "xcvr_6/29"}, "name": "xcvr_6/29"}}}}, "Ethernet3/8": {"state": {"type": "PORT", "name": "Ethernet3/8"}, "name": "Ethernet3/8"}, "Ethernet3/9": {"state": {"type": "PORT", "name": "Ethernet3/9"}, "name": "Ethernet3/9"}, "Ethernet6/24/1": {"state": {"type": "PORT", "name": "Ethernet6/24/1"}, "name": "Ethernet6/24/1", "subcomponents": {"subcomponent": {"xcvr_6/24": {"state": {"name": "xcvr_6/24"}, "name": "xcvr_6/24"}}}}, "TempSensor4/1": {"state": {"type": "SENSOR", "name": "TempSensor4/1", "temperature": {"max": 45.0, "instant": 38.0}, "description": "Board sensor"}, "name": "TempSensor4/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 110.0}, "name": "critical-threshold"}}}}, "Ethernet6/15/1": {"state": {"type": "PORT", "name": "Ethernet6/15/1"}, "name": "Ethernet6/15/1", "subcomponents": {"subcomponent": {"xcvr_6/15": {"state": {"name": "xcvr_6/15"}, "name": "xcvr_6/15"}}}}, "xcvr_3/34": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 0.4277233749767362}, "input-power": {"instant": -6.499459064209696}, "laser-bias-current": {"instant": 43.83}}}}}, "state": {"enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XAP1025T6009", "part-no": "SFP-10G-ER", "type": "TRANSCEIVER", "name": "xcvr_3/34"}, "name": "xcvr_3/34"}, "Ethernet5/1/1": {"state": {"type": "PORT", "name": "Ethernet5/1/1"}, "name": "Ethernet5/1/1", "subcomponents": {"subcomponent": {"xcvr_5/1": {"state": {"name": "xcvr_5/1"}, "name": "xcvr_5/1"}}}}, "Ethernet6/25/1": {"state": {"type": "PORT", "name": "Ethernet6/25/1"}, "name": "Ethernet6/25/1", "subcomponents": {"subcomponent": {"xcvr_6/25": {"state": {"name": "xcvr_6/25"}, "name": "xcvr_6/25"}}}}, "xcvr_6/21": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 2.5107826448400195}, "input-power": {"instant": 3.7171420264261767}, "laser-bias-current": {"instant": 35.388}}}, "1": {"state": {"index": 1, "output-power": {"instant": 2.873089515699725}, "input-power": {"instant": 4.219492510628786}, "laser-bias-current": {"instant": 34.752}}}, "2": {"state": {"index": 2, "output-power": {"instant": 3.2487894311199383}, "input-power": {"instant": 1.781132523146316}, "laser-bias-current": {"instant": 42.412}}}, "3": {"state": {"index": 3, "output-power": {"instant": 2.6325722701406606}, "input-power": {"instant": 3.0888441442201664}, "laser-bias-current": {"instant": 36.928}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH16070000C", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/21"}, "name": "xcvr_6/21"}, "Ethernet6/14/1": {"state": {"type": "PORT", "name": "Ethernet6/14/1"}, "name": "Ethernet6/14/1", "subcomponents": {"subcomponent": {"xcvr_6/14": {"state": {"name": "xcvr_6/14"}, "name": "xcvr_6/14"}}}}, "Ethernet6/32/1": {"state": {"type": "PORT", "name": "Ethernet6/32/1"}, "name": "Ethernet6/32/1", "subcomponents": {"subcomponent": {"xcvr_6/32": {"state": {"name": "xcvr_6/32"}, "name": "xcvr_6/32"}}}}, "Ethernet6/22/1": {"state": {"type": "PORT", "name": "Ethernet6/22/1"}, "name": "Ethernet6/22/1", "subcomponents": {"subcomponent": {"xcvr_6/22": {"state": {"name": "xcvr_6/22"}, "name": "xcvr_6/22"}}}}, "Ethernet6/35/1": {"state": {"type": "PORT", "name": "Ethernet6/35/1"}, "name": "Ethernet6/35/1"}, "Ethernet6/23/1": {"state": {"type": "PORT", "name": "Ethernet6/23/1"}, "name": "Ethernet6/23/1", "subcomponents": {"subcomponent": {"xcvr_6/23": {"state": {"name": "xcvr_6/23"}, "name": "xcvr_6/23"}}}}, "Ethernet4/10": {"state": {"type": "PORT", "name": "Ethernet4/10"}, "name": "Ethernet4/10"}, "Ethernet6/34/1": {"state": {"type": "PORT", "name": "Ethernet6/34/1"}, "name": "Ethernet6/34/1"}, "Ethernet6/19/1": {"state": {"type": "PORT", "name": "Ethernet6/19/1"}, "name": "Ethernet6/19/1", "subcomponents": {"subcomponent": {"xcvr_6/19": {"state": {"name": "xcvr_6/19"}, "name": "xcvr_6/19"}}}}, "Ethernet5/7/1": {"state": {"type": "PORT", "name": "Ethernet5/7/1"}, "name": "Ethernet5/7/1", "subcomponents": {"subcomponent": {"xcvr_5/7": {"state": {"name": "xcvr_5/7"}, "name": "xcvr_5/7"}}}}, "Ethernet6/13/1": {"state": {"type": "PORT", "name": "Ethernet6/13/1"}, "name": "Ethernet6/13/1", "subcomponents": {"subcomponent": {"xcvr_6/13": {"state": {"name": "xcvr_6/13"}, "name": "xcvr_6/13"}}}}, "Ethernet5/33/1": {"state": {"type": "PORT", "name": "Ethernet5/33/1"}, "name": "Ethernet5/33/1"}, "xcvr_6/19": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 2.2703784493022594}, "input-power": {"instant": 3.808260568363413}, "laser-bias-current": {"instant": 33.874}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.9747353501477694}, "input-power": {"instant": 5.036953728699967}, "laser-bias-current": {"instant": 31.164}}}, "2": {"state": {"index": 2, "output-power": {"instant": 2.1808890286084504}, "input-power": {"instant": 4.189307277285006}, "laser-bias-current": {"instant": 37.94}}}, "3": {"state": {"index": 3, "output-power": {"instant": 2.4154648059654837}, "input-power": {"instant": 3.306166672944384}, "laser-bias-current": {"instant": 39.498}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XTH16030013N", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/19"}, "name": "xcvr_6/19"}, "Ethernet5/6/1": {"state": {"type": "PORT", "name": "Ethernet5/6/1"}, "name": "Ethernet5/6/1", "subcomponents": {"subcomponent": {"xcvr_5/6": {"state": {"name": "xcvr_5/6"}, "name": "xcvr_5/6"}}}}, "Ethernet6/36/1": {"state": {"type": "PORT", "name": "Ethernet6/36/1"}, "name": "Ethernet6/36/1"}, "Ethernet6/12/1": {"state": {"type": "PORT", "name": "Ethernet6/12/1"}, "name": "Ethernet6/12/1", "subcomponents": {"subcomponent": {"xcvr_6/12": {"state": {"name": "xcvr_6/12"}, "name": "xcvr_6/12"}}}}, "Ethernet4/20": {"state": {"type": "PORT", "name": "Ethernet4/20"}, "name": "Ethernet4/20"}, "Ethernet6/20/1": {"state": {"type": "PORT", "name": "Ethernet6/20/1"}, "name": "Ethernet6/20/1", "subcomponents": {"subcomponent": {"xcvr_6/20": {"state": {"name": "xcvr_6/20"}, "name": "xcvr_6/20"}}}}, "Ethernet5/18/1": {"state": {"type": "PORT", "name": "Ethernet5/18/1"}, "name": "Ethernet5/18/1", "subcomponents": {"subcomponent": {"xcvr_5/18": {"state": {"name": "xcvr_5/18"}, "name": "xcvr_5/18"}}}}, "TempSensor16/1": {"state": {"type": "SENSOR", "name": "TempSensor16/1", "temperature": {"max": 50.25, "instant": 44.75}, "description": "Outlet sensor"}, "name": "TempSensor16/1", "properties": {"property": {"overheat-threshold": {"state": {"name": "overheat-threshold", "value": 95.0}, "name": "overheat-threshold"}, "alarm": {"state": {"name": "alarm", "value": false}, "name": "alarm"}, "critical-threshold": {"state": {"name": "critical-threshold", "value": 105.0}, "name": "critical-threshold"}}}}, "Ethernet6/21/1": {"state": {"type": "PORT", "name": "Ethernet6/21/1"}, "name": "Ethernet6/21/1", "subcomponents": {"subcomponent": {"xcvr_6/21": {"state": {"name": "xcvr_6/21"}, "name": "xcvr_6/21"}}}}, "Ethernet5/12/1": {"state": {"type": "PORT", "name": "Ethernet5/12/1"}, "name": "Ethernet5/12/1", "subcomponents": {"subcomponent": {"xcvr_5/12": {"state": {"name": "xcvr_5/12"}, "name": "xcvr_5/12"}}}}, "Ethernet5/13/1": {"state": {"type": "PORT", "name": "Ethernet5/13/1"}, "name": "Ethernet5/13/1", "subcomponents": {"subcomponent": {"xcvr_5/13": {"state": {"name": "xcvr_5/13"}, "name": "xcvr_5/13"}}}}, "Ethernet4/11": {"state": {"type": "PORT", "name": "Ethernet4/11"}, "name": "Ethernet4/11"}, "Ethernet4/49/1": {"state": {"type": "PORT", "name": "Ethernet4/49/1"}, "name": "Ethernet4/49/1", "subcomponents": {"subcomponent": {"xcvr_4/49": {"state": {"name": "xcvr_4/49"}, "name": "xcvr_4/49"}}}}, "Ethernet4/13": {"state": {"type": "PORT", "name": "Ethernet4/13"}, "name": "Ethernet4/13"}, "Ethernet4/12": {"state": {"type": "PORT", "name": "Ethernet4/12"}, "name": "Ethernet4/12"}, "Ethernet5/10/1": {"state": {"type": "PORT", "name": "Ethernet5/10/1"}, "name": "Ethernet5/10/1", "subcomponents": {"subcomponent": {"xcvr_5/10": {"state": {"name": "xcvr_5/10"}, "name": "xcvr_5/10"}}}}, "Ethernet4/14": {"state": {"type": "PORT", "name": "Ethernet4/14"}, "name": "Ethernet4/14"}, "Ethernet4/17": {"state": {"type": "PORT", "name": "Ethernet4/17"}, "name": "Ethernet4/17"}, "Ethernet4/16": {"state": {"type": "PORT", "name": "Ethernet4/16"}, "name": "Ethernet4/16"}, "Ethernet4/19": {"state": {"type": "PORT", "name": "Ethernet4/19"}, "name": "Ethernet4/19"}, "Ethernet4/18": {"state": {"type": "PORT", "name": "Ethernet4/18"}, "name": "Ethernet4/18"}, "xcvr_6/26": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.0554424574657295}, "input-power": {"instant": 1.8816885858669652}, "laser-bias-current": {"instant": 48.252}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5691242570001673}, "input-power": {"instant": 1.8591028504071438}, "laser-bias-current": {"instant": 43.418}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.3113727377860718}, "input-power": {"instant": 2.2827200212399923}, "laser-bias-current": {"instant": 47.884}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.553664066467042}, "input-power": {"instant": 2.1362399341608684}, "laser-bias-current": {"instant": 40.984}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163300333", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/26"}, "name": "xcvr_6/26"}, "xcvr_6/27": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.2561137189746363}, "input-power": {"instant": -0.10817248744452446}, "laser-bias-current": {"instant": 54.062}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.464691330718697}, "input-power": {"instant": 0.6419583586464261}, "laser-bias-current": {"instant": 53.716}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.7411798125426703}, "input-power": {"instant": 1.1200139548618848}, "laser-bias-current": {"instant": 43.738}}}, "3": {"state": {"index": 3, "output-power": {"instant": -0.05946936412324799}, "input-power": {"instant": -0.32592443402527316}, "laser-bias-current": {"instant": 43.016}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA163800400", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/27"}, "name": "xcvr_6/27"}, "xcvr_6/20": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.1437742978615528}, "input-power": {"instant": 2.628306348556597}, "laser-bias-current": {"instant": 45.852000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.1028660840356563}, "input-power": {"instant": 3.120080078387235}, "laser-bias-current": {"instant": 46.254}}}, "2": {"state": {"index": 2, "output-power": {"instant": 0.5161552300498995}, "input-power": {"instant": 3.4931638877010673}, "laser-bias-current": {"instant": 46.2}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.411674686462323}, "input-power": {"instant": 3.603851143046364}, "laser-bias-current": {"instant": 42.748}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162200005", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/20"}, "name": "xcvr_6/20"}, "Ethernet5/11/1": {"state": {"type": "PORT", "name": "Ethernet5/11/1"}, "name": "Ethernet5/11/1", "subcomponents": {"subcomponent": {"xcvr_5/11": {"state": {"name": "xcvr_5/11"}, "name": "xcvr_5/11"}}}}, "xcvr_6/22": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5038797732528009}, "input-power": {"instant": 2.187979981117376}, "laser-bias-current": {"instant": 32.608000000000004}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5585202495926742}, "input-power": {"instant": 2.3964977716666214}, "laser-bias-current": {"instant": 30.428}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.543631006663162}, "input-power": {"instant": 1.8141479625428403}, "laser-bias-current": {"instant": 29.312}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.4182589451107486}, "input-power": {"instant": 2.1587539546127577}, "laser-bias-current": {"instant": 29.512}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162200592", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/22"}, "name": "xcvr_6/22"}, "xcvr_6/23": {"transceiver": {"physical-channels": {"channel": {"0": {"state": {"index": 0, "output-power": {"instant": 1.5167623084704784}, "input-power": {"instant": 0.5895717877731022}, "laser-bias-current": {"instant": 30.842000000000002}}}, "1": {"state": {"index": 1, "output-power": {"instant": 1.5231892742464526}, "input-power": {"instant": 0.5774215582875275}, "laser-bias-current": {"instant": 33.186}}}, "2": {"state": {"index": 2, "output-power": {"instant": 1.5506261922392062}, "input-power": {"instant": 0.3734680356809017}, "laser-bias-current": {"instant": 37.122}}}, "3": {"state": {"index": 3, "output-power": {"instant": 1.5094055396547734}, "input-power": {"instant": 0.7700432679335023}, "laser-bias-current": {"instant": 41.972}}}}}, "state": {"ethernet-pmd": "ETH_40GBASE_LR4", "enabled": true}}, "state": {"mfg-name": "Arista Networks", "serial-no": "XLA162200392", "part-no": "QSFP-40G-UNIV", "type": "TRANSCEIVER", "name": "xcvr_6/23"}, "name": "xcvr_6/23"}, "Ethernet6/26/1": {"state": {"type": "PORT", "name": "Ethernet6/26/1"}, "name": "Ethernet6/26/1", "subcomponents": {"subcomponent": {"xcvr_6/26": {"state": {"name": "xcvr_6/26"}, "name": "xcvr_6/26"}}}}, "Ethernet5/16/1": {"state": {"type": "PORT", "name": "Ethernet5/16/1"}, "name": "Ethernet5/16/1"}, "Ethernet6/27/1": {"state": {"type": "PORT", "name": "Ethernet6/27/1"}, "name": "Ethernet6/27/1", "subcomponents": {"subcomponent": {"xcvr_6/27": {"state": {"name": "xcvr_6/27"}, "name": "xcvr_6/27"}}}}, "Ethernet5/17/1": {"state": {"type": "PORT", "name": "Ethernet5/17/1"}, "name": "Ethernet5/17/1"}}}} diff --git a/test/integration/test_profiles/eos/openconfig-vlan/config/default/candidate.json b/test/integration/test_profiles/eos/openconfig-vlan/config/default/candidate.json new file mode 100644 index 00000000..452065df --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-vlan/config/default/candidate.json @@ -0,0 +1,26 @@ +{ + "vlans": { + "vlan": { + "1": { + "config": { + "name": "default", + "status": "ACTIVE" + }, + "vlan-id": "1" + }, + "20": { + "config": { + "name": "prod" + }, + "vlan-id": "20" + }, + "31": { + "config": { + "name": "devel", + "status": "SUSPENDED" + }, + "vlan-id": "31" + } + } + } +} diff --git a/test/integration/test_profiles/eos/openconfig-vlan/config/default/expected.json b/test/integration/test_profiles/eos/openconfig-vlan/config/default/expected.json new file mode 100644 index 00000000..d589d18c --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-vlan/config/default/expected.json @@ -0,0 +1,27 @@ +{ + "vlans": { + "vlan": { + "1": { + "config": { + "name": "default", + "status": "ACTIVE" + }, + "vlan-id": "1" + }, + "20": { + "config": { + "name": "prod", + "status": "SUSPENDED" + }, + "vlan-id": "20" + }, + "30": { + "config": { + "name": "devel", + "status": "ACTIVE" + }, + "vlan-id": "30" + } + } + } +} diff --git a/test/integration/test_profiles/eos/openconfig-vlan/config/default/merge.txt b/test/integration/test_profiles/eos/openconfig-vlan/config/default/merge.txt new file mode 100644 index 00000000..7f9bbb15 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-vlan/config/default/merge.txt @@ -0,0 +1,8 @@ +vlan 31 + state suspend + name devel + exit +vlan 20 + default state + exit +no vlan 30 diff --git a/test/integration/test_profiles/eos/openconfig-vlan/config/default/mocked/cli.1.show_running_config_all.0 b/test/integration/test_profiles/eos/openconfig-vlan/config/default/mocked/cli.1.show_running_config_all.0 new file mode 100644 index 00000000..0a472684 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-vlan/config/default/mocked/cli.1.show_running_config_all.0 @@ -0,0 +1,960 @@ +! Command: show running-config all +! device: localhost (vEOS, EOS-4.15.2.1F) +! +! boot system flash:/vEOS-lab.swi +! +hardware access-list ipv6 implicit-permit icmpv6 all +! +no deep-inspection payload l2 skip +no deep-inspection payload l4 skip +! +agent fatal-error action reload +! +bfd slow-timer 2000 +bfd interval 300 min_rx 300 multiplier 3 default +! +prompt %H%R%v%P +no service configuration session max completed +no service configuration session max pending +! +schedule config max-concurrent-jobs 1 +schedule tech-support interval 60 max-log-files 100 command show tech-support +! +no logging event storm-control discards global +no logging event storm-control discards interval +! +cvx + shutdown + port 9979 + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 + service hsc + vtep flood list type any + service openstack + shutdown + grace-period 60 + name-resolution interval 21600 + service vxlan + shutdown + vtep mac-learning control-plane + resync-period 300 +! +no dcbx application +! +no ip dhcp relay information option +no ip dhcp relay always-on +no ip dhcp smart-relay global +! +no ip dhcp snooping +no ip dhcp snooping information option +ip dhcp snooping information option circuit-id type 0 format %p:%v +! +default switch forwarding-mode +! +vlan internal allocation policy ascending +! +email + no from-user + no server + no auth username + no auth password + no tls +! +errdisable detect cause arp-inspection +errdisable detect cause link-flap +no errdisable recovery cause arp-inspection +no errdisable recovery cause bpduguard +no errdisable recovery cause hitless-reload-down +no errdisable recovery cause link-flap +no errdisable recovery cause loopprotectguard +no errdisable recovery cause no-internal-vlan +no errdisable recovery cause portchannelguard +no errdisable recovery cause portsec +no errdisable recovery cause tapagg +no errdisable recovery cause uplink-failure-detection +no errdisable recovery cause xcvr-unsupported +errdisable recovery interval 300 +! +event-handler dhclient + trigger on-boot + action bash sudo /mnt/flash/initialize_ma1.sh + delay 20 + no asynchronous + timeout 10 +! +ip igmp snooping +no ip igmp snooping report-flooding +ip igmp snooping robustness-variable 2 +no ip igmp snooping restart query-interval +ip igmp snooping immediate-leave +default ip igmp snooping vlan 1 +default ip igmp snooping vlan 1 querier +no ip igmp snooping vlan 1 querier address +no ip igmp snooping vlan 1 querier query-interval +no ip igmp snooping vlan 1 querier max-response-time +no ip igmp snooping vlan 1 querier last-member-query-interval +no ip igmp snooping vlan 1 querier last-member-query-count +no ip igmp snooping vlan 1 querier startup-query-interval +no ip igmp snooping vlan 1 querier startup-query-count +no ip igmp snooping vlan 1 querier version +no ip igmp snooping vlan 1 max-groups +default ip igmp snooping vlan 1 immediate-leave +default ip igmp snooping vlan 20 +default ip igmp snooping vlan 20 querier +no ip igmp snooping vlan 20 querier address +no ip igmp snooping vlan 20 querier query-interval +no ip igmp snooping vlan 20 querier max-response-time +no ip igmp snooping vlan 20 querier last-member-query-interval +no ip igmp snooping vlan 20 querier last-member-query-count +no ip igmp snooping vlan 20 querier startup-query-interval +no ip igmp snooping vlan 20 querier startup-query-count +no ip igmp snooping vlan 20 querier version +no ip igmp snooping vlan 20 max-groups +default ip igmp snooping vlan 20 immediate-leave +default ip igmp snooping vlan 30 +default ip igmp snooping vlan 30 querier +no ip igmp snooping vlan 30 querier address +no ip igmp snooping vlan 30 querier query-interval +no ip igmp snooping vlan 30 querier max-response-time +no ip igmp snooping vlan 30 querier last-member-query-interval +no ip igmp snooping vlan 30 querier last-member-query-count +no ip igmp snooping vlan 30 querier startup-query-interval +no ip igmp snooping vlan 30 querier startup-query-count +no ip igmp snooping vlan 30 querier version +no ip igmp snooping vlan 30 max-groups +default ip igmp snooping vlan 30 immediate-leave +no ip igmp snooping querier +no ip igmp snooping querier address +ip igmp snooping querier query-interval 125 +ip igmp snooping querier max-response-time 10 +ip igmp snooping querier last-member-query-interval 1 +no ip igmp snooping querier last-member-query-count +no ip igmp snooping querier startup-query-interval +no ip igmp snooping querier startup-query-count +no ip igmp snooping querier version +! +default logging event congestion-drops +! +no service interface inactive expose +! +no service interface unconnected expose +! +default load-interval default +! +transceiver qsfp default-mode 4x10G +! +ip pim log-neighbor-changes +no ip pim bfd +no ip pim ssm range +ip pim sparse-mode sg-expiry-timer 210 +ip pim spt-threshold 0 +! +ip msdp timer 30 +! +no ip pim rp-candidate +no ip pim bsr-holdtime +no ip pim bsr-sztimeout +no ip pim bsr-candidate +no ip pim bsr rp-candidate advertisement-filter +! +no ip pim register-source +! +lacp system-priority 32768 +! +no queue-monitor length +no queue-monitor length notifying +! +queue-monitor length global-buffer thresholds 512 256 +no queue-monitor length mirror +! +queue-monitor length global-buffer +! +errdisable flap-setting cause link-flap max-flaps 5 time 10 +! +lldp timer 30 +lldp holdtime 120 +lldp reinit 2 +lldp tlv-select link-aggregation +lldp tlv-select management-address +lldp tlv-select max-frame-size +lldp tlv-select port-description +lldp tlv-select port-vlan +lldp tlv-select system-capabilities +lldp tlv-select system-description +lldp tlv-select system-name +lldp run +no lldp management-address +! +logging on +logging buffered 32 debugging +logging trap informational +logging console errors +no logging synchronous +logging format timestamp traditional +no logging format hostname fqdn +logging facility local4 +no logging source-interface +! +logging level AAA debugging +logging level ACCOUNTING debugging +logging level ACL debugging +logging level AGENT debugging +logging level ALE debugging +logging level ARP debugging +logging level BFD debugging +logging level BGP debugging +logging level CAPACITY debugging +logging level CAPI debugging +logging level CLEAR debugging +logging level DATAPLANE debugging +logging level DOT1X debugging +logging level ENVMON debugging +logging level ETH debugging +logging level EVENTMON debugging +logging level EXTENSION debugging +logging level FHRP debugging +logging level FLOW debugging +logging level FORWARDING debugging +logging level FRU debugging +logging level FWK debugging +logging level GMP debugging +logging level HARDWARE debugging +logging level IGMP debugging +logging level IGMPSNOOPING debugging +logging level INTF debugging +logging level IP6ROUTING debugging +logging level IRA debugging +logging level ISIS debugging +logging level KERNELFIB debugging +logging level LACP debugging +logging level LAG debugging +logging level LAUNCHER debugging +logging level LINEPROTO debugging +logging level LLDP debugging +logging level LOGMGR debugging +logging level LOOPBACK debugging +logging level LOOPPROTECT debugging +logging level MAPREDUCEMONITOR debugging +logging level MDIO debugging +logging level MIRRORING debugging +logging level MLAG debugging +logging level MMODE debugging +logging level MROUTE debugging +logging level MRP debugging +logging level MSDP debugging +logging level MSRP debugging +logging level MVRP debugging +logging level NAT debugging +logging level OPENFLOW debugging +logging level OSPF debugging +logging level OSPF3 debugging +logging level PFC debugging +logging level PIM debugging +logging level PIMBSR debugging +logging level PORTSECURITY debugging +logging level PTP debugging +logging level PWRMGMT debugging +logging level QOS debugging +logging level QUEUEMONITOR debugging +logging level REACHABILITYMONITOR debugging +logging level REDUNDANCY debugging +logging level RIB debugging +logging level ROUTING debugging +logging level SECURITY debugging +logging level SERVERMONITOR debugging +logging level SPANTREE debugging +logging level STAGEMGR debugging +logging level SYS debugging +logging level SYSDB debugging +logging level TAPAGG debugging +logging level TCP debugging +logging level TRANSCEIVER debugging +logging level TUNNEL debugging +logging level VM debugging +logging level VMTRACERSESS debugging +logging level VMWAREVI debugging +logging level VMWAREVS debugging +logging level VRF debugging +logging level VRRP debugging +logging level VXLAN debugging +logging level XMPP debugging +logging level ZTP debugging +! +logging event link-status global +! +no ip virtual-router mac-address mlag-peer +! +no msrp streams load-file +! +no hostname +no ip domain lookup source-interface +no ip name-server +no ip domain-name +no ip host +no ipv6 host +! +no ntp trusted-key +no ntp authenticate +no ntp serve all +! +power poll-interval 5 +! +no radius-server key +radius-server timeout 5 +radius-server retransmit 3 +no radius-server deadtime +no radius-server attribute 32 include-in-access-req format +! +sflow sample 1048576 +sflow polling-interval 2 +no sflow source +no sflow source-interface +sflow sample output interface +sflow extension switch +sflow extension router +no sflow sample rewrite dscp +no sflow run +! +no sflow extension bgp +! +no snmp-server engineID local +no snmp-server chassis-id +no snmp-server contact +no snmp-server location +no snmp-server source-interface +default snmp-server enable traps +default snmp-server enable traps bgp +default snmp-server enable traps bgp arista-backward-transition +default snmp-server enable traps bgp arista-established +default snmp-server enable traps bgp backward-transition +default snmp-server enable traps bgp established +default snmp-server enable traps entity +default snmp-server enable traps entity arista-ent-sensor-alarm +default snmp-server enable traps entity ent-config-change +default snmp-server enable traps entity ent-state-oper-disabled +default snmp-server enable traps entity ent-state-oper-enabled +default snmp-server enable traps lldp +default snmp-server enable traps lldp rem-tables-change +default snmp-server enable traps msdp +default snmp-server enable traps msdp backward-transition +default snmp-server enable traps msdp established +default snmp-server enable traps ospf +default snmp-server enable traps ospf if-auth-failure +default snmp-server enable traps ospf if-config-error +default snmp-server enable traps ospf if-state-change +default snmp-server enable traps ospf nbr-state-change +default snmp-server enable traps pim +default snmp-server enable traps pim neighbor-loss +default snmp-server enable traps snmp +default snmp-server enable traps snmp authentication +default snmp-server enable traps snmp link-down +default snmp-server enable traps snmp link-up +default snmp-server enable traps snmpConfigManEvent +default snmp-server enable traps snmpConfigManEvent arista-config-man-event +default snmp-server enable traps switchover +default snmp-server enable traps switchover arista-redundancy-switch-over-notif +default snmp-server enable traps test +default snmp-server enable traps test arista-test-notification +default snmp-server enable traps vrrp +default snmp-server enable traps vrrp trap-new-master +snmp-server vrf default +! +spanning-tree mode mstp +spanning-tree hello-time 2000 +spanning-tree max-age 20 +spanning-tree forward-time 15 +spanning-tree transmit hold-count 6 +spanning-tree max-hops 20 +no spanning-tree mst pvst border +no spanning-tree portfast bpduguard default +no spanning-tree portfast bpdufilter default +spanning-tree bridge assurance +no spanning-tree loopguard default +no spanning-tree portchannel guard misconfig +spanning-tree bpduguard rate-limit default +logging event spanning-tree global +spanning-tree mst 0 priority 32768 +! +spanning-tree mst configuration + no name + revision 0 +! +no service sequence-numbers +no service running-config timestamp +! +no tacacs-server key +tacacs-server timeout 5 +! +aaa authentication login default local +no aaa authentication login console +aaa authentication enable default local +no aaa authentication policy on-success log +no aaa authentication policy on-failure log +no aaa authorization console +aaa authorization exec default local +no aaa authorization commands all default +aaa authorization config-commands +no aaa accounting exec console +no aaa accounting commands all console +no aaa accounting exec default +no aaa accounting system default +no aaa accounting dot1x default +no aaa accounting commands all default +! +no enable secret +aaa root secret 5 $1$rocf65Tl$ePLSZB6dgP1SG5rG/XsbD/ +no aaa authentication policy local allow-nopassword-remote-login +no aaa authorization policy local default-role +! +username admin privilege 15 role network-admin secret 5 $1$h67i2ZFw$82tSTs0XITPorHfEdXnSU. +username vagrant privilege 15 role network-admin secret 5 $1$Q8bvfX3E$P61EO6yNiQEn0RUUeyWmX/ +! +role network-admin + 10 permit command .* +! +role network-operator + 10 deny mode exec command configure|bash|python-shell|\| + 20 permit mode exec command .* +! +tap aggregation + no mode + no service-policy type tapagg mac access-list match ip +! +environment overheat action shutdown +environment insufficient-fans action shutdown +environment fan-speed auto +! +clock timezone UTC +! +no virtual-cable +! +vlan 1 + name default + state active + no private-vlan + no mac-address-table sharing +! +vlan 20 + name prod + state suspend + no private-vlan + no mac-address-table sharing +! +vlan 30 + name devel + state active + no private-vlan + no mac-address-table sharing +! +interface Ethernet1 + no description + no shutdown + default load-interval + logging event link-status use-global + no dcbx mode + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport access vlan 1 + switchport trunk native vlan 30 + switchport trunk allowed vlan 20 + no switchport asym vlan + switchport mode trunk + switchport dot1q ethertype 0x8100 + no switchport trunk private-vlan secondary + switchport mac address learning + no switchport private-vlan mapping + switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no channel-group + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no msrp + no mvrp + no switchport port-security + switchport port-security maximum 1 + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable + no spanning-tree portfast + spanning-tree portfast auto + no spanning-tree link-type + no spanning-tree bpduguard + no spanning-tree bpdufilter + no spanning-tree cost + spanning-tree port-priority 128 + no spanning-tree guard + no spanning-tree bpduguard rate-limit + logging event spanning-tree use-global + switchport tap native vlan 1 + no switchport tap identity + no switchport tap mpls pop all + switchport tap allowed vlan 1-4094 + switchport tool allowed vlan 1-4094 + no switchport tool identity + no switchport tap truncation + no switchport tool truncation + no switchport tap default group + no switchport tap default interface + no switchport tool group + no switchport tool dot1q remove outer +! +interface Ethernet2 + no description + no shutdown + default load-interval + logging event link-status use-global + no dcbx mode + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport access vlan 30 + switchport trunk native vlan 1 + switchport trunk allowed vlan 1-4094 + no switchport asym vlan + switchport mode access + switchport dot1q ethertype 0x8100 + no switchport trunk private-vlan secondary + switchport mac address learning + no switchport private-vlan mapping + switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no channel-group + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no msrp + no mvrp + no switchport port-security + switchport port-security maximum 1 + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable + no spanning-tree portfast + spanning-tree portfast auto + no spanning-tree link-type + no spanning-tree bpduguard + no spanning-tree bpdufilter + no spanning-tree cost + spanning-tree port-priority 128 + no spanning-tree guard + no spanning-tree bpduguard rate-limit + logging event spanning-tree use-global + switchport tap native vlan 1 + no switchport tap identity + no switchport tap mpls pop all + switchport tap allowed vlan 1-4094 + switchport tool allowed vlan 1-4094 + no switchport tool identity + no switchport tap truncation + no switchport tool truncation + no switchport tap default group + no switchport tap default interface + no switchport tool group + no switchport tool dot1q remove outer +! +interface Management1 + no description + no shutdown + default load-interval + mtu 1500 + logging event link-status use-global + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + ip address 10.0.2.15/24 + no ip verify unicast + default arp timeout 300 + default ipv6 nd cache expire 300 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + ipv6 nd ra suppress all + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + lldp transmit + lldp receive + default ntp serve +! +mac address-table aging-time 300 +! +monitor hadoop + shutdown +! +no ip fhrp accept-mode +! +no ip virtual-router mac-address +ip virtual-router mac-address advertisement-interval 30 +! +no ipv6 hardware fib nexthop-index +! +no ip routing +ip icmp redirect +no ip icmp source-interface +ip hardware fib route unprogrammed parent-drop +no ip hardware fib route delete delay +ip hardware fib next-hop update event bfd +no ip hardware fib maximum routes +no ip hardware forwarding mpls gre-key +no ip hardware fib next-hop sharing +ipv6 icmp redirect +no ip hardware fib maximum routes-v6 +! +no ip multicast-routing +ip multicast multipath deterministic +ip mfib max-fastdrops 1024 +no ip multicast count +ip mfib activity polling-interval 60 +! +ip mfib cache-entries unresolved max 4000 +ip mfib packet-buffers unresolved max 3 +! +ip as-path regex-mode asn +! +no ipv6 unicast-routing +! +control-plane + ip access-group default-control-plane-acl in + ipv6 access-group default-control-plane-acl in +! +mac address-table notification host-flap logging +mac address-table notification host-flap detection window 15 +! +mlag configuration + no domain-id + heartbeat-interval 4000 + no local-interface + no peer-address + no peer-link + reload-delay 0 + no reload-delay non-mlag + no reload-delay mode + no shutdown +! +monitor loop-protection + rate-limit 1000 + transmit-interval 5 + disabled-time 604800 +! +no mpls ip +! +no ip ftp client source-interface +no ip http client source-interface +no ip ssh client source-interface +no ip telnet client source-interface +no ip tftp client source-interface +! +no qos random-detect ecn global-buffer +qos map cos 0 1 2 3 4 5 6 7 to traffic-class 8 +qos map dscp 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to cos 3 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to uc-tx-queue 4 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4 +! +policy-map type control-plane copp-system-policy + class copp-system-bpdu + shape pps 6000 + bandwidth pps 5000 + class copp-system-arp + shape pps 25000 + bandwidth pps 1000 + class copp-system-igmp + shape pps 5000 + bandwidth pps 4000 + class copp-system-default + no shape + no bandwidth +! +no ip radius source-interface +! +monitor reachability + shutdown + probe receiver max-streams 50000 + probe checkpoint-interval 60 + destination port 49152 + default ignore-checksum + default preserve-streams +! +router pim bidirectional + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate +! +no ip tacacs source-interface +! +no vxlan vni notation dotted +! +no banner login +no banner motd +! +system coredump compressed +! +no dot1x system-auth-control +! +management api http-commands + protocol https port 443 + no protocol http port 80 + no protocol http localhost port 8080 + no protocol unix-socket + no protocol https certificate + no protocol https ssl profile + no cors allowed-origin + protocol https cipher aes256-cbc aes128-cbc + protocol https key-exchange rsa diffie-hellman-ephemeral-rsa + protocol https mac hmac-sha1 + qos dscp 0 + no shutdown + vrf default + no shutdown +! +management cim-provider + shutdown + http 7778 + https 7779 + idle-timeout 90 + default live-time + default trace + default ssl certificate + default ssl key +! +management console + idle-timeout 0 +! +management cvx + shutdown + no server host + no source-interface + no server port + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 +! +management defaults + secret hash md5 +! +management security + no entropy source hardware + no password minimum length +! +management ssh + idle-timeout 0 + authentication mode keyboard-interactive + server-port 22 + hostkey server rsa dsa + no fips restrictions + no hostkey client strict-checking + no shutdown + login timeout 120 + log-level info +! +management telnet + shutdown + idle-timeout 0 +! +management xmpp + shutdown + vrf default + session privilege 1 +! +! +end diff --git a/test/integration/test_profiles/eos/openconfig-vlan/config/default/replace.txt b/test/integration/test_profiles/eos/openconfig-vlan/config/default/replace.txt new file mode 100644 index 00000000..08b78487 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-vlan/config/default/replace.txt @@ -0,0 +1,15 @@ +no vlan 1 +vlan 1 + state active + name default + exit +no vlan 31 +vlan 31 + state suspend + name devel + exit +no vlan 20 +vlan 20 + name prod + exit +no vlan 30 diff --git a/test/integration/test_profiles/eos/openconfig-vlan/config/default/translation.txt b/test/integration/test_profiles/eos/openconfig-vlan/config/default/translation.txt new file mode 100644 index 00000000..4c19b0b9 --- /dev/null +++ b/test/integration/test_profiles/eos/openconfig-vlan/config/default/translation.txt @@ -0,0 +1,12 @@ +vlan 1 + state active + name default + exit +vlan 30 + state active + name devel + exit +vlan 20 + state suspend + name prod + exit diff --git a/test/integration/profiles_data/ios/openconfig-interfaces/default/candidate.json b/test/integration/test_profiles/ios/openconfig-interfaces/config/default/candidate.json similarity index 100% rename from test/integration/profiles_data/ios/openconfig-interfaces/default/candidate.json rename to test/integration/test_profiles/ios/openconfig-interfaces/config/default/candidate.json diff --git a/test/integration/profiles_data/ios/openconfig-interfaces/default/expected.json b/test/integration/test_profiles/ios/openconfig-interfaces/config/default/expected.json similarity index 100% rename from test/integration/profiles_data/ios/openconfig-interfaces/default/expected.json rename to test/integration/test_profiles/ios/openconfig-interfaces/config/default/expected.json diff --git a/test/integration/profiles_data/ios/openconfig-interfaces/default/merge.txt b/test/integration/test_profiles/ios/openconfig-interfaces/config/default/merge.txt similarity index 100% rename from test/integration/profiles_data/ios/openconfig-interfaces/default/merge.txt rename to test/integration/test_profiles/ios/openconfig-interfaces/config/default/merge.txt diff --git a/test/integration/profiles_data/ios/openconfig-interfaces/default/config.txt b/test/integration/test_profiles/ios/openconfig-interfaces/config/default/mocked/cli.1.show_running_config_all.0 similarity index 98% rename from test/integration/profiles_data/ios/openconfig-interfaces/default/config.txt rename to test/integration/test_profiles/ios/openconfig-interfaces/config/default/mocked/cli.1.show_running_config_all.0 index 566f6235..1a46c67b 100644 --- a/test/integration/profiles_data/ios/openconfig-interfaces/default/config.txt +++ b/test/integration/test_profiles/ios/openconfig-interfaces/config/default/mocked/cli.1.show_running_config_all.0 @@ -2896,7 +2896,7 @@ interface GigabitEthernet2.1 description another subiface platform ring rx 512 platform ring tx 256 - encapsulation dot1Q 1 native + encapsulation dot1Q 1 ip address 172.20.0.1 255.255.255.0 secondary ip address 192.168.1.1 255.255.255.0 ip redirects diff --git a/test/integration/profiles_data/ios/openconfig-interfaces/default/replace.txt b/test/integration/test_profiles/ios/openconfig-interfaces/config/default/replace.txt similarity index 100% rename from test/integration/profiles_data/ios/openconfig-interfaces/default/replace.txt rename to test/integration/test_profiles/ios/openconfig-interfaces/config/default/replace.txt diff --git a/test/integration/profiles_data/ios/openconfig-interfaces/default/translation.txt b/test/integration/test_profiles/ios/openconfig-interfaces/config/default/translation.txt similarity index 100% rename from test/integration/profiles_data/ios/openconfig-interfaces/default/translation.txt rename to test/integration/test_profiles/ios/openconfig-interfaces/config/default/translation.txt diff --git a/test/integration/profiles_data/junos/openconfig-interfaces/default/openconfig-interfaces.expected b/test/integration/test_profiles/junos/openconfig-interfaces/state/default/expected.json similarity index 100% rename from test/integration/profiles_data/junos/openconfig-interfaces/default/openconfig-interfaces.expected rename to test/integration/test_profiles/junos/openconfig-interfaces/state/default/expected.json diff --git a/test/integration/profiles_data/junos/openconfig-interfaces/default/openconfig-interfaces.native b/test/integration/test_profiles/junos/openconfig-interfaces/state/default/mocked/cli.1._get_interface_information_extensive_get_interface_information_.0 similarity index 100% rename from test/integration/profiles_data/junos/openconfig-interfaces/default/openconfig-interfaces.native rename to test/integration/test_profiles/junos/openconfig-interfaces/state/default/mocked/cli.1._get_interface_information_extensive_get_interface_information_.0 diff --git a/test/integration/test_profiles/junos/openconfig-network-instance/config/default/candidate.json b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/candidate.json new file mode 100644 index 00000000..ea568860 --- /dev/null +++ b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/candidate.json @@ -0,0 +1,251 @@ +{ + "network_instances": { + "network-instance": { + "devel": { + "config": { + "enabled": true, + "type": "L2L3" + }, + "name": "devel", + "protocols": { + "protocol": { + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.2.0/24": { + "config": { + "prefix": "10.0.2.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.200": { + "config": { + "next-hop": "192.168.100.200" + }, + "index": "192.168.100.200" + }, + "192.168.100.101": { + "config": { + "metric": 200, + "next-hop": "192.168.100.101" + }, + "index": "192.168.100.101" + } + } + }, + "prefix": "10.0.2.0/24" + }, + "10.100.2.0/24": { + "config": { + "prefix": "10.100.2.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.200": { + "config": { + "next-hop": "192.168.100.200" + }, + "index": "192.168.100.200" + } + } + }, + "prefix": "10.100.2.0/24" + } + } + } + } + } + } + }, + "global": { + "config": { + "enabled": true, + "type": "DEFAULT_INSTANCE" + }, + "name": "global", + "protocols": { + "protocol": { + "bgp bgp": { + "bgp": { + "global": { + "config": { + "as": 65000, + "router-id": "1.1.1.1" + } + }, + "neighbors": { + "neighbor": { + "172.20.0.1": { + "config": { + "neighbor-address": "172.20.0.1", + "peer-as": 65200, + "peer-group": "my_other_peers" + }, + "neighbor-address": "172.20.0.1" + }, + "192.168.100.2": { + "config": { + "description": "adsasd", + "neighbor-address": "192.168.100.2", + "peer-as": 65101, + "peer-group": "my_peers" + }, + "neighbor-address": "192.168.100.2" + }, + "192.168.100.30": { + "config": { + "neighbor-address": "192.168.100.30", + "peer-as": 65100, + "peer-group": "my_peers" + }, + "neighbor-address": "192.168.100.30" + } + } + } + }, + "identifier": "bgp", + "name": "bgp" + }, + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.0.0/24": { + "config": { + "prefix": "10.0.0.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.100": { + "config": { + "metric": 100, + "next-hop": "192.168.100.100" + }, + "index": "192.168.100.100" + }, + "192.168.100.101": { + "config": { + "metric": 200, + "next-hop": "192.168.100.101" + }, + "index": "192.168.100.101" + } + } + }, + "prefix": "10.0.0.0/24" + }, + "10.100.0.0/24": { + "config": { + "prefix": "10.100.0.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.200": { + "config": { + "next-hop": "192.168.100.200" + }, + "index": "192.168.100.200" + } + } + }, + "prefix": "10.100.0.0/24" + } + } + } + } + } + } + }, + "frontend": { + "config": { + "description": "production vrf", + "enabled": true, + "type": "L2L3" + }, + "name": "frontend", + "protocols": { + "protocol": { + "bgp bgp": { + "bgp": { + "neighbors": { + "neighbor": { + "192.168.100.2": { + "config": { + "description": "adsasd", + "neighbor-address": "192.168.100.2", + "peer-as": 65100, + "peer-group": "my_peers" + }, + "neighbor-address": "192.168.100.2" + }, + "192.168.100.3": { + "config": { + "neighbor-address": "192.168.100.3", + "peer-as": 65100, + "peer-group": "my_peers" + }, + "neighbor-address": "192.168.100.3" + } + } + } + }, + "identifier": "bgp", + "name": "bgp" + }, + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.1.0/24": { + "config": { + "prefix": "10.0.1.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.101": { + "config": { + "metric": 100, + "next-hop": "192.168.100.101" + }, + "index": "192.168.100.101" + }, + "192.168.100.102": { + "config": { + "metric": 200, + "next-hop": "192.168.100.102" + }, + "index": "192.168.100.102" + } + } + }, + "prefix": "10.0.1.0/24" + }, + "10.100.1.0/24": { + "config": { + "prefix": "10.100.1.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.200": { + "config": { + "next-hop": "192.168.100.200" + }, + "index": "192.168.100.200" + } + } + }, + "prefix": "10.100.1.0/24" + } + } + } + } + } + } + } + } + } +} diff --git a/test/integration/test_profiles/junos/openconfig-network-instance/config/default/expected.json b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/expected.json new file mode 100644 index 00000000..3342b34f --- /dev/null +++ b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/expected.json @@ -0,0 +1,228 @@ +{ + "network_instances": { + "network-instance": { + "devel": { + "config": { + "enabled": true, + "type": "L2L3" + }, + "name": "devel", + "protocols": { + "protocol": { + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.100.2.0/24": { + "config": { + "prefix": "10.100.2.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.200": { + "config": { + "next-hop": "192.168.100.200" + }, + "index": "192.168.100.200" + } + } + }, + "prefix": "10.100.2.0/24" + } + } + } + } + } + } + }, + "global": { + "config": { + "enabled": true, + "type": "DEFAULT_INSTANCE" + }, + "name": "global", + "protocols": { + "protocol": { + "bgp bgp": { + "bgp": { + "global": { + "config": { + "as": 65000, + "router-id": "1.1.1.1" + } + }, + "neighbors": { + "neighbor": { + "172.20.0.1": { + "config": { + "neighbor-address": "172.20.0.1", + "peer-as": 65200, + "peer-group": "my_other_peers" + }, + "neighbor-address": "172.20.0.1" + }, + "192.168.100.2": { + "config": { + "description": "adsasd", + "neighbor-address": "192.168.100.2", + "peer-as": 65100, + "peer-group": "my_peers" + }, + "neighbor-address": "192.168.100.2" + }, + "192.168.100.3": { + "config": { + "neighbor-address": "192.168.100.3", + "peer-as": 65100, + "peer-group": "my_peers" + }, + "neighbor-address": "192.168.100.3" + } + } + } + }, + "identifier": "bgp", + "name": "bgp" + }, + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.0.0/24": { + "config": { + "prefix": "10.0.0.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.100": { + "config": { + "metric": 100, + "next-hop": "192.168.100.100" + }, + "index": "192.168.100.100" + }, + "192.168.100.101": { + "config": { + "metric": 200, + "next-hop": "192.168.100.101" + }, + "index": "192.168.100.101" + } + } + }, + "prefix": "10.0.0.0/24" + }, + "10.100.0.0/24": { + "config": { + "prefix": "10.100.0.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.200": { + "config": { + "next-hop": "192.168.100.200" + }, + "index": "192.168.100.200" + } + } + }, + "prefix": "10.100.0.0/24" + } + } + } + } + } + } + }, + "prod": { + "config": { + "description": "production vrf", + "enabled": true, + "type": "L2L3" + }, + "name": "prod", + "protocols": { + "protocol": { + "bgp bgp": { + "bgp": { + "neighbors": { + "neighbor": { + "192.168.100.2": { + "config": { + "description": "adsasd", + "neighbor-address": "192.168.100.2", + "peer-as": 65100, + "peer-group": "my_peers" + }, + "neighbor-address": "192.168.100.2" + }, + "192.168.100.3": { + "config": { + "local-as": 123, + "neighbor-address": "192.168.100.3", + "peer-as": 65100, + "peer-group": "my_peers" + }, + "neighbor-address": "192.168.100.3" + } + } + } + }, + "identifier": "bgp", + "name": "bgp" + }, + "static static": { + "identifier": "static", + "name": "static", + "static-routes": { + "static": { + "10.0.1.0/24": { + "config": { + "prefix": "10.0.1.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.100": { + "config": { + "next-hop": "192.168.100.100" + }, + "index": "192.168.100.100" + }, + "192.168.100.101": { + "config": { + "metric": 200, + "next-hop": "192.168.100.101" + }, + "index": "192.168.100.101" + } + } + }, + "prefix": "10.0.1.0/24" + }, + "10.100.1.0/24": { + "config": { + "prefix": "10.100.1.0/24" + }, + "next-hops": { + "next-hop": { + "192.168.100.200": { + "config": { + "next-hop": "192.168.100.200" + }, + "index": "192.168.100.200" + } + } + }, + "prefix": "10.100.1.0/24" + } + } + } + } + } + } + } + } + } +} diff --git a/test/integration/test_profiles/junos/openconfig-network-instance/config/default/merge.txt b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/merge.txt new file mode 100644 index 00000000..49b6b477 --- /dev/null +++ b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/merge.txt @@ -0,0 +1,139 @@ + + + + + my_other_peers + + 172.20.0.1 + 65200 + + + + my_peers + + 192.168.100.2 + adsasd + 65101 + + + + my_peers + + 192.168.100.30 + 65100 + + + + my_peers + + 192.168.100.3 + + + + + + 1.1.1.1 + + + + 65000 + + + + + + 10.100.0.0/24 + + 192.168.100.200 + + + + 10.0.0.0/24 + + 192.168.100.100 + 100 + + + 192.168.100.101 + 200 + + + + + + + frontend + virtual-router + production vrf + + + + my_peers + + 192.168.100.3 + 65100 + + + + my_peers + + 192.168.100.2 + adsasd + 65100 + + + + + + + + 10.0.1.0/24 + + 192.168.100.102 + 200 + + + 192.168.100.101 + 100 + + + + 10.100.1.0/24 + + 192.168.100.200 + + + + + + + devel + virtual-router + + + + 10.0.2.0/24 + + 192.168.100.200 + + + 192.168.100.101 + 200 + + + + 10.100.2.0/24 + + 192.168.100.200 + + + + + + + + + prod + + + diff --git a/test/integration/test_profiles/junos/openconfig-network-instance/config/default/mocked/cli.1._get_configuration_.0 b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/mocked/cli.1._get_configuration_.0 new file mode 100755 index 00000000..1bcb738c --- /dev/null +++ b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/mocked/cli.1._get_configuration_.0 @@ -0,0 +1,275 @@ + + 12.1X47-D20.7 + + vsrx + + $1$5MhDFyrI$NBBMndW1POqbN.0QEA4z0. + + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCyacKJHfFzAPflQADs7NSgeFwbX59e+k71zy85hT7WTRA5XQ9KW2WapjlFzRiBT2lHUa4brPcXbn6vnBWSaPNq2Ltt1QIu+WPShVz4+WBbc4ommEyaLQVerxTfgPAwWh92A3/PnUFB78auZFg+kj7GiEJuzsMGS7bpppq1lhQt370RD6HdymIutsmA3SFOj0o0BFpaCS3C6XWlMgkBDrcXBoAqGIYU/lKL3XN0IwbF0NCHg4Gr4RyzK0Sw4+0cTrkTQnX3S2B8sHN/6yycMceInt7DkAHSBjBYKct0+hx+qdZWONu8iwQj40841UZGugOpIE/vxQTvDY4L+/e7PUG/ vagrant + + + + + vagrant + 2000 + super-user + + + ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key + + + + + + + allow + + + + + + + + ge-0/0/0.0 + + + + + + * + + any + + + + + messages + + any + + + + authorization + + + + + interactive-commands + + interactive-commands + + + + + + + + https://ae1.juniper.net/junos/key_retrieval + + + + + + + + 16 + + + + + + ge-0/0/0 + management interface + 1400 + + 0 + ge-0/0/0.0 + + + + + + + + + + ge-0/0/1 + ge-0/0/1 + + 1514 + + + ae0 + ae0 + + 1514 + + 0 + ASDASDASD + 100 + + +
+ 192.168.100.1/24 +
+
+ 172.20.100.1/24 +
+
+
+
+ + 1 + ae0.1 + 1 + + +
+ 192.168.101.1/24 +
+
+
+
+ + 2 + ae0.2 + 2 + + +
+ 192.168.102.1/24 +
+
+
+
+
+ + lo0 + lo0 + + 0 + lo0.0 + + +
+ + + + 10.0.0.0/24 + + 192.168.100.100 + 100 + + + 192.168.100.101 + 200 + + + + 10.100.0.0/24 + + 192.168.100.200 + + + + 1.1.1.1 + + 65000 + + + + + + my_peers + + 192.168.100.2 + adsasd + 65100 + + + 192.168.100.3 + 65100 + + + + my_other_peers + + 172.20.0.1 + 65200 + + + + + + + + + packet-based + + + packet-based + + + + + + + devel + virtual-router + + + + 10.100.2.0/24 + + 192.168.100.200 + + + + + + + prod + production vrf + virtual-router + + + + 10.0.1.0/24 + + 192.168.100.100 + + + 192.168.100.101 + 200 + + + + 10.100.1.0/24 + + 192.168.100.200 + + + + + + + + my_peers + + 192.168.100.2 + adsasd + 65100 + + + 192.168.100.3 + 65100 + + 123 + + + + + + + +
diff --git a/test/integration/test_profiles/junos/openconfig-network-instance/config/default/replace.txt b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/replace.txt new file mode 100644 index 00000000..aefea75b --- /dev/null +++ b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/replace.txt @@ -0,0 +1,128 @@ + + + + + my_other_peers + + 172.20.0.1 + 65200 + + + + my_peers + + 192.168.100.2 + adsasd + 65101 + + + + my_peers + + 192.168.100.30 + 65100 + + + + + + 1.1.1.1 + + + + 65000 + + + + + + 10.100.0.0/24 + + 192.168.100.200 + + + + 10.0.0.0/24 + + 192.168.100.100 + 100 + + + 192.168.100.101 + 200 + + + + + + + frontend + virtual-router + production vrf + + + + my_peers + + 192.168.100.3 + 65100 + + + + my_peers + + 192.168.100.2 + adsasd + 65100 + + + + + + + + 10.0.1.0/24 + + 192.168.100.102 + 200 + + + 192.168.100.101 + 100 + + + + 10.100.1.0/24 + + 192.168.100.200 + + + + + + + devel + virtual-router + + + + 10.0.2.0/24 + + 192.168.100.200 + + + 192.168.100.101 + 200 + + + + 10.100.2.0/24 + + 192.168.100.200 + + + + + + + diff --git a/test/integration/test_profiles/junos/openconfig-network-instance/config/default/translation.txt b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/translation.txt new file mode 100644 index 00000000..ed52e640 --- /dev/null +++ b/test/integration/test_profiles/junos/openconfig-network-instance/config/default/translation.txt @@ -0,0 +1,120 @@ + + + + + my_other_peers + + 172.20.0.1 + 65200 + + + + my_peers + + 192.168.100.3 + 65100 + + + + my_peers + + 192.168.100.2 + adsasd + 65100 + + + + + + 1.1.1.1 + + + + 65000 + + + + + + 10.100.0.0/24 + + 192.168.100.200 + + + + 10.0.0.0/24 + + 192.168.100.100 + 100 + + + 192.168.100.101 + 200 + + + + + + + prod + virtual-router + production vrf + + + + my_peers + + 192.168.100.3 + + 123 + + 65100 + + + + my_peers + + 192.168.100.2 + adsasd + 65100 + + + + + + + + 10.0.1.0/24 + + 192.168.100.100 + + + 192.168.100.101 + 200 + + + + 10.100.1.0/24 + + 192.168.100.200 + + + + + + + devel + virtual-router + + + + 10.100.2.0/24 + + 192.168.100.200 + + + + + + + diff --git a/test/integration/tutorial_data/test_advanced_manipulation/eos/replace.expected b/test/integration/tutorial_data/test_advanced_manipulation/eos/replace.expected index 4ef3155b..dbcc0559 100644 --- a/test/integration/tutorial_data/test_advanced_manipulation/eos/replace.expected +++ b/test/integration/tutorial_data/test_advanced_manipulation/eos/replace.expected @@ -9,6 +9,10 @@ interface Port-Channel1.1 exit default interface Ethernet1 interface Ethernet1 + switchport native vlan 1 + switchport access vlan 1 + switchport trunk vlan 1-4094 + switchport mode access description This is a description exit default interface Ethernet2 diff --git a/test/integration/tutorial_data/test_populating_from_file/eos/expected.json b/test/integration/tutorial_data/test_populating_from_file/eos/expected.json index 57c23c58..ace4f6d3 100644 --- a/test/integration/tutorial_data/test_populating_from_file/eos/expected.json +++ b/test/integration/tutorial_data/test_populating_from_file/eos/expected.json @@ -142,6 +142,18 @@ } } }, + "ethernet": { + "switched-vlan": { + "config": { + "trunk-vlans": [ + "1..4094" + ], + "interface-mode": "ACCESS", + "native-vlan": 1, + "access-vlan": 1 + } + } + }, "config": { "type": "ethernetCsmacd", "enabled": true, diff --git a/test/integration/tutorial_data/test_populating_from_file/junos/expected.json b/test/integration/tutorial_data/test_populating_from_file/junos/expected.json index 6aac2a31..3552f172 100644 --- a/test/integration/tutorial_data/test_populating_from_file/junos/expected.json +++ b/test/integration/tutorial_data/test_populating_from_file/junos/expected.json @@ -1,167 +1,200 @@ { "interfaces": { "interface": { - "ae0": { - "config": { - "enabled": true, - "name": "ae0", - "type": "ieee8023adLag" - }, - "name": "ae0", + "ge-0/0/0": { + "name": "ge-0/0/0", "subinterfaces": { "subinterface": { "0": { + "index": "0", + "ipv4": { + "config": { + "enabled": true + } + }, "config": { - "description": "ASDASDASD", - "enabled": true, - "name": "0" - }, - "index": "0", + "enabled": true, + "name": "0", + "description": "ge-0/0/0.0" + } + } + } + }, + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false + } + } + }, + "config": { + "type": "ethernetCsmacd", + "mtu": 1400, + "enabled": true, + "description": "management interface", + "name": "ge-0/0/0" + } + }, + "ge-0/0/1": { + "name": "ge-0/0/1", + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false + } + } + }, + "config": { + "type": "ethernetCsmacd", + "enabled": false, + "description": "ge-0/0/1", + "name": "ge-0/0/1" + } + }, + "ae0": { + "name": "ae0", + "subinterfaces": { + "subinterface": { + "0": { + "index": "0", + "vlan": { + "config": { + "vlan-id": 100 + } + }, "ipv4": { + "config": { + "enabled": true + }, "addresses": { "address": { - "172.20.100.1/24": { + "192.168.100.1": { + "ip": "192.168.100.1", "config": { - "ip": "172.20.100.1", + "ip": "192.168.100.1", "prefix-length": 24 - }, - "ip": "172.20.100.1/24" - }, - "192.168.100.1/24": { + } + }, + "172.20.100.1": { + "ip": "172.20.100.1", "config": { - "ip": "192.168.100.1", + "ip": "172.20.100.1", "prefix-length": 24 - }, - "ip": "192.168.100.1/24" + } } } - }, - "config": { - "enabled": true } - }, + }, + "config": { + "enabled": true, + "name": "0", + "description": "ASDASDASD" + } + }, + "1": { + "index": "1", "vlan": { "config": { - "vlan-id": 100 + "vlan-id": 1 } - } - }, - "1": { - "config": { - "description": "ae0.1", - "enabled": true, - "name": "1" - }, - "index": "1", + }, "ipv4": { + "config": { + "enabled": true + }, "addresses": { "address": { - "192.168.101.1/24": { + "192.168.101.1": { + "ip": "192.168.101.1", "config": { - "ip": "192.168.101.1", + "ip": "192.168.101.1", "prefix-length": 24 - }, - "ip": "192.168.101.1/24" + } } } - }, - "config": { - "enabled": true } - }, + }, + "config": { + "enabled": true, + "name": "1", + "description": "ae0.1" + } + }, + "2": { + "index": "2", "vlan": { "config": { - "vlan-id": 1 + "vlan-id": 2 } - } - }, - "2": { - "config": { - "description": "ae0.2", - "enabled": true, - "name": "2" - }, - "index": "2", + }, "ipv4": { + "config": { + "enabled": true + }, "addresses": { "address": { - "192.168.102.1/24": { + "192.168.102.1": { + "ip": "192.168.102.1", "config": { - "ip": "192.168.102.1", + "ip": "192.168.102.1", "prefix-length": 24 - }, - "ip": "192.168.102.1/24" + } } } - }, - "config": { - "enabled": true - } - }, - "vlan": { - "config": { - "vlan-id": 2 } + }, + "config": { + "enabled": true, + "name": "2", + "description": "ae0.2" } } } - } - }, - "ge-0/0/0": { + }, + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false + } + } + }, "config": { - "description": "management interface", - "enabled": true, - "mtu": 1400, - "name": "ge-0/0/0", - "type": "ethernetCsmacd" - }, - "name": "ge-0/0/0", + "type": "ieee8023adLag", + "enabled": true, + "name": "ae0" + } + }, + "lo0": { + "name": "lo0", "subinterfaces": { "subinterface": { "0": { - "config": { - "description": "ge-0/0/0.0", - "enabled": true, - "name": "0" - }, - "index": "0", + "index": "0", "ipv4": { "config": { - "enabled": true + "enabled": false } + }, + "config": { + "enabled": true, + "name": "0", + "description": "lo0.0" } } } - } - }, - "ge-0/0/1": { - "config": { - "description": "ge-0/0/1", - "enabled": false, - "name": "ge-0/0/1", - "type": "ethernetCsmacd" - }, - "name": "ge-0/0/1" - }, - "lo0": { - "config": { - "description": "lo0", - "enabled": true, - "name": "lo0", - "type": "softwareLoopback" - }, - "name": "lo0", - "subinterfaces": { - "subinterface": { - "0": { - "config": { - "description": "lo0.0", - "enabled": true, - "name": "0" - }, - "index": "0" + }, + "routed-vlan": { + "ipv4": { + "config": { + "enabled": false } } + }, + "config": { + "type": "softwareLoopback", + "enabled": true, + "description": "lo0", + "name": "lo0" } } } diff --git a/test/unit/test_jinja_filters.py b/test/unit/test_jinja_filters.py new file mode 100644 index 00000000..f41b8431 --- /dev/null +++ b/test/unit/test_jinja_filters.py @@ -0,0 +1,143 @@ +""" +Test Jinja filters +""" + +# Python3 support +from __future__ import print_function +from __future__ import unicode_literals + +# Python std lib +import unittest + +# third party libs +try: + from netaddr.core import AddrFormatError + HAS_NETADDR = True +except ImportError: + HAS_NETADDR = False + +from napalm_yang.jinja_filters import ip_filters, load_filters, vlan_filters + + +class TestJinjaFilters(unittest.TestCase): + def test_netmask_to_cidr(self): + """ + Tests Jinja2 filter ```netmask_to_cidr```: + + * check if load_filters returns the correct function + * check if returns empty string on None + * check if raises AddrFormatError on invalid mask + * check if prefix length is returned as expected + """ + + self.assertTrue(HAS_NETADDR) + + self.assertEqual(load_filters()['netmask_to_cidr'], ip_filters.netmask_to_cidr) + + self.assertRaises(AddrFormatError, ip_filters.netmask_to_cidr, 'bad') + + self.assertEqual(ip_filters.netmask_to_cidr(None), '') + self.assertEqual(ip_filters.netmask_to_cidr('255.255.255.0'), 24) + self.assertEqual(ip_filters.netmask_to_cidr('255.255.255.255'), 32) + + def test_cidr_to_netmask(self): + """ + Tests Jinja2 filter ```cidr_to_netmask```: + + * check if load_filters returns the correct function + * check if returns empty string on None + * check if raises AddrFormatError on invalid prefix length + * check if network mask is returned as expected + """ + + self.assertTrue(HAS_NETADDR) + + self.assertEqual(load_filters()['cidr_to_netmask'], ip_filters.cidr_to_netmask) + + self.assertRaises(AddrFormatError, ip_filters.cidr_to_netmask, 'bad') + + self.assertEqual(ip_filters.cidr_to_netmask(None), '') + self.assertEqual(ip_filters.cidr_to_netmask(24), '255.255.255.0') + self.assertEqual(ip_filters.cidr_to_netmask('24'), '255.255.255.0') + self.assertEqual(ip_filters.cidr_to_netmask(32), '255.255.255.255') + + def test_normalize_prefix(self): + """ + Tests Jinja2 filter ```normalize_prefix```: + + * check if load_filters returns the correct function + * check if returns empty string on None + * check if raises AddrFormatError on invalid prefix + * check if IPv4 and IPv6 prefix format is returned as expected + """ + + self.assertTrue(HAS_NETADDR) + + self.assertEqual(load_filters()['normalize_prefix'], ip_filters.normalize_prefix) + + self.assertRaises(AddrFormatError, ip_filters.normalize_prefix, 'bad') + + self.assertEqual(ip_filters.normalize_prefix(None), '') + self.assertEqual(ip_filters.normalize_prefix('192.168.0.1'), '192.168.0.1/32') + self.assertEqual(ip_filters.normalize_prefix('192.168.0.55 255.255.255.0'), + '192.168.0.55/24') + self.assertEqual(ip_filters.normalize_prefix('192.168.0.55/255.255.255.0'), + '192.168.0.55/24') + self.assertEqual(ip_filters.normalize_prefix('2001:0DB8:0:0000:1:0:0:1/64'), + '2001:db8::1:0:0:1/64') + + def test_normalize_address(self): + """ + Tests Jinja2 filter ```normalize_address```: + + * check if load_filters returns the correct function + * check if returns empty string on None + * check if raises AddrFormatError on invalid address + * check if IPv4 and IPv6 address format is returned as expected + """ + + self.assertTrue(HAS_NETADDR) + + self.assertEqual(load_filters()['normalize_address'], ip_filters.normalize_address) + + self.assertRaises(AddrFormatError, ip_filters.normalize_address, 'bad') + + self.assertEqual(ip_filters.normalize_address(None), '') + self.assertEqual(ip_filters.normalize_address('192.168.0.1'), '192.168.0.1') + self.assertEqual(ip_filters.normalize_address('192.168.1'), '192.168.0.1') + self.assertEqual(ip_filters.normalize_address('2001:0DB8:0:0000:1:0:0:1'), + '2001:db8::1:0:0:1') + + def test_prefix_to_addrmask(self): + """ + Tests Jinja2 filter ```prefix_to_addrmask```: + + * check if load_filters returns the correct function + * check if returns empty string on None + * check if raises AddrFormatError on invalid prefix + * check if IPv4 address and netmask format is returned as expected + """ + + self.assertTrue(HAS_NETADDR) + + self.assertEqual(load_filters()['prefix_to_addrmask'], ip_filters.prefix_to_addrmask) + + self.assertRaises(AddrFormatError, ip_filters.prefix_to_addrmask, 'bad') + + self.assertEqual(ip_filters.prefix_to_addrmask(None), '') + self.assertEqual(ip_filters.prefix_to_addrmask('192.168.0.1/24'), + '192.168.0.1 255.255.255.0') + self.assertEqual(ip_filters.prefix_to_addrmask('192.168.0.0/32', '/'), + '192.168.0.0/255.255.255.255') + + def test_vlan_range_to_openconfig(self): + self.assertEqual(vlan_filters.vlan_range_to_oc("1, 2, 4-10"), + ['1', ' 2', ' 4..10']) + self.assertEqual(vlan_filters.vlan_range_to_oc("1, 2, 4-10, 100-200"), + ['1', ' 2', ' 4..10', ' 100..200']) + + def test_openconfig_to_vlan_range(self): + self.assertEqual(vlan_filters.oc_to_vlan_range([1, 2, '4..10']), + "1,2,4-10") + self.assertEqual(vlan_filters.oc_to_vlan_range([1, '2', '4..10', '100..200']), + "1,2,4-10,100-200") diff --git a/test/unit/test_parser.py b/test/unit/test_parser.py new file mode 100644 index 00000000..77d78f91 --- /dev/null +++ b/test/unit/test_parser.py @@ -0,0 +1,138 @@ +import napalm_yang + + +class Tests(object): + + def test_resolve_path_dict(self): + data = { + "simple": { + "path": 123 + } + } + path = "simple.path" + result = napalm_yang.parsers.base.BaseParser({}, {}).resolve_path(data, path) + assert result == 123 + + def test_resolve_path_list(self): + data = { + "simple": [ + {"path": 123} + ] + } + path = "simple.0.path" + result = napalm_yang.parsers.base.BaseParser({}, {}).resolve_path(data, path) + assert result == 123 + + def test_extract_value_simple(self): + data = { + "group": { + "group_1": { + "data": {"whatever": 1}, + "subgroup": { + "subgroup_1": {"path": 2}, + "subgroup_2": {"path": 3}, + }, + }, + "group_2": { + "data": {"whatever": 4}, + "subgroup": { + "subgroup_3": {"path": 5}, + "subgroup_4": {"path": 6}, + }, + } + } + } + path = "group.?name" + result = napalm_yang.parsers.base.BaseParser({}, {}).resolve_path(data, path) + expected = [ + {'data': {'whatever': 1}, + 'name': 'group_1', + 'subgroup': {'subgroup_1': {'path': 2}, 'subgroup_2': {'path': 3}}}, + {'data': {'whatever': 4}, + 'name': 'group_2', + 'subgroup': {'subgroup_3': {'path': 5}, 'subgroup_4': {'path': 6}}}] + assert result == expected or result == list(reversed(expected)) + + def test_extract_value_nested(self): + data = { + "group": { + "group_1": { + "data": {"whatever": 1}, + "subgroup": { + "subgroup_1": {"path": 2}, + "subgroup_2": {"path": 3}, + }, + }, + "group_2": { + "data": {"whatever": 4}, + "subgroup": { + "subgroup_3": {"path": 5}, + "subgroup_4": {"path": 6}, + }, + } + } + } + path = "group.?name.subgroup.?subname" + result = napalm_yang.parsers.base.BaseParser({}, {}).resolve_path(data, path) + expected = [ + {'name': 'group_1', 'path': 2, 'subname': 'subgroup_1', "data": {"whatever": 1}}, + {'name': 'group_1', 'path': 3, 'subname': 'subgroup_2', "data": {"whatever": 1}}, + {'name': 'group_2', 'path': 5, 'subname': 'subgroup_3', "data": {"whatever": 4}}, + {'name': 'group_2', 'path': 6, 'subname': 'subgroup_4', "data": {"whatever": 4}}] + assert sorted(result, key=lambda k: k['subname']) == expected + + def test_extract_value_nested_list(self): + data = { + "group": [{"name": "group_1", + "data": {"whatever": 1}, + "subgroup": [{"name": "subgroup_1", "path": 2}, + {"name": "subgroup_2", "path": 3}]}, + {"name": "group_2", + "data": {"whatever": 4}, + "subgroup": [{"name": "subgroup_3", "path": 5}, + {"name": "subgroup_4", "path": 6}]}]} + path = "group.?group:name.subgroup.?subgroup:name" + result = napalm_yang.parsers.base.BaseParser({}, {}).resolve_path(data, path) + expected = [ + {'data': {'whatever': 1}, 'group': 'group_1', 'name': 'group_1', + 'path': 2, 'subgroup': 'subgroup_1'}, + {'data': {'whatever': 1}, 'group': 'group_1', 'name': 'group_1', + 'path': 3, 'subgroup': 'subgroup_2'}, + {'data': {'whatever': 4}, 'group': 'group_2', 'name': 'group_2', + 'path': 5, 'subgroup': 'subgroup_3'}, + {'data': {'whatever': 4}, 'group': 'group_2', 'name': 'group_2', + 'path': 6, 'subgroup': 'subgroup_4'}] + assert sorted(result, key=lambda k: k['subgroup']) == expected + + def test_junos_neighbor(self): + data = {"group": [{"name": {"#text": "my_peers"}, + "neighbor": [ + { + "name": {"#text": "192.168.100.2"}, + "description": {"#text": "adsasd"}, + "peer-as": {"#text": "65100"} + }, + { + "name": {"#text": "192.168.100.3"}, + "peer-as": {"#text": "65100"}}]}, + {"name": {"#text": "my_other_peers"}, + "neighbor": { + "name": {"#text": "172.20.0.1"}, + "peer-as": {"#text": "65200"}}}]} + path = "group.?peer_group:name.neighbor.?neighbor:name" + result = napalm_yang.parsers.base.BaseParser({}, {}).resolve_path(data, path) + expected = [ + {'name': {'#text': 'my_other_peers'}, + 'neighbor': '172.20.0.1', + 'peer-as': {'#text': '65200'}, + 'peer_group': 'my_other_peers'}, + {'description': {'#text': 'adsasd'}, + 'name': {'#text': 'my_peers'}, + 'neighbor': '192.168.100.2', + 'peer-as': {'#text': '65100'}, + 'peer_group': 'my_peers'}, + {'name': {'#text': 'my_peers'}, + 'neighbor': '192.168.100.3', + 'peer-as': {'#text': '65100'}, + 'peer_group': 'my_peers'}] + assert sorted(result, key=lambda k: k['neighbor']) == expected diff --git a/test/unit/test_supported_models.py b/test/unit/test_supported_models.py new file mode 100644 index 00000000..1211b5b2 --- /dev/null +++ b/test/unit/test_supported_models.py @@ -0,0 +1,12 @@ +import pytest + +import napalm_yang + + +class Tests(object): + + @pytest.mark.parametrize("module, models", napalm_yang.SUPPORTED_MODELS) + def test_supported_models(self, module, models): + obj = getattr(napalm_yang.models, module.replace("-", "_"), None) + assert obj, "{} not supported" + assert obj._pyangbind_elements.keys() == models diff --git a/test/unit/test_text_tree.py b/test/unit/test_text_tree.py new file mode 100644 index 00000000..32fbf9c3 --- /dev/null +++ b/test/unit/test_text_tree.py @@ -0,0 +1,35 @@ +from glob import glob + +import json +import os + +import pytest + +import napalm_yang + + +BASE_PATH = os.path.dirname(__file__) +test_case_text_parser = [x.split('/')[-1] + for x in glob('{}/text_tree/*'.format(BASE_PATH))] + + +class Tests(object): + + @pytest.mark.parametrize("case", test_case_text_parser) + def test_text_tree_parser(self, case): + path = os.path.join(BASE_PATH, "text_tree", case, "config.txt") + expected = os.path.join(BASE_PATH, "text_tree", case, "expected.json") + + with open(path, 'r') as f: + original = [f.read()] + + parsed = napalm_yang.parsers.text_tree.TextTree({}, {}).init_native(original) + result = json.dumps(parsed, indent=4) + + # with open(expected, 'w') as f: + # f.write(result) + + with open(expected, 'r') as f: + expected = f.read() + + assert result == expected diff --git a/test/unit/text_tree/test_case_1/config.txt b/test/unit/text_tree/test_case_1/config.txt new file mode 100644 index 00000000..cccafaaa --- /dev/null +++ b/test/unit/text_tree/test_case_1/config.txt @@ -0,0 +1,1753 @@ +! Command: show running-config all +! device: localhost (vEOS, EOS-4.15.2.1F) +! +! boot system flash:/vEOS-lab.swi +! +hardware access-list ipv6 implicit-permit icmpv6 all +! +no deep-inspection payload l2 skip +no deep-inspection payload l4 skip +! +agent fatal-error action reload +! +bfd slow-timer 2000 +bfd interval 300 min_rx 300 multiplier 3 default +! +prompt %H%R%v%P +no service configuration session max completed +no service configuration session max pending +! +schedule config max-concurrent-jobs 1 +schedule tech-support interval 60 max-log-files 100 command show tech-support +! +no logging event storm-control discards global +no logging event storm-control discards interval +! +cvx + shutdown + port 9979 + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 + service hsc + vtep flood list type any + service openstack + shutdown + grace-period 60 + name-resolution interval 21600 + service vxlan + shutdown + vtep mac-learning control-plane + resync-period 300 +! +no dcbx application +! +no ip dhcp relay information option +no ip dhcp relay always-on +no ip dhcp smart-relay global +! +no ip dhcp snooping +no ip dhcp snooping information option +ip dhcp snooping information option circuit-id type 0 format %p:%v +! +default switch forwarding-mode +! +vlan internal allocation policy ascending +! +email + no from-user + no server + no auth username + no auth password + no tls +! +errdisable detect cause arp-inspection +errdisable detect cause link-flap +no errdisable recovery cause arp-inspection +no errdisable recovery cause bpduguard +no errdisable recovery cause hitless-reload-down +no errdisable recovery cause link-flap +no errdisable recovery cause loopprotectguard +no errdisable recovery cause no-internal-vlan +no errdisable recovery cause portchannelguard +no errdisable recovery cause portsec +no errdisable recovery cause tapagg +no errdisable recovery cause uplink-failure-detection +no errdisable recovery cause xcvr-unsupported +errdisable recovery interval 300 +! +event-handler dhclient + trigger on-boot + action bash sudo /mnt/flash/initialize_ma1.sh + delay 20 + no asynchronous + timeout 10 +! +ip igmp snooping +no ip igmp snooping report-flooding +ip igmp snooping robustness-variable 2 +no ip igmp snooping restart query-interval +ip igmp snooping immediate-leave +default ip igmp snooping vlan 1 +default ip igmp snooping vlan 1 querier +no ip igmp snooping vlan 1 querier address +no ip igmp snooping vlan 1 querier query-interval +no ip igmp snooping vlan 1 querier max-response-time +no ip igmp snooping vlan 1 querier last-member-query-interval +no ip igmp snooping vlan 1 querier last-member-query-count +no ip igmp snooping vlan 1 querier startup-query-interval +no ip igmp snooping vlan 1 querier startup-query-count +no ip igmp snooping vlan 1 querier version +no ip igmp snooping vlan 1 max-groups +default ip igmp snooping vlan 1 immediate-leave +no ip igmp snooping querier +no ip igmp snooping querier address +ip igmp snooping querier query-interval 125 +ip igmp snooping querier max-response-time 10 +ip igmp snooping querier last-member-query-interval 1 +no ip igmp snooping querier last-member-query-count +no ip igmp snooping querier startup-query-interval +no ip igmp snooping querier startup-query-count +no ip igmp snooping querier version +! +default logging event congestion-drops +! +no service interface inactive expose +! +no service interface unconnected expose +! +default load-interval default +! +transceiver qsfp default-mode 4x10G +! +ip pim log-neighbor-changes +no ip pim bfd +no ip pim ssm range +ip pim sparse-mode sg-expiry-timer 210 +ip pim spt-threshold 0 +! +ip msdp timer 30 +! +no ip pim rp-candidate +no ip pim bsr-holdtime +no ip pim bsr-sztimeout +no ip pim bsr-candidate +no ip pim bsr rp-candidate advertisement-filter +! +no ip pim register-source +! +lacp system-priority 32768 +! +no queue-monitor length +no queue-monitor length notifying +! +queue-monitor length global-buffer thresholds 512 256 +no queue-monitor length mirror +! +queue-monitor length global-buffer +! +errdisable flap-setting cause link-flap max-flaps 5 time 10 +! +lldp timer 30 +lldp holdtime 120 +lldp reinit 2 +lldp tlv-select link-aggregation +lldp tlv-select management-address +lldp tlv-select max-frame-size +lldp tlv-select port-description +lldp tlv-select port-vlan +lldp tlv-select system-capabilities +lldp tlv-select system-description +lldp tlv-select system-name +lldp run +no lldp management-address +! +logging on +logging buffered 32 debugging +logging trap informational +logging console errors +no logging synchronous +logging format timestamp traditional +no logging format hostname fqdn +logging facility local4 +no logging source-interface +! +logging level AAA debugging +logging level ACCOUNTING debugging +logging level ACL debugging +logging level AGENT debugging +logging level ALE debugging +logging level ARP debugging +logging level BFD debugging +logging level BGP debugging +logging level CAPACITY debugging +logging level CAPI debugging +logging level CLEAR debugging +logging level DATAPLANE debugging +logging level DOT1X debugging +logging level ENVMON debugging +logging level ETH debugging +logging level EVENTMON debugging +logging level EXTENSION debugging +logging level FHRP debugging +logging level FLOW debugging +logging level FORWARDING debugging +logging level FRU debugging +logging level FWK debugging +logging level GMP debugging +logging level HARDWARE debugging +logging level IGMP debugging +logging level IGMPSNOOPING debugging +logging level INTF debugging +logging level IP6ROUTING debugging +logging level IRA debugging +logging level ISIS debugging +logging level KERNELFIB debugging +logging level LACP debugging +logging level LAG debugging +logging level LAUNCHER debugging +logging level LINEPROTO debugging +logging level LLDP debugging +logging level LOGMGR debugging +logging level LOOPBACK debugging +logging level LOOPPROTECT debugging +logging level MAPREDUCEMONITOR debugging +logging level MDIO debugging +logging level MIRRORING debugging +logging level MLAG debugging +logging level MMODE debugging +logging level MROUTE debugging +logging level MRP debugging +logging level MSDP debugging +logging level MSRP debugging +logging level MVRP debugging +logging level NAT debugging +logging level OPENFLOW debugging +logging level OSPF debugging +logging level OSPF3 debugging +logging level PFC debugging +logging level PIM debugging +logging level PIMBSR debugging +logging level PORTSECURITY debugging +logging level PTP debugging +logging level PWRMGMT debugging +logging level QOS debugging +logging level QUEUEMONITOR debugging +logging level REACHABILITYMONITOR debugging +logging level REDUNDANCY debugging +logging level RIB debugging +logging level ROUTING debugging +logging level SECURITY debugging +logging level SERVERMONITOR debugging +logging level SPANTREE debugging +logging level STAGEMGR debugging +logging level SYS debugging +logging level SYSDB debugging +logging level TAPAGG debugging +logging level TCP debugging +logging level TRANSCEIVER debugging +logging level TUNNEL debugging +logging level VM debugging +logging level VMTRACERSESS debugging +logging level VMWAREVI debugging +logging level VMWAREVS debugging +logging level VRF debugging +logging level VRRP debugging +logging level VXLAN debugging +logging level XMPP debugging +logging level ZTP debugging +! +logging event link-status global +! +no ip virtual-router mac-address mlag-peer +! +no msrp streams load-file +! +no hostname +no ip domain lookup source-interface +no ip name-server +no ip domain-name +no ip host +no ipv6 host +! +no ntp trusted-key +no ntp authenticate +no ntp serve all +! +power poll-interval 5 +! +no radius-server key +radius-server timeout 5 +radius-server retransmit 3 +no radius-server deadtime +no radius-server attribute 32 include-in-access-req format +! +router msdp + vrf devel + ip msdp timer 30 + ! + vrf prod + ip msdp timer 30 +! +sflow sample 1048576 +sflow polling-interval 2 +no sflow source +no sflow source-interface +sflow sample output interface +sflow extension switch +sflow extension router +no sflow sample rewrite dscp +no sflow run +! +no sflow extension bgp +! +no snmp-server engineID local +no snmp-server chassis-id +no snmp-server contact +no snmp-server location +no snmp-server source-interface +default snmp-server enable traps +default snmp-server enable traps bgp +default snmp-server enable traps bgp arista-backward-transition +default snmp-server enable traps bgp arista-established +default snmp-server enable traps bgp backward-transition +default snmp-server enable traps bgp established +default snmp-server enable traps entity +default snmp-server enable traps entity arista-ent-sensor-alarm +default snmp-server enable traps entity ent-config-change +default snmp-server enable traps entity ent-state-oper-disabled +default snmp-server enable traps entity ent-state-oper-enabled +default snmp-server enable traps lldp +default snmp-server enable traps lldp rem-tables-change +default snmp-server enable traps msdp +default snmp-server enable traps msdp backward-transition +default snmp-server enable traps msdp established +default snmp-server enable traps ospf +default snmp-server enable traps ospf if-auth-failure +default snmp-server enable traps ospf if-config-error +default snmp-server enable traps ospf if-state-change +default snmp-server enable traps ospf nbr-state-change +default snmp-server enable traps pim +default snmp-server enable traps pim neighbor-loss +default snmp-server enable traps snmp +default snmp-server enable traps snmp authentication +default snmp-server enable traps snmp link-down +default snmp-server enable traps snmp link-up +default snmp-server enable traps snmpConfigManEvent +default snmp-server enable traps snmpConfigManEvent arista-config-man-event +default snmp-server enable traps switchover +default snmp-server enable traps switchover arista-redundancy-switch-over-notif +default snmp-server enable traps test +default snmp-server enable traps test arista-test-notification +default snmp-server enable traps vrrp +default snmp-server enable traps vrrp trap-new-master +snmp-server vrf default +! +spanning-tree mode mstp +spanning-tree hello-time 2000 +spanning-tree max-age 20 +spanning-tree forward-time 15 +spanning-tree transmit hold-count 6 +spanning-tree max-hops 20 +no spanning-tree mst pvst border +no spanning-tree portfast bpduguard default +no spanning-tree portfast bpdufilter default +spanning-tree bridge assurance +no spanning-tree loopguard default +no spanning-tree portchannel guard misconfig +spanning-tree bpduguard rate-limit default +logging event spanning-tree global +spanning-tree mst 0 priority 32768 +! +spanning-tree mst configuration + no name + revision 0 +! +no service sequence-numbers +no service running-config timestamp +! +no tacacs-server key +tacacs-server timeout 5 +! +aaa authentication login default local +no aaa authentication login console +aaa authentication enable default local +no aaa authentication policy on-success log +no aaa authentication policy on-failure log +no aaa authorization console +aaa authorization exec default local +no aaa authorization commands all default +aaa authorization config-commands +no aaa accounting exec console +no aaa accounting commands all console +no aaa accounting exec default +no aaa accounting system default +no aaa accounting dot1x default +no aaa accounting commands all default +! +no enable secret +aaa root secret 5 $1$1s8ATte8$cvMSZw6BlLGJVo61p88cP. +no aaa authentication policy local allow-nopassword-remote-login +no aaa authorization policy local default-role +! +username admin privilege 15 role network-admin secret 5 $1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1 +username vagrant privilege 15 role network-admin secret 5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0 +! +role network-admin + 10 permit command .* +! +role network-operator + 10 deny mode exec command configure|bash|python-shell|\| + 20 permit mode exec command .* +! +tap aggregation + no mode + no service-policy type tapagg mac access-list match ip +! +environment overheat action shutdown +environment insufficient-fans action shutdown +environment fan-speed auto +! +clock timezone UTC +! +no virtual-cable +! +vlan 1 + name default + state active + no private-vlan + no mac-address-table sharing +! +vrf definition devel + rd 1:2 + no description +! +vrf definition prod + rd 1:1 + description Production VRF +! +interface Port-Channel1 + description blah + no shutdown + default load-interval + mtu 9000 + logging event link-status use-global + switchport dot1q ethertype 0x8100 + no switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + no ip address + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no bfd per-link + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Port-Channel1 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no port-channel min-links + no port-channel lacp fallback + port-channel lacp fallback timeout 90 + no l2 mtu + no ip multicast static + ip mfib fastdrop + no mlag + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable +! +interface Port-Channel1.1 + no description + no shutdown + default load-interval + logging event link-status use-global + no encapsulation dot1q vlan 0 + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + no ip address + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Port-Channel1.1 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no ip multicast static + ip mfib fastdrop + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable +! +interface Ethernet1 + description This is a description + no shutdown + default load-interval + logging event link-status use-global + dcbx mode ieee + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport access vlan 1 + switchport trunk native vlan 1 + switchport trunk allowed vlan 1-4094 + no switchport asym vlan + switchport mode access + switchport dot1q ethertype 0x8100 + no switchport trunk private-vlan secondary + switchport mac address learning + no switchport private-vlan mapping + switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + channel-group 1 mode active + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no msrp + no mvrp + no switchport port-security + switchport port-security maximum 1 + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable + no spanning-tree portfast + spanning-tree portfast auto + no spanning-tree link-type + no spanning-tree bpduguard + no spanning-tree bpdufilter + no spanning-tree cost + spanning-tree port-priority 128 + no spanning-tree guard + no spanning-tree bpduguard rate-limit + logging event spanning-tree use-global + switchport tap native vlan 1 + no switchport tap identity + no switchport tap mpls pop all + switchport tap allowed vlan 1-4094 + switchport tool allowed vlan 1-4094 + no switchport tool identity + no switchport tap truncation + no switchport tool truncation + no switchport tap default group + no switchport tap default interface + no switchport tool group + no switchport tool dot1q remove outer +! +interface Ethernet2 + description so much oc + shutdown + default load-interval + mtu 1500 + logging event link-status use-global + no dcbx mode + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + switchport dot1q ethertype 0x8100 + no switchport + default encapsulation dot1q vlan + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + ip address 192.168.0.1/24 + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Ethernet2 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no channel-group + lacp rate normal + lacp port-priority 32768 + lldp transmit + lldp receive + no ip multicast static + ip mfib fastdrop + no msrp + no mvrp + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + default qos trust + qos cos 5 + qos dscp 2 + no shape rate + mc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + mc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 0 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 1 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 2 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 3 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 4 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 5 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 6 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + ! + uc-tx-queue 7 + priority strict + no bandwidth percent + no shape rate + no bandwidth guaranteed + sflow enable +! +interface Ethernet2.1 + description another subiface + no shutdown + default load-interval + logging event link-status use-global + encapsulation dot1q vlan 1 + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + vrf forwarding prod + no ip proxy-arp + no ip local-proxy-arp + ip address 192.168.1.1/24 + ip address 172.20.0.1/24 secondary + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Ethernet2.1 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no ip multicast static + ip mfib fastdrop + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + sflow enable +! +interface Ethernet2.2 + description asdasdasd + no shutdown + default load-interval + logging event link-status use-global + encapsulation dot1q vlan 2 + no l2-protocol encapsulation dot1q vlan 0 + snmp trap link-status + vrf forwarding devel + no ip proxy-arp + no ip local-proxy-arp + ip address 192.168.2.1/24 + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + default ip dhcp smart-relay + no ip helper-address + no ipv6 dhcp relay destination + ip dhcp relay information option circuit-id Ethernet2.2 + no ip igmp + ip igmp version 3 + ip igmp last-member-query-count 2 + ip igmp last-member-query-interval 10 + ip igmp query-max-response-time 100 + ip igmp query-interval 125 + ip igmp startup-query-count 2 + ip igmp startup-query-interval 310 + ip igmp router-alert optional connected + no ip igmp host-proxy + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + no ip multicast static + ip mfib fastdrop + default ntp serve + no ip pim sparse-mode + no ip pim bidirectional + no ip pim border-router + ip pim query-interval 30 + ip pim join-prune-interval 60 + ip pim dr-priority 1 + no ip pim neighbor-filter + default ip pim bfd-instance + no ip pim bsr-border + sflow enable +! +interface Loopback1 + description a loopback + no shutdown + default load-interval + mtu 1500 + logging event link-status use-global + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + no ip address + no ip verify unicast + default arp timeout 14400 + default ipv6 nd cache expire 14400 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + no ipv6 nd ra suppress + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + default ntp serve +! +interface Management1 + no description + no shutdown + default load-interval + mtu 1500 + logging event link-status use-global + no mac-address + no link-debounce + no flowcontrol send + no flowcontrol receive + no mac timestamp + no speed + no l2 mtu + default logging event congestion-drops + default unidirectional + no traffic-loopback + default error-correction encoding + no error-correction reed-solomon bypass + snmp trap link-status + no ip proxy-arp + no ip local-proxy-arp + ip address 10.0.2.15/24 + no ip verify unicast + default arp timeout 300 + default ipv6 nd cache expire 300 + bfd interval 300 min_rx 300 multiplier 3 + no bfd echo + no ipv6 enable + no ipv6 address + no ipv6 verify unicast + ipv6 nd ra suppress all + ipv6 nd ra interval msec 200000 + ipv6 nd ra lifetime 1800 + no ipv6 nd ra mtu suppress + no ipv6 nd managed-config-flag + no ipv6 nd other-config-flag + ipv6 nd reachable-time 0 + ipv6 nd router-preference medium + ipv6 nd ra dns-servers lifetime 300 + ipv6 nd ra dns-suffixes lifetime 300 + ipv6 nd ra hop-limit 64 + lldp transmit + lldp receive + default ntp serve +! +mac address-table aging-time 300 +! +monitor hadoop + shutdown +! +no ip fhrp accept-mode +! +no ip virtual-router mac-address +ip virtual-router mac-address advertisement-interval 30 +! +no ipv6 hardware fib nexthop-index +! +ip route 10.0.0.0/24 192.168.0.2 10 tag 0 +ip route 10.0.0.0/24 192.168.0.3 1 tag 0 +ip route 10.0.1.0/24 192.168.0.2 1 tag 0 +ip route vrf prod 10.0.0.0/24 172.20.0.2 1 tag 0 +ip route vrf prod 10.0.1.0/24 172.20.0.2 1 tag 0 +ip route vrf devel 10.0.0.0/24 192.168.2.2 1 tag 0 +ip route vrf devel 10.0.1.0/24 192.168.2.2 1 tag 0 +! +ip routing +ip icmp redirect +no ip icmp source-interface +ip hardware fib route unprogrammed parent-drop +no ip hardware fib route delete delay +ip hardware fib next-hop update event bfd +no ip hardware fib maximum routes +no ip hardware forwarding mpls gre-key +no ip icmp rate-limit-unreachable 0 +no ip hardware fib next-hop sharing +no ip routing vrf prod +no ip icmp source-interface vrf prod +no ip routing vrf devel +no ip icmp source-interface vrf devel +ipv6 icmp redirect +no ip hardware fib maximum routes-v6 +! +no ip multicast-routing +ip multicast multipath deterministic +ip mfib max-fastdrops 1024 +no ip multicast count +ip mfib activity polling-interval 60 +! +ip mfib cache-entries unresolved max 4000 +ip mfib packet-buffers unresolved max 3 +! +ip as-path regex-mode asn +! +no ipv6 unicast-routing +no ipv6 unicast-routing vrf prod +no ipv6 unicast-routing vrf devel +! +control-plane + ip access-group default-control-plane-acl in + ip access-group default-control-plane-acl vrf prod in + ip access-group default-control-plane-acl vrf devel in + ipv6 access-group default-control-plane-acl in + ipv6 access-group default-control-plane-acl vrf prod in + ipv6 access-group default-control-plane-acl vrf devel in +! +mac address-table notification host-flap logging +mac address-table notification host-flap detection window 15 +! +mlag configuration + no domain-id + heartbeat-interval 4000 + no local-interface + no peer-address + no peer-link + reload-delay 0 + no reload-delay non-mlag + no reload-delay mode + no shutdown +! +monitor loop-protection + rate-limit 1000 + transmit-interval 5 + disabled-time 604800 +! +no mpls ip +! +no ip ftp client source-interface +no ip http client source-interface +no ip ssh client source-interface +no ip telnet client source-interface +no ip tftp client source-interface +! +no qos random-detect ecn global-buffer +qos map cos 0 1 2 3 4 5 6 7 to traffic-class 8 +qos map dscp 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to cos 3 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to uc-tx-queue 4 +qos map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4 +! +policy-map type control-plane copp-system-policy + class copp-system-bpdu + shape pps 6000 + bandwidth pps 5000 + class copp-system-arp + shape pps 25000 + bandwidth pps 1000 + class copp-system-igmp + shape pps 5000 + bandwidth pps 4000 + class copp-system-default + no shape + no bandwidth +! +no ip radius source-interface +! +monitor reachability + shutdown + probe receiver max-streams 50000 + probe checkpoint-interval 60 + destination port 49152 + default ignore-checksum + default preserve-streams +! +router bgp 65001 + no shutdown + router-id 1.1.1.1 + bgp convergence time 300 + bgp convergence slow-peer time 90 + no bgp confederation identifier + no update wait-for-convergence + no update wait-install + bgp log-neighbor-changes + bgp default ipv4-unicast + no bgp default ipv4-unicast transport ipv6 + no bgp default ipv6-unicast + timers bgp 60 180 + distance bgp 200 200 200 + graceful-restart restart-time 300 + graceful-restart stalepath-time 300 + no bgp cluster-id + bgp client-to-client reflection + no graceful-restart + graceful-restart-helper + bgp peer-mac-resolution-timeout 0 + bgp enforce-first-as + no bgp route install-map + no bgp transport listen-port + no default-metric + no bgp always-compare-med + no bgp bestpath med missing-as-worst + no bgp bestpath med confed + no bgp host-routes fib direct-install + no bgp route-reflector preserve-attributes + maximum-paths 1 ecmp 128 + no bgp additional-paths install + bgp additional-paths receive + bgp listen limit 1000 + bgp bestpath as-path multipath-relax + no bgp aspath-cmp-include-nexthop + bgp bestpath ecmp-fast + no bgp bestpath tie-break age + no bgp bestpath tie-break router-id + no bgp bestpath tie-break originator-id + no bgp bestpath tie-break cluster-list-length + no bgp advertise-inactive + no bgp auto-local-addr + no neighbor 192.168.0.200 peer-group + neighbor 192.168.0.200 remote-as 65100 + no neighbor 192.168.0.200 import-localpref + no neighbor 192.168.0.200 export-localpref + neighbor 192.168.0.200 description asdasd qweq asdasd + no neighbor 192.168.0.200 next-hop-self + no neighbor 192.168.0.200 next-hop-peer + no neighbor 192.168.0.200 allowas-in + neighbor 192.168.0.200 send-community + no neighbor 192.168.0.200 shutdown + neighbor 192.168.0.200 remove-private-as + no neighbor 192.168.0.200 out-delay + no neighbor 192.168.0.200 local-as + no neighbor 192.168.0.200 weight + no neighbor 192.168.0.200 transport connection-mode passive + no neighbor 192.168.0.200 update-source + no neighbor 192.168.0.200 dont-capability-negotiate + no neighbor 192.168.0.200 fall-over bfd + no neighbor 192.168.0.200 local-v6-addr + no neighbor 192.168.0.200 auto-local-addr + no neighbor 192.168.0.200 next-hop-v6-addr + neighbor 192.168.0.200 soft-reconfiguration inbound + no neighbor 192.168.0.200 ebgp-multihop + no neighbor 192.168.0.200 route-reflector-client + no neighbor 192.168.0.200 timers + no neighbor 192.168.0.200 route-map in + no neighbor 192.168.0.200 graceful-restart + neighbor 192.168.0.200 graceful-restart-helper + neighbor 192.168.0.200 additional-paths receive + no neighbor 192.168.0.200 route-map out + no neighbor 192.168.0.200 prefix-list in + no neighbor 192.168.0.200 prefix-list out + no neighbor 192.168.0.200 password + no neighbor 192.168.0.200 default-originate + neighbor 192.168.0.200 enforce-first-as + no neighbor 192.168.0.200 metric-out + no neighbor 192.168.0.200 idle-restart-timer + neighbor 192.168.0.200 maximum-routes 12000 + bgp redistribute-internal + no redistribute connected + no redistribute isis + no redistribute ospf match internal + no redistribute ospf match external + no redistribute ospf match nssa-external + no redistribute ospf3 match internal + no redistribute ospf3 match external + no redistribute static + no redistribute rip + no redistribute aggregate + address-family ipv4 + bgp additional-paths receive + no bgp route install-map + default neighbor 192.168.0.200 activate + no neighbor 192.168.0.200 route-map in + no neighbor 192.168.0.200 route-map out + no neighbor 192.168.0.200 default-originate + neighbor 192.168.0.200 additional-paths receive + no neighbor 192.168.0.200 weight + ! + address-family ipv6 + no bgp additional-paths install + bgp additional-paths receive + no bgp route install-map + default neighbor 192.168.0.200 activate + no neighbor 192.168.0.200 route-map in + no neighbor 192.168.0.200 route-map out + no neighbor 192.168.0.200 prefix-list in + no neighbor 192.168.0.200 prefix-list out + no neighbor 192.168.0.200 default-originate + neighbor 192.168.0.200 additional-paths receive + no neighbor 192.168.0.200 weight + vrf devel + local-as 65001 + no shutdown + router-id 3.3.3.3 + bgp convergence time 300 + bgp convergence slow-peer time 90 + no bgp confederation identifier + no update wait-for-convergence + no update wait-install + bgp log-neighbor-changes + bgp default ipv4-unicast + no bgp default ipv4-unicast transport ipv6 + no bgp default ipv6-unicast + timers bgp 60 180 + distance bgp 200 200 200 + graceful-restart restart-time 300 + graceful-restart stalepath-time 300 + no bgp cluster-id + bgp client-to-client reflection + no graceful-restart + graceful-restart-helper + bgp peer-mac-resolution-timeout 0 + bgp enforce-first-as + no bgp route install-map + no bgp transport listen-port + no default-metric + no bgp always-compare-med + no bgp bestpath med missing-as-worst + no bgp bestpath med confed + no bgp route-reflector preserve-attributes + maximum-paths 1 ecmp 128 + no bgp additional-paths install + bgp additional-paths receive + bgp listen limit 1000 + bgp bestpath as-path multipath-relax + no bgp aspath-cmp-include-nexthop + bgp bestpath ecmp-fast + no bgp bestpath tie-break age + no bgp bestpath tie-break router-id + no bgp bestpath tie-break originator-id + no bgp bestpath tie-break cluster-list-length + no bgp advertise-inactive + no bgp auto-local-addr + bgp redistribute-internal + no redistribute connected + no redistribute isis + no redistribute ospf match internal + no redistribute ospf match external + no redistribute ospf match nssa-external + no redistribute ospf3 match internal + no redistribute ospf3 match external + no redistribute static + no redistribute rip + no redistribute aggregate + address-family ipv4 + bgp additional-paths receive + no bgp route install-map + ! + address-family ipv6 + no bgp additional-paths install + bgp additional-paths receive + no bgp route install-map + ! + vrf prod + local-as 65001 + no shutdown + router-id 2.2.2.2 + bgp convergence time 300 + bgp convergence slow-peer time 90 + no bgp confederation identifier + no update wait-for-convergence + no update wait-install + bgp log-neighbor-changes + bgp default ipv4-unicast + no bgp default ipv4-unicast transport ipv6 + no bgp default ipv6-unicast + timers bgp 60 180 + distance bgp 200 200 200 + graceful-restart restart-time 300 + graceful-restart stalepath-time 300 + no bgp cluster-id + bgp client-to-client reflection + no graceful-restart + graceful-restart-helper + bgp peer-mac-resolution-timeout 0 + bgp enforce-first-as + no bgp route install-map + no bgp transport listen-port + no default-metric + no bgp always-compare-med + no bgp bestpath med missing-as-worst + no bgp bestpath med confed + no bgp route-reflector preserve-attributes + maximum-paths 1 ecmp 128 + no bgp additional-paths install + bgp additional-paths receive + bgp listen limit 1000 + bgp bestpath as-path multipath-relax + no bgp aspath-cmp-include-nexthop + bgp bestpath ecmp-fast + no bgp bestpath tie-break age + no bgp bestpath tie-break router-id + no bgp bestpath tie-break originator-id + no bgp bestpath tie-break cluster-list-length + no bgp advertise-inactive + no bgp auto-local-addr + no neighbor 172.20.0.200 peer-group + neighbor 172.20.0.200 remote-as 65100 + no neighbor 172.20.0.200 import-localpref + no neighbor 172.20.0.200 export-localpref + no neighbor 172.20.0.200 description + no neighbor 172.20.0.200 next-hop-self + no neighbor 172.20.0.200 next-hop-peer + no neighbor 172.20.0.200 allowas-in + no neighbor 172.20.0.200 send-community + no neighbor 172.20.0.200 shutdown + no neighbor 172.20.0.200 remove-private-as + no neighbor 172.20.0.200 out-delay + neighbor 172.20.0.200 local-as 100 no-prepend replace-as + no neighbor 172.20.0.200 weight + no neighbor 172.20.0.200 transport connection-mode passive + no neighbor 172.20.0.200 update-source + no neighbor 172.20.0.200 dont-capability-negotiate + no neighbor 172.20.0.200 fall-over bfd + no neighbor 172.20.0.200 local-v6-addr + no neighbor 172.20.0.200 auto-local-addr + no neighbor 172.20.0.200 next-hop-v6-addr + neighbor 172.20.0.200 soft-reconfiguration inbound + no neighbor 172.20.0.200 ebgp-multihop + no neighbor 172.20.0.200 route-reflector-client + no neighbor 172.20.0.200 timers + no neighbor 172.20.0.200 route-map in + no neighbor 172.20.0.200 graceful-restart + neighbor 172.20.0.200 graceful-restart-helper + neighbor 172.20.0.200 additional-paths receive + no neighbor 172.20.0.200 route-map out + no neighbor 172.20.0.200 prefix-list in + no neighbor 172.20.0.200 prefix-list out + no neighbor 172.20.0.200 password + no neighbor 172.20.0.200 default-originate + neighbor 172.20.0.200 enforce-first-as + no neighbor 172.20.0.200 metric-out + no neighbor 172.20.0.200 idle-restart-timer + neighbor 172.20.0.200 maximum-routes 12000 + bgp redistribute-internal + no redistribute connected + no redistribute isis + no redistribute ospf match internal + no redistribute ospf match external + no redistribute ospf match nssa-external + no redistribute ospf3 match internal + no redistribute ospf3 match external + no redistribute static + no redistribute rip + no redistribute aggregate + address-family ipv4 + bgp additional-paths receive + no bgp route install-map + default neighbor 172.20.0.200 activate + no neighbor 172.20.0.200 route-map in + no neighbor 172.20.0.200 route-map out + no neighbor 172.20.0.200 default-originate + neighbor 172.20.0.200 additional-paths receive + no neighbor 172.20.0.200 weight + ! + address-family ipv6 + no bgp additional-paths install + bgp additional-paths receive + no bgp route install-map + default neighbor 172.20.0.200 activate + no neighbor 172.20.0.200 route-map in + no neighbor 172.20.0.200 route-map out + no neighbor 172.20.0.200 prefix-list in + no neighbor 172.20.0.200 prefix-list out + no neighbor 172.20.0.200 default-originate + neighbor 172.20.0.200 additional-paths receive + no neighbor 172.20.0.200 weight +! +router multicast + vrf devel + no ip multicast-routing + ip multicast multipath deterministic + ip mfib max-fastdrops 1024 + ip mfib cache-entries unresolved max 4000 + ip mfib packet-buffers unresolved max 3 + ! + vrf prod + no ip multicast-routing + ip multicast multipath deterministic + ip mfib max-fastdrops 1024 + ip mfib cache-entries unresolved max 4000 + ip mfib packet-buffers unresolved max 3 +! +router pim sparse-mode + vrf devel + ip pim log-neighbor-changes + no ip pim ssm range + ip pim sparse-mode sg-expiry-timer 210 + ip pim spt-threshold 0 + no ip pim rp-candidate + no ip pim register-source + ! + vrf prod + ip pim log-neighbor-changes + no ip pim ssm range + ip pim sparse-mode sg-expiry-timer 210 + ip pim spt-threshold 0 + no ip pim rp-candidate + no ip pim register-source +! +router pim bidirectional + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate + vrf devel + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate + ! + vrf prod + ip pim log-neighbor-changes + ip pim group-expiry-timer 210 + no ip pim rp-candidate +! +router pim bsr + vrf devel + no ip pim bsr-holdtime + no ip pim bsr-sztimeout + no ip pim bsr-candidate + no ip pim bsr rp-candidate advertisement-filter + ! + vrf prod + no ip pim bsr-holdtime + no ip pim bsr-sztimeout + no ip pim bsr-candidate + no ip pim bsr rp-candidate advertisement-filter +! +ip access-list extended SOMETHING + deny tcp any any eq 80 + permit tcp any any eq 443 + deny tcp any any eq 25 + permit tcp any any +! +no ip tacacs source-interface +! +no vxlan vni notation dotted +! +no banner login +no banner motd +! +system coredump compressed +! +no dot1x system-auth-control +! +management api http-commands + protocol https port 443 + no protocol http port 80 + no protocol http localhost port 8080 + no protocol unix-socket + no protocol https certificate + no protocol https ssl profile + no cors allowed-origin + protocol https cipher aes256-cbc aes128-cbc + protocol https key-exchange rsa diffie-hellman-ephemeral-rsa + protocol https mac hmac-sha1 + qos dscp 0 + no shutdown + vrf default + no shutdown +! +management cim-provider + shutdown + http 7778 + https 7779 + idle-timeout 90 + default live-time + default trace + default ssl certificate + default ssl key +! +management console + idle-timeout 0 +! +management cvx + shutdown + no server host + no source-interface + no server port + heartbeat-interval 20 + heartbeat-timeout 60 + no ssl profile + service debug + no shutdown + interval 1 +! +management defaults + secret hash md5 +! +management security + no entropy source hardware + no password minimum length +! +management ssh + idle-timeout 0 + authentication mode keyboard-interactive + server-port 22 + hostkey server rsa dsa + no fips restrictions + no hostkey client strict-checking + no shutdown + login timeout 120 + log-level info +! +management telnet + shutdown + idle-timeout 0 +! +management xmpp + shutdown + vrf default + session privilege 1 +! +! +end + diff --git a/test/unit/text_tree/test_case_1/expected.json b/test/unit/text_tree/test_case_1/expected.json new file mode 100644 index 00000000..37f345f1 --- /dev/null +++ b/test/unit/text_tree/test_case_1/expected.json @@ -0,0 +1,206017 @@ +[ + { + "#list": [], + "#text": "", + "hardware": { + "#text": "access-list ipv6 implicit-permit icmpv6 all", + "access-list": { + "#text": "ipv6 implicit-permit icmpv6 all", + "ipv6": { + "#text": "implicit-permit icmpv6 all", + "implicit-permit": { + "#text": "icmpv6 all", + "icmpv6": { + "#text": "all", + "all": { + "#standalone": true + } + } + } + } + } + }, + "no": { + "#text": "dot1x system-auth-control", + "deep-inspection": { + "#text": "payload l4 skip", + "payload": { + "#text": "l4 skip", + "l2": { + "#text": "skip", + "skip": { + "#standalone": true + } + }, + "l4": { + "#text": "skip", + "skip": { + "#standalone": true + } + } + } + }, + "service": { + "#text": "running-config timestamp", + "configuration": { + "#text": "session max pending", + "session": { + "#text": "max pending", + "max": { + "#text": "pending", + "completed": { + "#standalone": true + }, + "pending": { + "#standalone": true + } + } + } + }, + "interface": { + "#text": "unconnected expose", + "inactive": { + "#text": "expose", + "expose": { + "#standalone": true + } + }, + "unconnected": { + "#text": "expose", + "expose": { + "#standalone": true + } + } + }, + "sequence-numbers": { + "#standalone": true + }, + "running-config": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + } + }, + "logging": { + "#text": "source-interface", + "event": { + "#text": "storm-control discards interval", + "storm-control": { + "#text": "discards interval", + "discards": { + "#text": "interval", + "global": { + "#standalone": true + }, + "interval": { + "#standalone": true + } + } + } + }, + "synchronous": { + "#standalone": true + }, + "format": { + "#text": "hostname fqdn", + "hostname": { + "#text": "fqdn", + "fqdn": { + "#standalone": true + } + } + }, + "source-interface": { + "#standalone": true + } + }, + "dcbx": { + "#text": "application", + "application": { + "#standalone": true + } + }, + "ip": { + "#text": "tacacs source-interface", + "dhcp": { + "#text": "snooping information option", + "relay": { + "#text": "always-on", + "information": { + "#text": "option", + "option": { + "#standalone": true + } + }, + "always-on": { + "#standalone": true + } + }, + "smart-relay": { + "#text": "global", + "global": { + "#standalone": true + } + }, + "snooping": { + "#standalone": true, + "#text": "information option", + "information": { + "#text": "option", + "option": { + "#standalone": true + } + } + } + }, + "igmp": { + "#text": "snooping querier version", + "snooping": { + "#text": "querier version", + "report-flooding": { + "#standalone": true + }, + "restart": { + "#text": "query-interval", + "query-interval": { + "#standalone": true + } + }, + "vlan": { + "#text": "1 max-groups", + "1": { + "#text": "max-groups", + "querier": { + "#text": "version", + "address": { + "#standalone": true + }, + "query-interval": { + "#standalone": true + }, + "max-response-time": { + "#standalone": true + }, + "last-member-query-interval": { + "#standalone": true + }, + "last-member-query-count": { + "#standalone": true + }, + "startup-query-interval": { + "#standalone": true + }, + "startup-query-count": { + "#standalone": true + }, + "version": { + "#standalone": true + } + }, + "max-groups": { + "#standalone": true + } + } + }, + "querier": { + "#standalone": true, + "#text": "version", + "address": { + "#standalone": true + }, + "last-member-query-count": { + "#standalone": true + }, + "startup-query-interval": { + "#standalone": true + }, + "startup-query-count": { + "#standalone": true + }, + "version": { + "#standalone": true + } + } + } + }, + "pim": { + "#text": "register-source", + "bfd": { + "#standalone": true + }, + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + }, + "register-source": { + "#standalone": true + } + }, + "virtual-router": { + "#text": "mac-address", + "mac-address": { + "#text": "mlag-peer", + "mlag-peer": { + "#standalone": true + }, + "#standalone": true + } + }, + "domain": { + "#text": "lookup source-interface", + "lookup": { + "#text": "source-interface", + "source-interface": { + "#standalone": true + } + } + }, + "name-server": { + "#standalone": true + }, + "domain-name": { + "#standalone": true + }, + "host": { + "#standalone": true + }, + "fhrp": { + "#text": "accept-mode", + "accept-mode": { + "#standalone": true + } + }, + "icmp": { + "#text": "source-interface vrf devel", + "source-interface": { + "#standalone": true, + "#text": "vrf devel", + "vrf": { + "#text": "devel", + "prod": { + "#standalone": true + }, + "devel": { + "#standalone": true + } + } + }, + "rate-limit-unreachable": { + "#text": "0", + "0": { + "#standalone": true + } + } + }, + "hardware": { + "#text": "fib maximum routes-v6", + "fib": { + "#text": "maximum routes-v6", + "route": { + "#text": "delete delay", + "delete": { + "#text": "delay", + "delay": { + "#standalone": true + } + } + }, + "maximum": { + "#text": "routes-v6", + "routes": { + "#standalone": true + }, + "routes-v6": { + "#standalone": true + } + }, + "next-hop": { + "#text": "sharing", + "sharing": { + "#standalone": true + } + } + }, + "forwarding": { + "#text": "mpls gre-key", + "mpls": { + "#text": "gre-key", + "gre-key": { + "#standalone": true + } + } + } + }, + "routing": { + "#text": "vrf devel", + "vrf": { + "#text": "devel", + "prod": { + "#standalone": true + }, + "devel": { + "#standalone": true + } + } + }, + "multicast-routing": { + "#standalone": true + }, + "multicast": { + "#text": "count", + "count": { + "#standalone": true + } + }, + "ftp": { + "#text": "client source-interface", + "client": { + "#text": "source-interface", + "source-interface": { + "#standalone": true + } + } + }, + "http": { + "#text": "client source-interface", + "client": { + "#text": "source-interface", + "source-interface": { + "#standalone": true + } + } + }, + "ssh": { + "#text": "client source-interface", + "client": { + "#text": "source-interface", + "source-interface": { + "#standalone": true + } + } + }, + "telnet": { + "#text": "client source-interface", + "client": { + "#text": "source-interface", + "source-interface": { + "#standalone": true + } + } + }, + "tftp": { + "#text": "client source-interface", + "client": { + "#text": "source-interface", + "source-interface": { + "#standalone": true + } + } + }, + "radius": { + "#text": "source-interface", + "source-interface": { + "#standalone": true + } + }, + "tacacs": { + "#text": "source-interface", + "source-interface": { + "#standalone": true + } + } + }, + "errdisable": { + "#text": "recovery cause xcvr-unsupported", + "recovery": { + "#text": "cause xcvr-unsupported", + "cause": { + "#text": "xcvr-unsupported", + "arp-inspection": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true + }, + "hitless-reload-down": { + "#standalone": true + }, + "link-flap": { + "#standalone": true + }, + "loopprotectguard": { + "#standalone": true + }, + "no-internal-vlan": { + "#standalone": true + }, + "portchannelguard": { + "#standalone": true + }, + "portsec": { + "#standalone": true + }, + "tapagg": { + "#standalone": true + }, + "uplink-failure-detection": { + "#standalone": true + }, + "xcvr-unsupported": { + "#standalone": true + } + } + } + }, + "queue-monitor": { + "#text": "length mirror", + "length": { + "#standalone": true, + "#text": "mirror", + "notifying": { + "#standalone": true + }, + "mirror": { + "#standalone": true + } + } + }, + "lldp": { + "#text": "management-address", + "management-address": { + "#standalone": true + } + }, + "msrp": { + "#text": "streams load-file", + "streams": { + "#text": "load-file", + "load-file": { + "#standalone": true + } + } + }, + "hostname": { + "#standalone": true + }, + "ipv6": { + "#text": "unicast-routing vrf devel", + "host": { + "#standalone": true + }, + "hardware": { + "#text": "fib nexthop-index", + "fib": { + "#text": "nexthop-index", + "nexthop-index": { + "#standalone": true + } + } + }, + "unicast-routing": { + "#standalone": true, + "#text": "vrf devel", + "vrf": { + "#text": "devel", + "prod": { + "#standalone": true + }, + "devel": { + "#standalone": true + } + } + } + }, + "ntp": { + "#text": "serve all", + "trusted-key": { + "#standalone": true + }, + "authenticate": { + "#standalone": true + }, + "serve": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "radius-server": { + "#text": "attribute 32 include-in-access-req format", + "key": { + "#standalone": true + }, + "deadtime": { + "#standalone": true + }, + "attribute": { + "#text": "32 include-in-access-req format", + "32": { + "#text": "include-in-access-req format", + "include-in-access-req": { + "#text": "format", + "format": { + "#standalone": true + } + } + } + } + }, + "sflow": { + "#text": "extension bgp", + "source": { + "#standalone": true + }, + "source-interface": { + "#standalone": true + }, + "sample": { + "#text": "rewrite dscp", + "rewrite": { + "#text": "dscp", + "dscp": { + "#standalone": true + } + } + }, + "run": { + "#standalone": true + }, + "extension": { + "#text": "bgp", + "bgp": { + "#standalone": true + } + } + }, + "snmp-server": { + "#text": "source-interface", + "engineID": { + "#text": "local", + "local": { + "#standalone": true + } + }, + "chassis-id": { + "#standalone": true + }, + "contact": { + "#standalone": true + }, + "location": { + "#standalone": true + }, + "source-interface": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "portchannel guard misconfig", + "mst": { + "#text": "pvst border", + "pvst": { + "#text": "border", + "border": { + "#standalone": true + } + } + }, + "portfast": { + "#text": "bpdufilter default", + "bpduguard": { + "#text": "default", + "default": { + "#standalone": true + } + }, + "bpdufilter": { + "#text": "default", + "default": { + "#standalone": true + } + } + }, + "loopguard": { + "#text": "default", + "default": { + "#standalone": true + } + }, + "portchannel": { + "#text": "guard misconfig", + "guard": { + "#text": "misconfig", + "misconfig": { + "#standalone": true + } + } + } + }, + "tacacs-server": { + "#text": "key", + "key": { + "#standalone": true + } + }, + "aaa": { + "#text": "authorization policy local default-role", + "authentication": { + "#text": "policy local allow-nopassword-remote-login", + "login": { + "#text": "console", + "console": { + "#standalone": true + } + }, + "policy": { + "#text": "local allow-nopassword-remote-login", + "on-success": { + "#text": "log", + "log": { + "#standalone": true + } + }, + "on-failure": { + "#text": "log", + "log": { + "#standalone": true + } + }, + "local": { + "#text": "allow-nopassword-remote-login", + "allow-nopassword-remote-login": { + "#standalone": true + } + } + } + }, + "authorization": { + "#text": "policy local default-role", + "console": { + "#standalone": true + }, + "commands": { + "#text": "all default", + "all": { + "#text": "default", + "default": { + "#standalone": true + } + } + }, + "policy": { + "#text": "local default-role", + "local": { + "#text": "default-role", + "default-role": { + "#standalone": true + } + } + } + }, + "accounting": { + "#text": "commands all default", + "exec": { + "#text": "default", + "console": { + "#standalone": true + }, + "default": { + "#standalone": true + } + }, + "commands": { + "#text": "all default", + "all": { + "#text": "default", + "console": { + "#standalone": true + }, + "default": { + "#standalone": true + } + } + }, + "system": { + "#text": "default", + "default": { + "#standalone": true + } + }, + "dot1x": { + "#text": "default", + "default": { + "#standalone": true + } + } + } + }, + "enable": { + "#text": "secret", + "secret": { + "#standalone": true + } + }, + "virtual-cable": { + "#standalone": true + }, + "mpls": { + "#text": "ip", + "ip": { + "#standalone": true + } + }, + "qos": { + "#text": "random-detect ecn global-buffer", + "random-detect": { + "#text": "ecn global-buffer", + "ecn": { + "#text": "global-buffer", + "global-buffer": { + "#standalone": true + } + } + } + }, + "vxlan": { + "#text": "vni notation dotted", + "vni": { + "#text": "notation dotted", + "notation": { + "#text": "dotted", + "dotted": { + "#standalone": true + } + } + } + }, + "banner": { + "#text": "motd", + "login": { + "#standalone": true + }, + "motd": { + "#standalone": true + } + }, + "dot1x": { + "#text": "system-auth-control", + "system-auth-control": { + "#standalone": true + } + } + }, + "agent": { + "#text": "fatal-error action reload", + "fatal-error": { + "#text": "action reload", + "action": { + "#text": "reload", + "reload": { + "#standalone": true + } + } + } + }, + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3 default", + "slow-timer": { + "#text": "2000", + "2000": { + "#standalone": true + } + }, + "interval": { + "#text": "300 min_rx 300 multiplier 3 default", + "300": { + "#text": "min_rx 300 multiplier 3 default", + "min_rx": { + "#text": "300 multiplier 3 default", + "300": { + "#text": "multiplier 3 default", + "multiplier": { + "#text": "3 default", + "3": { + "#text": "default", + "default": { + "#standalone": true + } + } + } + } + } + } + } + }, + "prompt": { + "#text": "%H%R%v%P", + "%H%R%v%P": { + "#standalone": true + } + }, + "schedule": { + "#text": "tech-support interval 60 max-log-files 100 command show tech-support", + "config": { + "#text": "max-concurrent-jobs 1 ", + "max-concurrent-jobs": { + "#text": "1 ", + "1": { + "#text": "", + "": { + "#standalone": true + } + } + } + }, + "tech-support": { + "#text": "interval 60 max-log-files 100 command show tech-support", + "interval": { + "#text": "60 max-log-files 100 command show tech-support", + "60": { + "#text": "max-log-files 100 command show tech-support", + "max-log-files": { + "#text": "100 command show tech-support", + "100": { + "#text": "command show tech-support", + "command": { + "#text": "show tech-support", + "show": { + "#text": "tech-support", + "tech-support": { + "#standalone": true + } + } + } + } + } + } + } + } + }, + "cvx": { + "#list": [ + { + "port": { + "#text": "9979", + "9979": { + "#standalone": true + } + } + }, + { + "heartbeat-interval": { + "#text": "20", + "20": { + "#standalone": true + } + } + }, + { + "heartbeat-timeout": { + "#text": "60", + "60": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "ssl profile", + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + { + "service": { + "#text": "vxlan", + "debug": { + "#list": [ + { + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + }, + { + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + ], + "#text": "interval 1", + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + }, + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + }, + "#standalone": true + }, + "hsc": { + "#list": [ + { + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + } + } + ], + "#text": "vtep flood list type any", + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + }, + "#standalone": true + }, + "openstack": { + "#list": [ + { + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + } + }, + { + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + } + } + ], + "#text": "name-resolution interval 21600", + "shutdown": { + "#standalone": true + }, + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "vxlan": { + "#list": [ + { + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + } + }, + { + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + ], + "#text": "resync-period 300", + "shutdown": { + "#standalone": true + }, + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + }, + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "#standalone": true + } + } + }, + { + "service": { + "#text": "vxlan", + "debug": { + "#list": [ + { + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + }, + { + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + ], + "#text": "interval 1", + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + }, + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + }, + "#standalone": true + }, + "hsc": { + "#list": [ + { + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + } + } + ], + "#text": "vtep flood list type any", + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + }, + "#standalone": true + }, + "openstack": { + "#list": [ + { + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + } + }, + { + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + } + } + ], + "#text": "name-resolution interval 21600", + "shutdown": { + "#standalone": true + }, + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "vxlan": { + "#list": [ + { + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + } + }, + { + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + ], + "#text": "resync-period 300", + "shutdown": { + "#standalone": true + }, + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + }, + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "#standalone": true + } + } + }, + { + "service": { + "#text": "vxlan", + "debug": { + "#list": [ + { + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + }, + { + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + ], + "#text": "interval 1", + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + }, + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + }, + "#standalone": true + }, + "hsc": { + "#list": [ + { + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + } + } + ], + "#text": "vtep flood list type any", + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + }, + "#standalone": true + }, + "openstack": { + "#list": [ + { + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + } + }, + { + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + } + } + ], + "#text": "name-resolution interval 21600", + "shutdown": { + "#standalone": true + }, + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "vxlan": { + "#list": [ + { + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + } + }, + { + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + ], + "#text": "resync-period 300", + "shutdown": { + "#standalone": true + }, + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + }, + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "#standalone": true + } + } + }, + { + "service": { + "#text": "vxlan", + "debug": { + "#list": [ + { + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + }, + { + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + ], + "#text": "interval 1", + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + }, + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + }, + "#standalone": true + }, + "hsc": { + "#list": [ + { + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + } + } + ], + "#text": "vtep flood list type any", + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + }, + "#standalone": true + }, + "openstack": { + "#list": [ + { + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + } + }, + { + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + } + } + ], + "#text": "name-resolution interval 21600", + "shutdown": { + "#standalone": true + }, + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "vxlan": { + "#list": [ + { + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + } + }, + { + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + ], + "#text": "resync-period 300", + "shutdown": { + "#standalone": true + }, + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + }, + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "#standalone": true + } + } + } + ], + "#text": "service vxlan", + "shutdown": { + "#standalone": true + }, + "port": { + "#text": "9979", + "9979": { + "#standalone": true + } + }, + "heartbeat-interval": { + "#text": "20", + "20": { + "#standalone": true + } + }, + "heartbeat-timeout": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "no": { + "#text": "ssl profile", + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + }, + "service": { + "#text": "vxlan", + "debug": { + "#list": [ + { + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + }, + { + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + ], + "#text": "interval 1", + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + }, + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + }, + "#standalone": true + }, + "hsc": { + "#list": [ + { + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + } + } + ], + "#text": "vtep flood list type any", + "vtep": { + "#text": "flood list type any", + "flood": { + "#text": "list type any", + "list": { + "#text": "type any", + "type": { + "#text": "any", + "any": { + "#standalone": true + } + } + } + } + }, + "#standalone": true + }, + "openstack": { + "#list": [ + { + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + } + }, + { + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + } + } + ], + "#text": "name-resolution interval 21600", + "shutdown": { + "#standalone": true + }, + "grace-period": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "name-resolution": { + "#text": "interval 21600", + "interval": { + "#text": "21600", + "21600": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "vxlan": { + "#list": [ + { + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + } + }, + { + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + ], + "#text": "resync-period 300", + "shutdown": { + "#standalone": true + }, + "vtep": { + "#text": "mac-learning control-plane", + "mac-learning": { + "#text": "control-plane", + "control-plane": { + "#standalone": true + } + } + }, + "resync-period": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "#standalone": true + } + }, + "#standalone": true + }, + "ip": { + "#text": "access-list extended SOMETHING", + "dhcp": { + "#text": "snooping information option circuit-id type 0 format %p:%v", + "snooping": { + "#text": "information option circuit-id type 0 format %p:%v", + "information": { + "#text": "option circuit-id type 0 format %p:%v", + "option": { + "#text": "circuit-id type 0 format %p:%v", + "circuit-id": { + "#text": "type 0 format %p:%v", + "type": { + "#text": "0 format %p:%v", + "0": { + "#text": "format %p:%v", + "format": { + "#text": "%p:%v", + "%p:%v": { + "#standalone": true + } + } + } + } + } + } + } + } + }, + "igmp": { + "#text": "snooping querier last-member-query-interval 1", + "snooping": { + "#standalone": true, + "#text": "querier last-member-query-interval 1", + "robustness-variable": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "immediate-leave": { + "#standalone": true + }, + "querier": { + "#text": "last-member-query-interval 1", + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "max-response-time": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + }, + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + }, + "virtual-router": { + "#text": "mac-address advertisement-interval 30", + "mac-address": { + "#text": "advertisement-interval 30", + "advertisement-interval": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + }, + "route": { + "#text": "vrf devel 10.0.1.0/24 192.168.2.2 1 tag 0", + "10.0.0.0/24": { + "#text": "192.168.0.3 1 tag 0", + "192.168.0.2": { + "#text": "10 tag 0", + "10": { + "#text": "tag 0", + "tag": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "192.168.0.3": { + "#text": "1 tag 0", + "1": { + "#text": "tag 0", + "tag": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "10.0.1.0/24": { + "#text": "192.168.0.2 1 tag 0", + "192.168.0.2": { + "#text": "1 tag 0", + "1": { + "#text": "tag 0", + "tag": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "vrf": { + "#text": "devel 10.0.1.0/24 192.168.2.2 1 tag 0", + "prod": { + "#text": "10.0.1.0/24 172.20.0.2 1 tag 0", + "10.0.0.0/24": { + "#text": "172.20.0.2 1 tag 0", + "172.20.0.2": { + "#text": "1 tag 0", + "1": { + "#text": "tag 0", + "tag": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "10.0.1.0/24": { + "#text": "172.20.0.2 1 tag 0", + "172.20.0.2": { + "#text": "1 tag 0", + "1": { + "#text": "tag 0", + "tag": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + } + }, + "devel": { + "#text": "10.0.1.0/24 192.168.2.2 1 tag 0", + "10.0.0.0/24": { + "#text": "192.168.2.2 1 tag 0", + "192.168.2.2": { + "#text": "1 tag 0", + "1": { + "#text": "tag 0", + "tag": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "10.0.1.0/24": { + "#text": "192.168.2.2 1 tag 0", + "192.168.2.2": { + "#text": "1 tag 0", + "1": { + "#text": "tag 0", + "tag": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + } + } + } + }, + "routing": { + "#standalone": true + }, + "icmp": { + "#text": "redirect", + "redirect": { + "#standalone": true + } + }, + "hardware": { + "#text": "fib next-hop update event bfd", + "fib": { + "#text": "next-hop update event bfd", + "route": { + "#text": "unprogrammed parent-drop", + "unprogrammed": { + "#text": "parent-drop", + "parent-drop": { + "#standalone": true + } + } + }, + "next-hop": { + "#text": "update event bfd", + "update": { + "#text": "event bfd", + "event": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + } + } + } + } + }, + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "activity": { + "#text": "polling-interval 60", + "polling-interval": { + "#text": "60", + "60": { + "#standalone": true + } + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + }, + "as-path": { + "#text": "regex-mode asn", + "regex-mode": { + "#text": "asn", + "asn": { + "#standalone": true + } + } + }, + "access-list": { + "#text": "extended SOMETHING", + "extended": { + "#text": "SOMETHING", + "SOMETHING": { + "#list": [ + { + "deny": { + "#text": "tcp any any eq 25", + "tcp": { + "#text": "any any eq 25", + "any": { + "#text": "any eq 25", + "any": { + "#text": "eq 25", + "eq": { + "#text": "25", + "80": { + "#standalone": true + }, + "25": { + "#standalone": true + } + } + } + } + } + } + }, + { + "permit": { + "#text": "tcp any any", + "tcp": { + "#text": "any any", + "any": { + "#text": "any", + "any": { + "#text": "eq 443", + "eq": { + "#text": "443", + "443": { + "#standalone": true + } + }, + "#standalone": true + } + } + } + } + }, + { + "deny": { + "#text": "tcp any any eq 25", + "tcp": { + "#text": "any any eq 25", + "any": { + "#text": "any eq 25", + "any": { + "#text": "eq 25", + "eq": { + "#text": "25", + "80": { + "#standalone": true + }, + "25": { + "#standalone": true + } + } + } + } + } + } + }, + { + "permit": { + "#text": "tcp any any", + "tcp": { + "#text": "any any", + "any": { + "#text": "any", + "any": { + "#text": "eq 443", + "eq": { + "#text": "443", + "443": { + "#standalone": true + } + }, + "#standalone": true + } + } + } + } + } + ], + "#text": "permit tcp any any", + "deny": { + "#text": "tcp any any eq 25", + "tcp": { + "#text": "any any eq 25", + "any": { + "#text": "any eq 25", + "any": { + "#text": "eq 25", + "eq": { + "#text": "25", + "80": { + "#standalone": true + }, + "25": { + "#standalone": true + } + } + } + } + } + }, + "permit": { + "#text": "tcp any any", + "tcp": { + "#text": "any any", + "any": { + "#text": "any", + "any": { + "#text": "eq 443", + "eq": { + "#text": "443", + "443": { + "#standalone": true + } + }, + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + } + }, + "default": { + "#text": "snmp-server enable traps vrrp trap-new-master", + "switch": { + "#text": "forwarding-mode", + "forwarding-mode": { + "#standalone": true + } + }, + "ip": { + "#text": "igmp snooping vlan 1 immediate-leave", + "igmp": { + "#text": "snooping vlan 1 immediate-leave", + "snooping": { + "#text": "vlan 1 immediate-leave", + "vlan": { + "#text": "1 immediate-leave", + "1": { + "#standalone": true, + "#text": "immediate-leave", + "querier": { + "#standalone": true + }, + "immediate-leave": { + "#standalone": true + } + } + } + } + } + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "load-interval": { + "#text": "default", + "default": { + "#standalone": true + } + }, + "snmp-server": { + "#text": "enable traps vrrp trap-new-master", + "enable": { + "#text": "traps vrrp trap-new-master", + "traps": { + "#standalone": true, + "#text": "vrrp trap-new-master", + "bgp": { + "#standalone": true, + "#text": "established", + "arista-backward-transition": { + "#standalone": true + }, + "arista-established": { + "#standalone": true + }, + "backward-transition": { + "#standalone": true + }, + "established": { + "#standalone": true + } + }, + "entity": { + "#standalone": true, + "#text": "ent-state-oper-enabled", + "arista-ent-sensor-alarm": { + "#standalone": true + }, + "ent-config-change": { + "#standalone": true + }, + "ent-state-oper-disabled": { + "#standalone": true + }, + "ent-state-oper-enabled": { + "#standalone": true + } + }, + "lldp": { + "#standalone": true, + "#text": "rem-tables-change", + "rem-tables-change": { + "#standalone": true + } + }, + "msdp": { + "#standalone": true, + "#text": "established", + "backward-transition": { + "#standalone": true + }, + "established": { + "#standalone": true + } + }, + "ospf": { + "#standalone": true, + "#text": "nbr-state-change", + "if-auth-failure": { + "#standalone": true + }, + "if-config-error": { + "#standalone": true + }, + "if-state-change": { + "#standalone": true + }, + "nbr-state-change": { + "#standalone": true + } + }, + "pim": { + "#standalone": true, + "#text": "neighbor-loss", + "neighbor-loss": { + "#standalone": true + } + }, + "snmp": { + "#standalone": true, + "#text": "link-up", + "authentication": { + "#standalone": true + }, + "link-down": { + "#standalone": true + }, + "link-up": { + "#standalone": true + } + }, + "snmpConfigManEvent": { + "#standalone": true, + "#text": "arista-config-man-event", + "arista-config-man-event": { + "#standalone": true + } + }, + "switchover": { + "#standalone": true, + "#text": "arista-redundancy-switch-over-notif", + "arista-redundancy-switch-over-notif": { + "#standalone": true + } + }, + "test": { + "#standalone": true, + "#text": "arista-test-notification", + "arista-test-notification": { + "#standalone": true + } + }, + "vrrp": { + "#standalone": true, + "#text": "trap-new-master", + "trap-new-master": { + "#standalone": true + } + } + } + } + } + }, + "vlan": { + "#text": "1", + "internal": { + "#text": "allocation policy ascending", + "allocation": { + "#text": "policy ascending", + "policy": { + "#text": "ascending", + "ascending": { + "#standalone": true + } + } + } + }, + "1": { + "#list": [ + { + "name": { + "#text": "default", + "default": { + "#standalone": true + } + } + }, + { + "state": { + "#text": "active", + "active": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "mac-address-table sharing", + "private-vlan": { + "#standalone": true + }, + "mac-address-table": { + "#text": "sharing", + "sharing": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "mac-address-table sharing", + "private-vlan": { + "#standalone": true + }, + "mac-address-table": { + "#text": "sharing", + "sharing": { + "#standalone": true + } + } + } + } + ], + "#text": "no mac-address-table sharing", + "name": { + "#text": "default", + "default": { + "#standalone": true + } + }, + "state": { + "#text": "active", + "active": { + "#standalone": true + } + }, + "no": { + "#text": "mac-address-table sharing", + "private-vlan": { + "#standalone": true + }, + "mac-address-table": { + "#text": "sharing", + "sharing": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "email": { + "#list": [ + { + "no": { + "#text": "tls", + "from-user": { + "#standalone": true + }, + "server": { + "#standalone": true + }, + "auth": { + "#text": "password", + "username": { + "#standalone": true + }, + "password": { + "#standalone": true + } + }, + "tls": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "tls", + "from-user": { + "#standalone": true + }, + "server": { + "#standalone": true + }, + "auth": { + "#text": "password", + "username": { + "#standalone": true + }, + "password": { + "#standalone": true + } + }, + "tls": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "tls", + "from-user": { + "#standalone": true + }, + "server": { + "#standalone": true + }, + "auth": { + "#text": "password", + "username": { + "#standalone": true + }, + "password": { + "#standalone": true + } + }, + "tls": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "tls", + "from-user": { + "#standalone": true + }, + "server": { + "#standalone": true + }, + "auth": { + "#text": "password", + "username": { + "#standalone": true + }, + "password": { + "#standalone": true + } + }, + "tls": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "tls", + "from-user": { + "#standalone": true + }, + "server": { + "#standalone": true + }, + "auth": { + "#text": "password", + "username": { + "#standalone": true + }, + "password": { + "#standalone": true + } + }, + "tls": { + "#standalone": true + } + } + } + ], + "#text": "no tls", + "no": { + "#text": "tls", + "from-user": { + "#standalone": true + }, + "server": { + "#standalone": true + }, + "auth": { + "#text": "password", + "username": { + "#standalone": true + }, + "password": { + "#standalone": true + } + }, + "tls": { + "#standalone": true + } + }, + "#standalone": true + }, + "errdisable": { + "#text": "flap-setting cause link-flap max-flaps 5 time 10", + "detect": { + "#text": "cause link-flap", + "cause": { + "#text": "link-flap", + "arp-inspection": { + "#standalone": true + }, + "link-flap": { + "#standalone": true + } + } + }, + "recovery": { + "#text": "interval 300", + "interval": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "flap-setting": { + "#text": "cause link-flap max-flaps 5 time 10", + "cause": { + "#text": "link-flap max-flaps 5 time 10", + "link-flap": { + "#text": "max-flaps 5 time 10", + "max-flaps": { + "#text": "5 time 10", + "5": { + "#text": "time 10", + "time": { + "#text": "10", + "10": { + "#standalone": true + } + } + } + } + } + } + } + }, + "event-handler": { + "#text": "dhclient", + "dhclient": { + "#list": [ + { + "trigger": { + "#text": "on-boot", + "on-boot": { + "#standalone": true + } + } + }, + { + "action": { + "#text": "bash sudo /mnt/flash/initialize_ma1.sh", + "bash": { + "#text": "sudo /mnt/flash/initialize_ma1.sh", + "sudo": { + "#text": "/mnt/flash/initialize_ma1.sh", + "/mnt/flash/initialize_ma1.sh": { + "#standalone": true + } + } + } + } + }, + { + "delay": { + "#text": "20", + "20": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "asynchronous", + "asynchronous": { + "#standalone": true + } + } + }, + { + "timeout": { + "#text": "10", + "10": { + "#standalone": true + } + } + } + ], + "#text": "timeout 10", + "trigger": { + "#text": "on-boot", + "on-boot": { + "#standalone": true + } + }, + "action": { + "#text": "bash sudo /mnt/flash/initialize_ma1.sh", + "bash": { + "#text": "sudo /mnt/flash/initialize_ma1.sh", + "sudo": { + "#text": "/mnt/flash/initialize_ma1.sh", + "/mnt/flash/initialize_ma1.sh": { + "#standalone": true + } + } + } + }, + "delay": { + "#text": "20", + "20": { + "#standalone": true + } + }, + "no": { + "#text": "asynchronous", + "asynchronous": { + "#standalone": true + } + }, + "timeout": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "#standalone": true + } + }, + "transceiver": { + "#text": "qsfp default-mode 4x10G", + "qsfp": { + "#text": "default-mode 4x10G", + "default-mode": { + "#text": "4x10G", + "4x10G": { + "#standalone": true + } + } + } + }, + "lacp": { + "#text": "system-priority 32768", + "system-priority": { + "#text": "32768", + "32768": { + "#standalone": true + } + } + }, + "queue-monitor": { + "#text": "length global-buffer", + "length": { + "#text": "global-buffer", + "global-buffer": { + "#text": "thresholds 512 256", + "thresholds": { + "#text": "512 256", + "512": { + "#text": "256", + "256": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + "lldp": { + "#text": "run", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "holdtime": { + "#text": "120", + "120": { + "#standalone": true + } + }, + "reinit": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "tlv-select": { + "#text": "system-name", + "link-aggregation": { + "#standalone": true + }, + "management-address": { + "#standalone": true + }, + "max-frame-size": { + "#standalone": true + }, + "port-description": { + "#standalone": true + }, + "port-vlan": { + "#standalone": true + }, + "system-capabilities": { + "#standalone": true + }, + "system-description": { + "#standalone": true + }, + "system-name": { + "#standalone": true + } + }, + "run": { + "#standalone": true + } + }, + "logging": { + "#text": "event spanning-tree global", + "on": { + "#standalone": true + }, + "buffered": { + "#text": "32 debugging", + "32": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + } + }, + "trap": { + "#text": "informational", + "informational": { + "#standalone": true + } + }, + "console": { + "#text": "errors", + "errors": { + "#standalone": true + } + }, + "format": { + "#text": "timestamp traditional", + "timestamp": { + "#text": "traditional", + "traditional": { + "#standalone": true + } + } + }, + "facility": { + "#text": "local4", + "local4": { + "#standalone": true + } + }, + "level": { + "#text": "ZTP debugging", + "AAA": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "ACCOUNTING": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "ACL": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "AGENT": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "ALE": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "ARP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "BFD": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "BGP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "CAPACITY": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "CAPI": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "CLEAR": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "DATAPLANE": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "DOT1X": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "ENVMON": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "ETH": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "EVENTMON": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "EXTENSION": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "FHRP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "FLOW": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "FORWARDING": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "FRU": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "FWK": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "GMP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "HARDWARE": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "IGMP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "IGMPSNOOPING": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "INTF": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "IP6ROUTING": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "IRA": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "ISIS": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "KERNELFIB": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "LACP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "LAG": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "LAUNCHER": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "LINEPROTO": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "LLDP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "LOGMGR": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "LOOPBACK": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "LOOPPROTECT": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MAPREDUCEMONITOR": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MDIO": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MIRRORING": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MLAG": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MMODE": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MROUTE": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MRP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MSDP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MSRP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "MVRP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "NAT": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "OPENFLOW": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "OSPF": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "OSPF3": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "PFC": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "PIM": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "PIMBSR": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "PORTSECURITY": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "PTP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "PWRMGMT": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "QOS": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "QUEUEMONITOR": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "REACHABILITYMONITOR": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "REDUNDANCY": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "RIB": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "ROUTING": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "SECURITY": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "SERVERMONITOR": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "SPANTREE": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "STAGEMGR": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "SYS": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "SYSDB": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "TAPAGG": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "TCP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "TRANSCEIVER": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "TUNNEL": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "VM": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "VMTRACERSESS": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "VMWAREVI": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "VMWAREVS": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "VRF": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "VRRP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "VXLAN": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "XMPP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + }, + "ZTP": { + "#text": "debugging", + "debugging": { + "#standalone": true + } + } + }, + "event": { + "#text": "spanning-tree global", + "link-status": { + "#text": "global", + "global": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "global", + "global": { + "#standalone": true + } + } + } + }, + "power": { + "#text": "poll-interval 5", + "poll-interval": { + "#text": "5", + "5": { + "#standalone": true + } + } + }, + "radius-server": { + "#text": "retransmit 3", + "timeout": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "retransmit": { + "#text": "3", + "3": { + "#standalone": true + } + } + }, + "router": { + "#text": "pim bsr", + "msdp": { + "#list": [ + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + } + } + ], + "#text": "ip msdp timer 30", + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + } + } + ], + "#text": "ip msdp timer 30", + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + }, + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + } + } + ], + "#text": "ip msdp timer 30", + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + } + } + ], + "#text": "ip msdp timer 30", + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "vrf prod", + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + } + } + ], + "#text": "ip msdp timer 30", + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + } + } + ], + "#text": "ip msdp timer 30", + "ip": { + "#text": "msdp timer 30", + "msdp": { + "#text": "timer 30", + "timer": { + "#text": "30", + "30": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + }, + "bgp": { + "#text": "65001", + "65001": { + "#list": [ + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "router-id": { + "#text": "1.1.1.1", + "1.1.1.1": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + } + }, + { + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 192.168.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 192.168.0.200 weight", + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 192.168.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 192.168.0.200 weight", + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + }, + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "router-id": { + "#text": "3.3.3.3", + "3.3.3.3": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + } + }, + { + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "address-family ipv6", + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + }, + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + }, + "router-id": { + "#text": "3.3.3.3", + "3.3.3.3": { + "#standalone": true + } + }, + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + }, + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + }, + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + }, + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + }, + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "router-id": { + "#text": "2.2.2.2", + "2.2.2.2": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + } + }, + { + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "address-family ipv6", + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + }, + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + }, + "router-id": { + "#text": "2.2.2.2", + "2.2.2.2": { + "#standalone": true + } + }, + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + }, + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + }, + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + }, + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + }, + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + } + } + }, + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "router-id": { + "#text": "3.3.3.3", + "3.3.3.3": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + } + }, + { + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "address-family ipv6", + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + }, + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + }, + "router-id": { + "#text": "3.3.3.3", + "3.3.3.3": { + "#standalone": true + } + }, + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + }, + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + }, + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + }, + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + }, + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "router-id": { + "#text": "2.2.2.2", + "2.2.2.2": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + } + }, + { + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "address-family ipv6", + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + }, + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + }, + "router-id": { + "#text": "2.2.2.2", + "2.2.2.2": { + "#standalone": true + } + }, + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + }, + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + }, + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + }, + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + }, + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + } + } + } + ], + "#text": "vrf prod", + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "host-routes": { + "#text": "fib direct-install", + "fib": { + "#text": "direct-install", + "direct-install": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "192.168.0.200 idle-restart-timer", + "192.168.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "local-as": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + }, + "router-id": { + "#text": "1.1.1.1", + "1.1.1.1": { + "#standalone": true + } + }, + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + }, + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + }, + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + }, + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "192.168.0.200 maximum-routes 12000 ", + "192.168.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "description": { + "#text": "asdasd qweq asdasd", + "asdasd": { + "#text": "qweq asdasd", + "qweq": { + "#text": "asdasd", + "asdasd": { + "#standalone": true + } + } + } + }, + "send-community": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + }, + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 192.168.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 192.168.0.200 weight", + "no": { + "#text": "neighbor 192.168.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "192.168.0.200 weight", + "192.168.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 192.168.0.200 activate", + "neighbor": { + "#text": "192.168.0.200 activate", + "192.168.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "192.168.0.200 additional-paths receive", + "192.168.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "router-id": { + "#text": "3.3.3.3", + "3.3.3.3": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + } + }, + { + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "address-family ipv6", + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + }, + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + }, + "router-id": { + "#text": "3.3.3.3", + "3.3.3.3": { + "#standalone": true + } + }, + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + }, + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + }, + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + }, + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + }, + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no bgp route install-map", + "no": { + "#text": "bgp route install-map", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "router-id": { + "#text": "2.2.2.2", + "2.2.2.2": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + } + }, + { + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + } + }, + { + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + }, + { + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "address-family ipv6", + "local-as": { + "#text": "65001", + "65001": { + "#standalone": true + } + }, + "no": { + "#text": "redistribute aggregate", + "shutdown": { + "#standalone": true + }, + "bgp": { + "#text": "auto-local-addr", + "confederation": { + "#text": "identifier", + "identifier": { + "#standalone": true + } + }, + "default": { + "#text": "ipv6-unicast", + "ipv4-unicast": { + "#text": "transport ipv6", + "transport": { + "#text": "ipv6", + "ipv6": { + "#standalone": true + } + } + }, + "ipv6-unicast": { + "#standalone": true + } + }, + "cluster-id": { + "#standalone": true + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + }, + "transport": { + "#text": "listen-port", + "listen-port": { + "#standalone": true + } + }, + "always-compare-med": { + "#standalone": true + }, + "bestpath": { + "#text": "tie-break cluster-list-length", + "med": { + "#text": "confed", + "missing-as-worst": { + "#standalone": true + }, + "confed": { + "#standalone": true + } + }, + "tie-break": { + "#text": "cluster-list-length", + "age": { + "#standalone": true + }, + "router-id": { + "#standalone": true + }, + "originator-id": { + "#standalone": true + }, + "cluster-list-length": { + "#standalone": true + } + } + }, + "route-reflector": { + "#text": "preserve-attributes", + "preserve-attributes": { + "#standalone": true + } + }, + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "aspath-cmp-include-nexthop": { + "#standalone": true + }, + "advertise-inactive": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + } + }, + "update": { + "#text": "wait-install", + "wait-for-convergence": { + "#standalone": true + }, + "wait-install": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "default-metric": { + "#standalone": true + }, + "neighbor": { + "#text": "172.20.0.200 idle-restart-timer", + "172.20.0.200": { + "#text": "idle-restart-timer", + "peer-group": { + "#standalone": true + }, + "import-localpref": { + "#standalone": true + }, + "export-localpref": { + "#standalone": true + }, + "description": { + "#standalone": true + }, + "next-hop-self": { + "#standalone": true + }, + "next-hop-peer": { + "#standalone": true + }, + "allowas-in": { + "#standalone": true + }, + "send-community": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "remove-private-as": { + "#standalone": true + }, + "out-delay": { + "#standalone": true + }, + "weight": { + "#standalone": true + }, + "transport": { + "#text": "connection-mode passive", + "connection-mode": { + "#text": "passive", + "passive": { + "#standalone": true + } + } + }, + "update-source": { + "#standalone": true + }, + "dont-capability-negotiate": { + "#standalone": true + }, + "fall-over": { + "#text": "bfd", + "bfd": { + "#standalone": true + } + }, + "local-v6-addr": { + "#standalone": true + }, + "auto-local-addr": { + "#standalone": true + }, + "next-hop-v6-addr": { + "#standalone": true + }, + "ebgp-multihop": { + "#standalone": true + }, + "route-reflector-client": { + "#standalone": true + }, + "timers": { + "#standalone": true + }, + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "graceful-restart": { + "#standalone": true + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "password": { + "#standalone": true + }, + "default-originate": { + "#standalone": true + }, + "metric-out": { + "#standalone": true + }, + "idle-restart-timer": { + "#standalone": true + } + } + }, + "redistribute": { + "#text": "aggregate", + "connected": { + "#standalone": true + }, + "isis": { + "#standalone": true + }, + "ospf": { + "#text": "match nssa-external", + "match": { + "#text": "nssa-external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + }, + "nssa-external": { + "#standalone": true + } + } + }, + "ospf3": { + "#text": "match external", + "match": { + "#text": "external", + "internal": { + "#standalone": true + }, + "external": { + "#standalone": true + } + } + }, + "static": { + "#standalone": true + }, + "rip": { + "#standalone": true + }, + "aggregate": { + "#standalone": true + } + } + }, + "router-id": { + "#text": "2.2.2.2", + "2.2.2.2": { + "#standalone": true + } + }, + "bgp": { + "#text": "redistribute-internal", + "convergence": { + "#text": "slow-peer time 90", + "time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "slow-peer": { + "#text": "time 90", + "time": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + }, + "log-neighbor-changes": { + "#standalone": true + }, + "default": { + "#text": "ipv4-unicast", + "ipv4-unicast": { + "#standalone": true + } + }, + "client-to-client": { + "#text": "reflection", + "reflection": { + "#standalone": true + } + }, + "peer-mac-resolution-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "listen": { + "#text": "limit 1000", + "limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "bestpath": { + "#text": "ecmp-fast", + "as-path": { + "#text": "multipath-relax", + "multipath-relax": { + "#standalone": true + } + }, + "ecmp-fast": { + "#standalone": true + } + }, + "redistribute-internal": { + "#standalone": true + } + }, + "timers": { + "#text": "bgp 60 180", + "bgp": { + "#text": "60 180", + "60": { + "#text": "180", + "180": { + "#standalone": true + } + } + } + }, + "distance": { + "#text": "bgp 200 200 200", + "bgp": { + "#text": "200 200 200", + "200": { + "#text": "200 200", + "200": { + "#text": "200", + "200": { + "#standalone": true + } + } + } + } + }, + "graceful-restart": { + "#text": "stalepath-time 300", + "restart-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "stalepath-time": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "maximum-paths": { + "#text": "1 ecmp 128", + "1": { + "#text": "ecmp 128", + "ecmp": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 maximum-routes 12000 ", + "172.20.0.200": { + "#text": "maximum-routes 12000 ", + "remote-as": { + "#text": "65100", + "65100": { + "#standalone": true + } + }, + "local-as": { + "#text": "100 no-prepend replace-as", + "100": { + "#text": "no-prepend replace-as", + "no-prepend": { + "#text": "replace-as", + "replace-as": { + "#standalone": true + } + } + } + }, + "soft-reconfiguration": { + "#text": "inbound", + "inbound": { + "#standalone": true + } + }, + "graceful-restart-helper": { + "#standalone": true + }, + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + }, + "enforce-first-as": { + "#standalone": true + }, + "maximum-routes": { + "#text": "12000 ", + "12000": { + "#text": "", + "": { + "#standalone": true + } + } + } + } + }, + "address-family": { + "#text": "ipv6", + "ipv4": { + "#list": [ + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ipv6": { + "#list": [ + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + }, + { + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no neighbor 172.20.0.200 weight", + "no": { + "#text": "neighbor 172.20.0.200 weight", + "bgp": { + "#text": "route install-map", + "additional-paths": { + "#text": "install", + "install": { + "#standalone": true + } + }, + "route": { + "#text": "install-map", + "install-map": { + "#standalone": true + } + } + }, + "neighbor": { + "#text": "172.20.0.200 weight", + "172.20.0.200": { + "#text": "weight", + "route-map": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "prefix-list": { + "#text": "out", + "in": { + "#standalone": true + }, + "out": { + "#standalone": true + } + }, + "default-originate": { + "#standalone": true + }, + "weight": { + "#standalone": true + } + } + } + }, + "bgp": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + }, + "default": { + "#text": "neighbor 172.20.0.200 activate", + "neighbor": { + "#text": "172.20.0.200 activate", + "172.20.0.200": { + "#text": "activate", + "activate": { + "#standalone": true + } + } + } + }, + "neighbor": { + "#text": "172.20.0.200 additional-paths receive", + "172.20.0.200": { + "#text": "additional-paths receive", + "additional-paths": { + "#text": "receive", + "receive": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + } + }, + "#standalone": true + } + }, + "multicast": { + "#list": [ + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "ip mfib packet-buffers unresolved max 3", + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + }, + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "ip mfib packet-buffers unresolved max 3", + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + }, + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + } + } + }, + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "ip mfib packet-buffers unresolved max 3", + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + }, + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "ip mfib packet-buffers unresolved max 3", + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + }, + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "vrf prod", + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "ip mfib packet-buffers unresolved max 3", + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + }, + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "ip mfib packet-buffers unresolved max 3", + "no": { + "#text": "ip multicast-routing", + "ip": { + "#text": "multicast-routing", + "multicast-routing": { + "#standalone": true + } + } + }, + "ip": { + "#text": "mfib packet-buffers unresolved max 3", + "multicast": { + "#text": "multipath deterministic", + "multipath": { + "#text": "deterministic", + "deterministic": { + "#standalone": true + } + } + }, + "mfib": { + "#text": "packet-buffers unresolved max 3", + "max-fastdrops": { + "#text": "1024", + "1024": { + "#standalone": true + } + }, + "cache-entries": { + "#text": "unresolved max 4000", + "unresolved": { + "#text": "max 4000", + "max": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + }, + "packet-buffers": { + "#text": "unresolved max 3", + "unresolved": { + "#text": "max 3", + "max": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + }, + "pim": { + "#text": "bsr", + "sparse-mode": { + "#list": [ + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim register-source", + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim register-source", + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + }, + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim register-source", + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim register-source", + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "vrf prod", + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim register-source", + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim register-source", + "ip": { + "#text": "pim spt-threshold 0", + "pim": { + "#text": "spt-threshold 0", + "log-neighbor-changes": { + "#standalone": true + }, + "sparse-mode": { + "#text": "sg-expiry-timer 210", + "sg-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + }, + "spt-threshold": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim register-source", + "ip": { + "#text": "pim register-source", + "pim": { + "#text": "register-source", + "ssm": { + "#text": "range", + "range": { + "#standalone": true + } + }, + "rp-candidate": { + "#standalone": true + }, + "register-source": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + }, + "bidirectional": { + "#list": [ + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + } + }, + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim rp-candidate", + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim rp-candidate", + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + }, + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim rp-candidate", + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim rp-candidate", + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "vrf prod", + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + }, + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim rp-candidate", + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no ip pim rp-candidate", + "ip": { + "#text": "pim group-expiry-timer 210", + "pim": { + "#text": "group-expiry-timer 210", + "log-neighbor-changes": { + "#standalone": true + }, + "group-expiry-timer": { + "#text": "210", + "210": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "ip pim rp-candidate", + "ip": { + "#text": "pim rp-candidate", + "pim": { + "#text": "rp-candidate", + "rp-candidate": { + "#standalone": true + } + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + }, + "bsr": { + "#list": [ + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "no ip pim bsr rp-candidate advertisement-filter", + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "no ip pim bsr rp-candidate advertisement-filter", + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + } + } + }, + { + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "no ip pim bsr rp-candidate advertisement-filter", + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "no ip pim bsr rp-candidate advertisement-filter", + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + } + } + } + ], + "#text": "vrf prod", + "vrf": { + "#text": "prod", + "devel": { + "#list": [ + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "no ip pim bsr rp-candidate advertisement-filter", + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "no ip pim bsr rp-candidate advertisement-filter", + "no": { + "#text": "ip pim bsr rp-candidate advertisement-filter", + "ip": { + "#text": "pim bsr rp-candidate advertisement-filter", + "pim": { + "#text": "bsr rp-candidate advertisement-filter", + "bsr-holdtime": { + "#standalone": true + }, + "bsr-sztimeout": { + "#standalone": true + }, + "bsr-candidate": { + "#standalone": true + }, + "bsr": { + "#text": "rp-candidate advertisement-filter", + "rp-candidate": { + "#text": "advertisement-filter", + "advertisement-filter": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "#standalone": true + } + } + }, + "sflow": { + "#text": "extension router", + "sample": { + "#text": "output interface", + "1048576": { + "#standalone": true + }, + "output": { + "#text": "interface", + "interface": { + "#standalone": true + } + } + }, + "polling-interval": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "extension": { + "#text": "router", + "switch": { + "#standalone": true + }, + "router": { + "#standalone": true + } + } + }, + "snmp-server": { + "#text": "vrf default", + "vrf": { + "#text": "default", + "default": { + "#standalone": true + } + } + }, + "spanning-tree": { + "#text": "mst configuration", + "mode": { + "#text": "mstp", + "mstp": { + "#standalone": true + } + }, + "hello-time": { + "#text": "2000", + "2000": { + "#standalone": true + } + }, + "max-age": { + "#text": "20", + "20": { + "#standalone": true + } + }, + "forward-time": { + "#text": "15", + "15": { + "#standalone": true + } + }, + "transmit": { + "#text": "hold-count 6", + "hold-count": { + "#text": "6", + "6": { + "#standalone": true + } + } + }, + "max-hops": { + "#text": "20", + "20": { + "#standalone": true + } + }, + "bridge": { + "#text": "assurance", + "assurance": { + "#standalone": true + } + }, + "bpduguard": { + "#text": "rate-limit default", + "rate-limit": { + "#text": "default", + "default": { + "#standalone": true + } + } + }, + "mst": { + "#text": "configuration", + "0": { + "#text": "priority 32768", + "priority": { + "#text": "32768", + "32768": { + "#standalone": true + } + } + }, + "configuration": { + "#list": [ + { + "no": { + "#text": "name", + "name": { + "#standalone": true + } + } + }, + { + "revision": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + ], + "#text": "revision 0", + "no": { + "#text": "name", + "name": { + "#standalone": true + } + }, + "revision": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "#standalone": true + } + } + }, + "tacacs-server": { + "#text": "timeout 5", + "timeout": { + "#text": "5", + "5": { + "#standalone": true + } + } + }, + "aaa": { + "#text": "root secret 5 $1$1s8ATte8$cvMSZw6BlLGJVo61p88cP.", + "authentication": { + "#text": "enable default local", + "login": { + "#text": "default local", + "default": { + "#text": "local", + "local": { + "#standalone": true + } + } + }, + "enable": { + "#text": "default local", + "default": { + "#text": "local", + "local": { + "#standalone": true + } + } + } + }, + "authorization": { + "#text": "config-commands", + "exec": { + "#text": "default local", + "default": { + "#text": "local", + "local": { + "#standalone": true + } + } + }, + "config-commands": { + "#standalone": true + } + }, + "root": { + "#text": "secret 5 $1$1s8ATte8$cvMSZw6BlLGJVo61p88cP.", + "secret": { + "#text": "5 $1$1s8ATte8$cvMSZw6BlLGJVo61p88cP.", + "5": { + "#text": "$1$1s8ATte8$cvMSZw6BlLGJVo61p88cP.", + "$1$1s8ATte8$cvMSZw6BlLGJVo61p88cP.": { + "#standalone": true + } + } + } + } + }, + "username": { + "#text": "vagrant privilege 15 role network-admin secret 5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0", + "admin": { + "#text": "privilege 15 role network-admin secret 5 $1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1", + "privilege": { + "#text": "15 role network-admin secret 5 $1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1", + "15": { + "#text": "role network-admin secret 5 $1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1", + "role": { + "#text": "network-admin secret 5 $1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1", + "network-admin": { + "#text": "secret 5 $1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1", + "secret": { + "#text": "5 $1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1", + "5": { + "#text": "$1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1", + "$1$.YDuXLVw$anXUh5Qs1e85922oCJPnB1": { + "#standalone": true + } + } + } + } + } + } + } + }, + "vagrant": { + "#text": "privilege 15 role network-admin secret 5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0", + "privilege": { + "#text": "15 role network-admin secret 5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0", + "15": { + "#text": "role network-admin secret 5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0", + "role": { + "#text": "network-admin secret 5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0", + "network-admin": { + "#text": "secret 5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0", + "secret": { + "#text": "5 $1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0", + "5": { + "#text": "$1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0", + "$1$0lN8iim9$cRtwRrvn3ZvLLgevUeq/b0": { + "#standalone": true + } + } + } + } + } + } + } + } + }, + "role": { + "#text": "network-operator", + "network-admin": { + "#list": [ + { + "10": { + "#text": "permit command .*", + "permit": { + "#text": "command .*", + "command": { + "#text": ".*", + ".*": { + "#standalone": true + } + } + } + } + } + ], + "#text": "10 permit command .*", + "10": { + "#text": "permit command .*", + "permit": { + "#text": "command .*", + "command": { + "#text": ".*", + ".*": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "network-operator": { + "#list": [ + { + "10": { + "#text": "deny mode exec command configure|bash|python-shell|\\|", + "deny": { + "#text": "mode exec command configure|bash|python-shell|\\|", + "mode": { + "#text": "exec command configure|bash|python-shell|\\|", + "exec": { + "#text": "command configure|bash|python-shell|\\|", + "command": { + "#text": "configure|bash|python-shell|\\|", + "configure|bash|python-shell|\\|": { + "#standalone": true + } + } + } + } + } + } + }, + { + "20": { + "#text": "permit mode exec command .*", + "permit": { + "#text": "mode exec command .*", + "mode": { + "#text": "exec command .*", + "exec": { + "#text": "command .*", + "command": { + "#text": ".*", + ".*": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "20 permit mode exec command .*", + "10": { + "#text": "deny mode exec command configure|bash|python-shell|\\|", + "deny": { + "#text": "mode exec command configure|bash|python-shell|\\|", + "mode": { + "#text": "exec command configure|bash|python-shell|\\|", + "exec": { + "#text": "command configure|bash|python-shell|\\|", + "command": { + "#text": "configure|bash|python-shell|\\|", + "configure|bash|python-shell|\\|": { + "#standalone": true + } + } + } + } + } + }, + "20": { + "#text": "permit mode exec command .*", + "permit": { + "#text": "mode exec command .*", + "mode": { + "#text": "exec command .*", + "exec": { + "#text": "command .*", + "command": { + "#text": ".*", + ".*": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + } + }, + "tap": { + "#text": "aggregation", + "aggregation": { + "#list": [ + { + "no": { + "#text": "service-policy type tapagg mac access-list match ip", + "mode": { + "#standalone": true + }, + "service-policy": { + "#text": "type tapagg mac access-list match ip", + "type": { + "#text": "tapagg mac access-list match ip", + "tapagg": { + "#text": "mac access-list match ip", + "mac": { + "#text": "access-list match ip", + "access-list": { + "#text": "match ip", + "match": { + "#text": "ip", + "ip": { + "#standalone": true + } + } + } + } + } + } + } + } + }, + { + "no": { + "#text": "service-policy type tapagg mac access-list match ip", + "mode": { + "#standalone": true + }, + "service-policy": { + "#text": "type tapagg mac access-list match ip", + "type": { + "#text": "tapagg mac access-list match ip", + "tapagg": { + "#text": "mac access-list match ip", + "mac": { + "#text": "access-list match ip", + "access-list": { + "#text": "match ip", + "match": { + "#text": "ip", + "ip": { + "#standalone": true + } + } + } + } + } + } + } + } + } + ], + "#text": "no service-policy type tapagg mac access-list match ip", + "no": { + "#text": "service-policy type tapagg mac access-list match ip", + "mode": { + "#standalone": true + }, + "service-policy": { + "#text": "type tapagg mac access-list match ip", + "type": { + "#text": "tapagg mac access-list match ip", + "tapagg": { + "#text": "mac access-list match ip", + "mac": { + "#text": "access-list match ip", + "access-list": { + "#text": "match ip", + "match": { + "#text": "ip", + "ip": { + "#standalone": true + } + } + } + } + } + } + } + }, + "#standalone": true + } + }, + "environment": { + "#text": "fan-speed auto", + "overheat": { + "#text": "action shutdown", + "action": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + }, + "insufficient-fans": { + "#text": "action shutdown", + "action": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + }, + "fan-speed": { + "#text": "auto", + "auto": { + "#standalone": true + } + } + }, + "clock": { + "#text": "timezone UTC", + "timezone": { + "#text": "UTC", + "UTC": { + "#standalone": true + } + } + }, + "vrf": { + "#text": "definition prod", + "definition": { + "#text": "prod", + "devel": { + "#list": [ + { + "rd": { + "#text": "1:2", + "1:2": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "description", + "description": { + "#standalone": true + } + } + } + ], + "#text": "no description", + "rd": { + "#text": "1:2", + "1:2": { + "#standalone": true + } + }, + "no": { + "#text": "description", + "description": { + "#standalone": true + } + }, + "#standalone": true + }, + "prod": { + "#list": [ + { + "rd": { + "#text": "1:1", + "1:1": { + "#standalone": true + } + } + }, + { + "description": { + "#text": "Production VRF", + "Production": { + "#text": "VRF", + "VRF": { + "#standalone": true + } + } + } + } + ], + "#text": "description Production VRF", + "rd": { + "#text": "1:1", + "1:1": { + "#standalone": true + } + }, + "description": { + "#text": "Production VRF", + "Production": { + "#text": "VRF", + "VRF": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + "interface": { + "#text": "Management1", + "Port-Channel1": { + "#list": [ + { + "description": { + "#text": "blah", + "blah": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "mtu": { + "#text": "9000", + "9000": { + "#standalone": true + } + } + }, + { + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + } + }, + { + "switchport": { + "#text": "dot1q ethertype 0x8100", + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "port-channel": { + "#text": "lacp fallback timeout 90", + "lacp": { + "#text": "fallback timeout 90", + "fallback": { + "#text": "timeout 90", + "timeout": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + }, + { + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + } + } + ], + "#text": "sflow enable", + "description": { + "#text": "blah", + "blah": { + "#standalone": true + } + }, + "no": { + "#text": "shape rate", + "shutdown": { + "#standalone": true + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "per-link", + "echo": { + "#standalone": true + }, + "per-link": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "port-channel": { + "#text": "lacp fallback", + "min-links": { + "#standalone": true + }, + "lacp": { + "#text": "fallback", + "fallback": { + "#standalone": true + } + } + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "mlag": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + }, + "mtu": { + "#text": "9000", + "9000": { + "#standalone": true + } + }, + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + }, + "switchport": { + "#text": "dot1q ethertype 0x8100", + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + } + }, + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1", + "relay": { + "#text": "information option circuit-id Port-Channel1", + "information": { + "#text": "option circuit-id Port-Channel1", + "option": { + "#text": "circuit-id Port-Channel1", + "circuit-id": { + "#text": "Port-Channel1", + "Port-Channel1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + }, + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + }, + "port-channel": { + "#text": "lacp fallback timeout 90", + "lacp": { + "#text": "fallback timeout 90", + "fallback": { + "#text": "timeout 90", + "timeout": { + "#text": "90", + "90": { + "#standalone": true + } + } + } + } + }, + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + }, + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + }, + "#standalone": true + }, + "Port-Channel1.1": { + "#list": [ + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + }, + { + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + } + } + ], + "#text": "sflow enable", + "no": { + "#text": "shape rate", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + }, + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + }, + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + "ip": { + "#text": "pim dr-priority 1", + "dhcp": { + "#text": "relay information option circuit-id Port-Channel1.1", + "relay": { + "#text": "information option circuit-id Port-Channel1.1", + "information": { + "#text": "option circuit-id Port-Channel1.1", + "option": { + "#text": "circuit-id Port-Channel1.1", + "circuit-id": { + "#text": "Port-Channel1.1", + "Port-Channel1.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + }, + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + }, + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + }, + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + }, + "#standalone": true + }, + "Ethernet1": { + "#list": [ + { + "description": { + "#text": "This is a description", + "This": { + "#text": "is a description", + "is": { + "#text": "a description", + "a": { + "#text": "description", + "description": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "logging": { + "#text": "event spanning-tree use-global", + "event": { + "#text": "spanning-tree use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + } + }, + { + "dcbx": { + "#text": "mode ieee", + "mode": { + "#text": "ieee", + "ieee": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + } + }, + { + "channel-group": { + "#text": "1 mode active", + "1": { + "#text": "mode active", + "mode": { + "#text": "active", + "active": { + "#standalone": true + } + } + } + } + }, + { + "lacp": { + "#text": "port-priority 32768", + "rate": { + "#text": "normal", + "normal": { + "#standalone": true + } + }, + "port-priority": { + "#text": "32768", + "32768": { + "#standalone": true + } + } + } + }, + { + "lacp": { + "#text": "port-priority 32768", + "rate": { + "#text": "normal", + "normal": { + "#standalone": true + } + }, + "port-priority": { + "#text": "32768", + "32768": { + "#standalone": true + } + } + } + }, + { + "lldp": { + "#text": "receive", + "transmit": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + } + }, + { + "lldp": { + "#text": "receive", + "transmit": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + }, + { + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "spanning-tree": { + "#text": "port-priority 128", + "portfast": { + "#text": "auto", + "auto": { + "#standalone": true + } + }, + "port-priority": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "spanning-tree": { + "#text": "port-priority 128", + "portfast": { + "#text": "auto", + "auto": { + "#standalone": true + } + }, + "port-priority": { + "#text": "128", + "128": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "logging": { + "#text": "event spanning-tree use-global", + "event": { + "#text": "spanning-tree use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + } + } + ], + "#text": "no switchport tool dot1q remove outer", + "description": { + "#text": "This is a description", + "This": { + "#text": "is a description", + "is": { + "#text": "a description", + "a": { + "#text": "description", + "description": { + "#standalone": true + } + } + } + } + }, + "no": { + "#text": "switchport tool dot1q remove outer", + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool dot1q remove outer", + "asym": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + }, + "trunk": { + "#text": "private-vlan secondary", + "private-vlan": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "private-vlan": { + "#text": "mapping", + "mapping": { + "#standalone": true + } + }, + "port-security": { + "#standalone": true + }, + "tap": { + "#text": "default interface", + "identity": { + "#standalone": true + }, + "mpls": { + "#text": "pop all", + "pop": { + "#text": "all", + "all": { + "#standalone": true + } + } + }, + "truncation": { + "#standalone": true + }, + "default": { + "#text": "interface", + "group": { + "#standalone": true + }, + "interface": { + "#standalone": true + } + } + }, + "tool": { + "#text": "dot1q remove outer", + "identity": { + "#standalone": true + }, + "truncation": { + "#standalone": true + }, + "group": { + "#standalone": true + }, + "dot1q": { + "#text": "remove outer", + "remove": { + "#text": "outer", + "outer": { + "#standalone": true + } + } + } + } + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "bpduguard rate-limit", + "portfast": { + "#standalone": true + }, + "link-type": { + "#standalone": true + }, + "bpduguard": { + "#standalone": true, + "#text": "rate-limit", + "rate-limit": { + "#standalone": true + } + }, + "bpdufilter": { + "#standalone": true + }, + "cost": { + "#standalone": true + }, + "guard": { + "#standalone": true + } + } + }, + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + }, + "logging": { + "#text": "event spanning-tree use-global", + "event": { + "#text": "spanning-tree use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + }, + "dcbx": { + "#text": "mode ieee", + "mode": { + "#text": "ieee", + "ieee": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "tool allowed vlan 1-4094", + "access": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "trunk": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "mode": { + "#text": "access", + "access": { + "#standalone": true + } + }, + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + }, + "mac": { + "#text": "address learning", + "address": { + "#text": "learning", + "learning": { + "#standalone": true + } + } + }, + "#standalone": true, + "port-security": { + "#text": "maximum 1", + "maximum": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "tap": { + "#text": "allowed vlan 1-4094", + "native": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + }, + "tool": { + "#text": "allowed vlan 1-4094", + "allowed": { + "#text": "vlan 1-4094", + "vlan": { + "#text": "1-4094", + "1-4094": { + "#standalone": true + } + } + } + } + }, + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + }, + "channel-group": { + "#text": "1 mode active", + "1": { + "#text": "mode active", + "mode": { + "#text": "active", + "active": { + "#standalone": true + } + } + } + }, + "lacp": { + "#text": "port-priority 32768", + "rate": { + "#text": "normal", + "normal": { + "#standalone": true + } + }, + "port-priority": { + "#text": "32768", + "32768": { + "#standalone": true + } + } + }, + "lldp": { + "#text": "receive", + "transmit": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + }, + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + }, + "spanning-tree": { + "#text": "port-priority 128", + "portfast": { + "#text": "auto", + "auto": { + "#standalone": true + } + }, + "port-priority": { + "#text": "128", + "128": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "Ethernet2": { + "#list": [ + { + "description": { + "#text": "so much oc", + "so": { + "#text": "much oc", + "much": { + "#text": "oc", + "oc": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "mtu": { + "#text": "1500", + "1500": { + "#standalone": true + } + } + }, + { + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "switchport": { + "#text": "dot1q ethertype 0x8100", + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "lacp": { + "#text": "port-priority 32768", + "rate": { + "#text": "normal", + "normal": { + "#standalone": true + } + }, + "port-priority": { + "#text": "32768", + "32768": { + "#standalone": true + } + } + } + }, + { + "lacp": { + "#text": "port-priority 32768", + "rate": { + "#text": "normal", + "normal": { + "#standalone": true + } + }, + "port-priority": { + "#text": "32768", + "32768": { + "#standalone": true + } + } + } + }, + { + "lldp": { + "#text": "receive", + "transmit": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + } + }, + { + "lldp": { + "#text": "receive", + "transmit": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + } + }, + { + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + }, + { + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + } + }, + { + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + } + } + ], + "#text": "sflow enable", + "description": { + "#text": "so much oc", + "so": { + "#text": "much oc", + "much": { + "#text": "oc", + "oc": { + "#standalone": true + } + } + } + }, + "shutdown": { + "#standalone": true + }, + "default": { + "#text": "qos trust", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "encapsulation": { + "#text": "dot1q vlan", + "dot1q": { + "#text": "vlan", + "vlan": { + "#standalone": true + } + } + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + }, + "qos": { + "#text": "trust", + "trust": { + "#standalone": true + } + } + }, + "mtu": { + "#text": "1500", + "1500": { + "#standalone": true + } + }, + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "shape rate", + "dcbx": { + "#text": "mode", + "mode": { + "#standalone": true + } + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "switchport": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + }, + "channel-group": { + "#standalone": true + }, + "msrp": { + "#standalone": true + }, + "mvrp": { + "#standalone": true + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "switchport": { + "#text": "dot1q ethertype 0x8100", + "dot1q": { + "#text": "ethertype 0x8100", + "ethertype": { + "#text": "0x8100", + "0x8100": { + "#standalone": true + } + } + } + }, + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + }, + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.0.1/24", + "192.168.0.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2", + "relay": { + "#text": "information option circuit-id Ethernet2", + "information": { + "#text": "option circuit-id Ethernet2", + "option": { + "#text": "circuit-id Ethernet2", + "circuit-id": { + "#text": "Ethernet2", + "Ethernet2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + }, + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + }, + "lacp": { + "#text": "port-priority 32768", + "rate": { + "#text": "normal", + "normal": { + "#standalone": true + } + }, + "port-priority": { + "#text": "32768", + "32768": { + "#standalone": true + } + } + }, + "lldp": { + "#text": "receive", + "transmit": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "qos": { + "#text": "dscp 2", + "cos": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "dscp": { + "#text": "2", + "2": { + "#standalone": true + } + } + }, + "mc-tx-queue": { + "#text": "3", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "!": { + "#standalone": true + }, + "uc-tx-queue": { + "#text": "7", + "0": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "1": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "2": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "3": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "4": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "5": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "6": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "7": { + "#list": [ + { + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + } + } + ], + "#text": "no bandwidth guaranteed", + "priority": { + "#text": "strict", + "strict": { + "#standalone": true + } + }, + "no": { + "#text": "bandwidth guaranteed", + "bandwidth": { + "#text": "guaranteed", + "percent": { + "#standalone": true + }, + "guaranteed": { + "#standalone": true + } + }, + "shape": { + "#text": "rate", + "rate": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + }, + "#standalone": true + }, + "Ethernet2.1": { + "#list": [ + { + "description": { + "#text": "another subiface", + "another": { + "#text": "subiface", + "subiface": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + } + }, + { + "encapsulation": { + "#text": "dot1q vlan 1", + "dot1q": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + } + }, + { + "vrf": { + "#text": "forwarding prod", + "forwarding": { + "#text": "prod", + "prod": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + } + } + ], + "#text": "sflow enable", + "description": { + "#text": "another subiface", + "another": { + "#text": "subiface", + "subiface": { + "#standalone": true + } + } + }, + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + }, + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + }, + "encapsulation": { + "#text": "dot1q vlan 1", + "dot1q": { + "#text": "vlan 1", + "vlan": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + }, + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + }, + "vrf": { + "#text": "forwarding prod", + "forwarding": { + "#text": "prod", + "prod": { + "#standalone": true + } + } + }, + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "172.20.0.1/24 secondary", + "192.168.1.1/24": { + "#standalone": true + }, + "172.20.0.1/24": { + "#text": "secondary", + "secondary": { + "#standalone": true + } + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.1", + "relay": { + "#text": "information option circuit-id Ethernet2.1", + "information": { + "#text": "option circuit-id Ethernet2.1", + "option": { + "#text": "circuit-id Ethernet2.1", + "circuit-id": { + "#text": "Ethernet2.1", + "Ethernet2.1": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + }, + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + }, + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + }, + "#standalone": true + }, + "Ethernet2.2": { + "#list": [ + { + "description": { + "#text": "asdasdasd", + "asdasdasd": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + } + }, + { + "encapsulation": { + "#text": "dot1q vlan 2", + "dot1q": { + "#text": "vlan 2", + "vlan": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + } + }, + { + "vrf": { + "#text": "forwarding devel", + "forwarding": { + "#text": "devel", + "devel": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + } + } + ], + "#text": "sflow enable", + "description": { + "#text": "asdasdasd", + "asdasdasd": { + "#standalone": true + } + }, + "no": { + "#text": "ip pim bsr-border", + "shutdown": { + "#standalone": true + }, + "l2-protocol": { + "#text": "encapsulation dot1q vlan 0", + "encapsulation": { + "#text": "dot1q vlan 0", + "dot1q": { + "#text": "vlan 0", + "vlan": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bsr-border", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "helper-address": { + "#standalone": true + }, + "igmp": { + "#standalone": true, + "#text": "host-proxy", + "host-proxy": { + "#standalone": true + } + }, + "multicast": { + "#text": "static", + "static": { + "#standalone": true + } + }, + "pim": { + "#text": "bsr-border", + "sparse-mode": { + "#standalone": true + }, + "bidirectional": { + "#standalone": true + }, + "border-router": { + "#standalone": true + }, + "neighbor-filter": { + "#standalone": true + }, + "bsr-border": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "dhcp": { + "#text": "relay destination", + "relay": { + "#text": "destination", + "destination": { + "#standalone": true + } + } + }, + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "ip pim bfd-instance", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ip": { + "#text": "pim bfd-instance", + "dhcp": { + "#text": "smart-relay", + "smart-relay": { + "#standalone": true + } + }, + "pim": { + "#text": "bfd-instance", + "bfd-instance": { + "#standalone": true + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + }, + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + }, + "encapsulation": { + "#text": "dot1q vlan 2", + "dot1q": { + "#text": "vlan 2", + "vlan": { + "#text": "2", + "2": { + "#standalone": true + } + } + } + }, + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + }, + "vrf": { + "#text": "forwarding devel", + "forwarding": { + "#text": "devel", + "devel": { + "#standalone": true + } + } + }, + "ip": { + "#text": "pim dr-priority 1", + "address": { + "#text": "192.168.2.1/24", + "192.168.2.1/24": { + "#standalone": true + } + }, + "dhcp": { + "#text": "relay information option circuit-id Ethernet2.2", + "relay": { + "#text": "information option circuit-id Ethernet2.2", + "information": { + "#text": "option circuit-id Ethernet2.2", + "option": { + "#text": "circuit-id Ethernet2.2", + "circuit-id": { + "#text": "Ethernet2.2", + "Ethernet2.2": { + "#standalone": true + } + } + } + } + } + }, + "igmp": { + "#text": "router-alert optional connected", + "version": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "last-member-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "last-member-query-interval": { + "#text": "10", + "10": { + "#standalone": true + } + }, + "query-max-response-time": { + "#text": "100", + "100": { + "#standalone": true + } + }, + "query-interval": { + "#text": "125", + "125": { + "#standalone": true + } + }, + "startup-query-count": { + "#text": "2", + "2": { + "#standalone": true + } + }, + "startup-query-interval": { + "#text": "310", + "310": { + "#standalone": true + } + }, + "router-alert": { + "#text": "optional connected", + "optional": { + "#text": "connected", + "connected": { + "#standalone": true + } + } + } + }, + "mfib": { + "#text": "fastdrop", + "fastdrop": { + "#standalone": true + } + }, + "pim": { + "#text": "dr-priority 1", + "query-interval": { + "#text": "30", + "30": { + "#standalone": true + } + }, + "join-prune-interval": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "dr-priority": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + }, + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + }, + "sflow": { + "#text": "enable", + "enable": { + "#standalone": true + } + }, + "#standalone": true + }, + "Loopback1": { + "#list": [ + { + "description": { + "#text": "a loopback", + "a": { + "#text": "loopback", + "loopback": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "mtu": { + "#text": "1500", + "1500": { + "#standalone": true + } + } + }, + { + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + } + }, + { + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + } + ], + "#text": "default ntp serve", + "description": { + "#text": "a loopback", + "a": { + "#text": "loopback", + "loopback": { + "#standalone": true + } + } + }, + "no": { + "#text": "ipv6 nd other-config-flag", + "shutdown": { + "#standalone": true + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "suppress": { + "#standalone": true + }, + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "arp": { + "#text": "timeout 14400", + "timeout": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 14400", + "nd": { + "#text": "cache expire 14400", + "cache": { + "#text": "expire 14400", + "expire": { + "#text": "14400", + "14400": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + }, + "mtu": { + "#text": "1500", + "1500": { + "#standalone": true + } + }, + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + }, + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "Management1": { + "#list": [ + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "arp": { + "#text": "timeout 300", + "timeout": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 300", + "nd": { + "#text": "cache expire 300", + "cache": { + "#text": "expire 300", + "expire": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "mtu": { + "#text": "1500", + "1500": { + "#standalone": true + } + } + }, + { + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "arp": { + "#text": "timeout 300", + "timeout": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 300", + "nd": { + "#text": "cache expire 300", + "cache": { + "#text": "expire 300", + "expire": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "arp": { + "#text": "timeout 300", + "timeout": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 300", + "nd": { + "#text": "cache expire 300", + "cache": { + "#text": "expire 300", + "expire": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "arp": { + "#text": "timeout 300", + "timeout": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 300", + "nd": { + "#text": "cache expire 300", + "cache": { + "#text": "expire 300", + "expire": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ip": { + "#text": "address 10.0.2.15/24", + "address": { + "#text": "10.0.2.15/24", + "10.0.2.15/24": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "arp": { + "#text": "timeout 300", + "timeout": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 300", + "nd": { + "#text": "cache expire 300", + "cache": { + "#text": "expire 300", + "expire": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "arp": { + "#text": "timeout 300", + "timeout": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 300", + "nd": { + "#text": "cache expire 300", + "cache": { + "#text": "expire 300", + "expire": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + }, + { + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "suppress": { + "#text": "all", + "all": { + "#standalone": true + } + }, + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "suppress": { + "#text": "all", + "all": { + "#standalone": true + } + }, + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "suppress": { + "#text": "all", + "all": { + "#standalone": true + } + }, + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "suppress": { + "#text": "all", + "all": { + "#standalone": true + } + }, + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "suppress": { + "#text": "all", + "all": { + "#standalone": true + } + }, + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "suppress": { + "#text": "all", + "all": { + "#standalone": true + } + }, + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "suppress": { + "#text": "all", + "all": { + "#standalone": true + } + }, + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "suppress": { + "#text": "all", + "all": { + "#standalone": true + } + }, + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + } + }, + { + "lldp": { + "#text": "receive", + "transmit": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + } + }, + { + "lldp": { + "#text": "receive", + "transmit": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + } + }, + { + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "arp": { + "#text": "timeout 300", + "timeout": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 300", + "nd": { + "#text": "cache expire 300", + "cache": { + "#text": "expire 300", + "expire": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + } + } + ], + "#text": "default ntp serve", + "no": { + "#text": "ipv6 nd other-config-flag", + "description": { + "#standalone": true + }, + "shutdown": { + "#standalone": true + }, + "mac-address": { + "#standalone": true + }, + "link-debounce": { + "#standalone": true + }, + "flowcontrol": { + "#text": "receive", + "send": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "mac": { + "#text": "timestamp", + "timestamp": { + "#standalone": true + } + }, + "speed": { + "#standalone": true + }, + "l2": { + "#text": "mtu", + "mtu": { + "#standalone": true + } + }, + "traffic-loopback": { + "#standalone": true + }, + "error-correction": { + "#text": "reed-solomon bypass", + "reed-solomon": { + "#text": "bypass", + "bypass": { + "#standalone": true + } + } + }, + "ip": { + "#text": "verify unicast", + "proxy-arp": { + "#standalone": true + }, + "local-proxy-arp": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "echo", + "echo": { + "#standalone": true + } + }, + "ipv6": { + "#text": "nd other-config-flag", + "enable": { + "#standalone": true + }, + "address": { + "#standalone": true + }, + "verify": { + "#text": "unicast", + "unicast": { + "#standalone": true + } + }, + "nd": { + "#text": "other-config-flag", + "ra": { + "#text": "mtu suppress", + "mtu": { + "#text": "suppress", + "suppress": { + "#standalone": true + } + } + }, + "managed-config-flag": { + "#standalone": true + }, + "other-config-flag": { + "#standalone": true + } + } + } + }, + "default": { + "#text": "ntp serve", + "load-interval": { + "#standalone": true + }, + "logging": { + "#text": "event congestion-drops", + "event": { + "#text": "congestion-drops", + "congestion-drops": { + "#standalone": true + } + } + }, + "unidirectional": { + "#standalone": true + }, + "error-correction": { + "#text": "encoding", + "encoding": { + "#standalone": true + } + }, + "arp": { + "#text": "timeout 300", + "timeout": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "ipv6": { + "#text": "nd cache expire 300", + "nd": { + "#text": "cache expire 300", + "cache": { + "#text": "expire 300", + "expire": { + "#text": "300", + "300": { + "#standalone": true + } + } + } + } + }, + "ntp": { + "#text": "serve", + "serve": { + "#standalone": true + } + } + }, + "mtu": { + "#text": "1500", + "1500": { + "#standalone": true + } + }, + "logging": { + "#text": "event link-status use-global", + "event": { + "#text": "link-status use-global", + "link-status": { + "#text": "use-global", + "use-global": { + "#standalone": true + } + } + } + }, + "snmp": { + "#text": "trap link-status", + "trap": { + "#text": "link-status", + "link-status": { + "#standalone": true + } + } + }, + "ip": { + "#text": "address 10.0.2.15/24", + "address": { + "#text": "10.0.2.15/24", + "10.0.2.15/24": { + "#standalone": true + } + } + }, + "bfd": { + "#text": "interval 300 min_rx 300 multiplier 3", + "interval": { + "#text": "300 min_rx 300 multiplier 3", + "300": { + "#text": "min_rx 300 multiplier 3", + "min_rx": { + "#text": "300 multiplier 3", + "300": { + "#text": "multiplier 3", + "multiplier": { + "#text": "3", + "3": { + "#standalone": true + } + } + } + } + } + } + }, + "ipv6": { + "#text": "nd ra hop-limit 64", + "nd": { + "#text": "ra hop-limit 64", + "ra": { + "#text": "hop-limit 64", + "suppress": { + "#text": "all", + "all": { + "#standalone": true + } + }, + "interval": { + "#text": "msec 200000", + "msec": { + "#text": "200000", + "200000": { + "#standalone": true + } + } + }, + "lifetime": { + "#text": "1800", + "1800": { + "#standalone": true + } + }, + "dns-servers": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "dns-suffixes": { + "#text": "lifetime 300", + "lifetime": { + "#text": "300", + "300": { + "#standalone": true + } + } + }, + "hop-limit": { + "#text": "64", + "64": { + "#standalone": true + } + } + }, + "reachable-time": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "router-preference": { + "#text": "medium", + "medium": { + "#standalone": true + } + } + } + }, + "lldp": { + "#text": "receive", + "transmit": { + "#standalone": true + }, + "receive": { + "#standalone": true + } + }, + "#standalone": true + } + }, + "mac": { + "#text": "address-table notification host-flap detection window 15", + "address-table": { + "#text": "notification host-flap detection window 15", + "aging-time": { + "#text": "300", + "300": { + "#standalone": true + } + }, + "notification": { + "#text": "host-flap detection window 15", + "host-flap": { + "#text": "detection window 15", + "logging": { + "#standalone": true + }, + "detection": { + "#text": "window 15", + "window": { + "#text": "15", + "15": { + "#standalone": true + } + } + } + } + } + } + }, + "monitor": { + "#text": "reachability", + "hadoop": { + "#list": [], + "#text": "shutdown", + "shutdown": { + "#standalone": true + }, + "#standalone": true + }, + "loop-protection": { + "#list": [ + { + "rate-limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + { + "transmit-interval": { + "#text": "5", + "5": { + "#standalone": true + } + } + }, + { + "disabled-time": { + "#text": "604800", + "604800": { + "#standalone": true + } + } + } + ], + "#text": "disabled-time 604800", + "rate-limit": { + "#text": "1000", + "1000": { + "#standalone": true + } + }, + "transmit-interval": { + "#text": "5", + "5": { + "#standalone": true + } + }, + "disabled-time": { + "#text": "604800", + "604800": { + "#standalone": true + } + }, + "#standalone": true + }, + "reachability": { + "#list": [ + { + "probe": { + "#text": "checkpoint-interval 60", + "receiver": { + "#text": "max-streams 50000", + "max-streams": { + "#text": "50000", + "50000": { + "#standalone": true + } + } + }, + "checkpoint-interval": { + "#text": "60", + "60": { + "#standalone": true + } + } + } + }, + { + "probe": { + "#text": "checkpoint-interval 60", + "receiver": { + "#text": "max-streams 50000", + "max-streams": { + "#text": "50000", + "50000": { + "#standalone": true + } + } + }, + "checkpoint-interval": { + "#text": "60", + "60": { + "#standalone": true + } + } + } + }, + { + "destination": { + "#text": "port 49152", + "port": { + "#text": "49152", + "49152": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "preserve-streams", + "ignore-checksum": { + "#standalone": true + }, + "preserve-streams": { + "#standalone": true + } + } + }, + { + "default": { + "#text": "preserve-streams", + "ignore-checksum": { + "#standalone": true + }, + "preserve-streams": { + "#standalone": true + } + } + } + ], + "#text": "default preserve-streams", + "shutdown": { + "#standalone": true + }, + "probe": { + "#text": "checkpoint-interval 60", + "receiver": { + "#text": "max-streams 50000", + "max-streams": { + "#text": "50000", + "50000": { + "#standalone": true + } + } + }, + "checkpoint-interval": { + "#text": "60", + "60": { + "#standalone": true + } + } + }, + "destination": { + "#text": "port 49152", + "port": { + "#text": "49152", + "49152": { + "#standalone": true + } + } + }, + "default": { + "#text": "preserve-streams", + "ignore-checksum": { + "#standalone": true + }, + "preserve-streams": { + "#standalone": true + } + }, + "#standalone": true + } + }, + "ipv6": { + "#text": "icmp redirect", + "icmp": { + "#text": "redirect", + "redirect": { + "#standalone": true + } + } + }, + "control-plane": { + "#list": [ + { + "ip": { + "#text": "access-group default-control-plane-acl vrf devel in", + "access-group": { + "#text": "default-control-plane-acl vrf devel in", + "default-control-plane-acl": { + "#text": "vrf devel in", + "in": { + "#standalone": true + }, + "vrf": { + "#text": "devel in", + "prod": { + "#text": "in", + "in": { + "#standalone": true + } + }, + "devel": { + "#text": "in", + "in": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "access-group default-control-plane-acl vrf devel in", + "access-group": { + "#text": "default-control-plane-acl vrf devel in", + "default-control-plane-acl": { + "#text": "vrf devel in", + "in": { + "#standalone": true + }, + "vrf": { + "#text": "devel in", + "prod": { + "#text": "in", + "in": { + "#standalone": true + } + }, + "devel": { + "#text": "in", + "in": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ip": { + "#text": "access-group default-control-plane-acl vrf devel in", + "access-group": { + "#text": "default-control-plane-acl vrf devel in", + "default-control-plane-acl": { + "#text": "vrf devel in", + "in": { + "#standalone": true + }, + "vrf": { + "#text": "devel in", + "prod": { + "#text": "in", + "in": { + "#standalone": true + } + }, + "devel": { + "#text": "in", + "in": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ipv6": { + "#text": "access-group default-control-plane-acl vrf devel in", + "access-group": { + "#text": "default-control-plane-acl vrf devel in", + "default-control-plane-acl": { + "#text": "vrf devel in", + "in": { + "#standalone": true + }, + "vrf": { + "#text": "devel in", + "prod": { + "#text": "in", + "in": { + "#standalone": true + } + }, + "devel": { + "#text": "in", + "in": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ipv6": { + "#text": "access-group default-control-plane-acl vrf devel in", + "access-group": { + "#text": "default-control-plane-acl vrf devel in", + "default-control-plane-acl": { + "#text": "vrf devel in", + "in": { + "#standalone": true + }, + "vrf": { + "#text": "devel in", + "prod": { + "#text": "in", + "in": { + "#standalone": true + } + }, + "devel": { + "#text": "in", + "in": { + "#standalone": true + } + } + } + } + } + } + }, + { + "ipv6": { + "#text": "access-group default-control-plane-acl vrf devel in", + "access-group": { + "#text": "default-control-plane-acl vrf devel in", + "default-control-plane-acl": { + "#text": "vrf devel in", + "in": { + "#standalone": true + }, + "vrf": { + "#text": "devel in", + "prod": { + "#text": "in", + "in": { + "#standalone": true + } + }, + "devel": { + "#text": "in", + "in": { + "#standalone": true + } + } + } + } + } + } + } + ], + "#text": "ipv6 access-group default-control-plane-acl vrf devel in", + "ip": { + "#text": "access-group default-control-plane-acl vrf devel in", + "access-group": { + "#text": "default-control-plane-acl vrf devel in", + "default-control-plane-acl": { + "#text": "vrf devel in", + "in": { + "#standalone": true + }, + "vrf": { + "#text": "devel in", + "prod": { + "#text": "in", + "in": { + "#standalone": true + } + }, + "devel": { + "#text": "in", + "in": { + "#standalone": true + } + } + } + } + } + }, + "ipv6": { + "#text": "access-group default-control-plane-acl vrf devel in", + "access-group": { + "#text": "default-control-plane-acl vrf devel in", + "default-control-plane-acl": { + "#text": "vrf devel in", + "in": { + "#standalone": true + }, + "vrf": { + "#text": "devel in", + "prod": { + "#text": "in", + "in": { + "#standalone": true + } + }, + "devel": { + "#text": "in", + "in": { + "#standalone": true + } + } + } + } + } + }, + "#standalone": true + }, + "mlag": { + "#text": "configuration", + "configuration": { + "#list": [ + { + "no": { + "#text": "shutdown", + "domain-id": { + "#standalone": true + }, + "local-interface": { + "#standalone": true + }, + "peer-address": { + "#standalone": true + }, + "peer-link": { + "#standalone": true + }, + "reload-delay": { + "#text": "mode", + "non-mlag": { + "#standalone": true + }, + "mode": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "heartbeat-interval": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "domain-id": { + "#standalone": true + }, + "local-interface": { + "#standalone": true + }, + "peer-address": { + "#standalone": true + }, + "peer-link": { + "#standalone": true + }, + "reload-delay": { + "#text": "mode", + "non-mlag": { + "#standalone": true + }, + "mode": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "domain-id": { + "#standalone": true + }, + "local-interface": { + "#standalone": true + }, + "peer-address": { + "#standalone": true + }, + "peer-link": { + "#standalone": true + }, + "reload-delay": { + "#text": "mode", + "non-mlag": { + "#standalone": true + }, + "mode": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "domain-id": { + "#standalone": true + }, + "local-interface": { + "#standalone": true + }, + "peer-address": { + "#standalone": true + }, + "peer-link": { + "#standalone": true + }, + "reload-delay": { + "#text": "mode", + "non-mlag": { + "#standalone": true + }, + "mode": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "reload-delay": { + "#text": "0", + "0": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "domain-id": { + "#standalone": true + }, + "local-interface": { + "#standalone": true + }, + "peer-address": { + "#standalone": true + }, + "peer-link": { + "#standalone": true + }, + "reload-delay": { + "#text": "mode", + "non-mlag": { + "#standalone": true + }, + "mode": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "domain-id": { + "#standalone": true + }, + "local-interface": { + "#standalone": true + }, + "peer-address": { + "#standalone": true + }, + "peer-link": { + "#standalone": true + }, + "reload-delay": { + "#text": "mode", + "non-mlag": { + "#standalone": true + }, + "mode": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "domain-id": { + "#standalone": true + }, + "local-interface": { + "#standalone": true + }, + "peer-address": { + "#standalone": true + }, + "peer-link": { + "#standalone": true + }, + "reload-delay": { + "#text": "mode", + "non-mlag": { + "#standalone": true + }, + "mode": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + } + ], + "#text": "no shutdown", + "no": { + "#text": "shutdown", + "domain-id": { + "#standalone": true + }, + "local-interface": { + "#standalone": true + }, + "peer-address": { + "#standalone": true + }, + "peer-link": { + "#standalone": true + }, + "reload-delay": { + "#text": "mode", + "non-mlag": { + "#standalone": true + }, + "mode": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + }, + "heartbeat-interval": { + "#text": "4000", + "4000": { + "#standalone": true + } + }, + "reload-delay": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "#standalone": true + } + }, + "qos": { + "#text": "map traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4", + "map": { + "#text": "traffic-class 0 1 2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4", + "cos": { + "#text": "0 1 2 3 4 5 6 7 to traffic-class 8", + "0": { + "#text": "1 2 3 4 5 6 7 to traffic-class 8", + "1": { + "#text": "2 3 4 5 6 7 to traffic-class 8", + "2": { + "#text": "3 4 5 6 7 to traffic-class 8", + "3": { + "#text": "4 5 6 7 to traffic-class 8", + "4": { + "#text": "5 6 7 to traffic-class 8", + "5": { + "#text": "6 7 to traffic-class 8", + "6": { + "#text": "7 to traffic-class 8", + "7": { + "#text": "to traffic-class 8", + "to": { + "#text": "traffic-class 8", + "traffic-class": { + "#text": "8", + "8": { + "#standalone": true + } + } + } + } + } + } + } + } + } + } + } + }, + "dscp": { + "#text": "0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "0": { + "#text": "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "1": { + "#text": "2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "2": { + "#text": "3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "3": { + "#text": "4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "4": { + "#text": "5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "5": { + "#text": "6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "6": { + "#text": "7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "7": { + "#text": "8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "8": { + "#text": "9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "9": { + "#text": "10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "10": { + "#text": "11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "11": { + "#text": "12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "12": { + "#text": "13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "13": { + "#text": "14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "14": { + "#text": "15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "15": { + "#text": "16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "16": { + "#text": "17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "17": { + "#text": "18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "18": { + "#text": "19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "19": { + "#text": "20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "20": { + "#text": "21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "21": { + "#text": "22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "22": { + "#text": "23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "23": { + "#text": "24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "24": { + "#text": "25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "25": { + "#text": "26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "26": { + "#text": "27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "27": { + "#text": "28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "28": { + "#text": "29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "29": { + "#text": "30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "30": { + "#text": "31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "31": { + "#text": "32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "32": { + "#text": "33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "33": { + "#text": "34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "34": { + "#text": "35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "35": { + "#text": "36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "36": { + "#text": "37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "37": { + "#text": "38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "38": { + "#text": "39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "39": { + "#text": "40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "40": { + "#text": "41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "41": { + "#text": "42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "42": { + "#text": "43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "43": { + "#text": "44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "44": { + "#text": "45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "45": { + "#text": "46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "46": { + "#text": "47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "47": { + "#text": "48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "48": { + "#text": "49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "49": { + "#text": "50 51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "50": { + "#text": "51 52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "51": { + "#text": "52 53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "52": { + "#text": "53 54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "53": { + "#text": "54 55 56 57 58 59 60 61 62 63 to traffic-class 9", + "54": { + "#text": "55 56 57 58 59 60 61 62 63 to traffic-class 9", + "55": { + "#text": "56 57 58 59 60 61 62 63 to traffic-class 9", + "56": { + "#text": "57 58 59 60 61 62 63 to traffic-class 9", + "57": { + "#text": "58 59 60 61 62 63 to traffic-class 9", + "58": { + "#text": "59 60 61 62 63 to traffic-class 9", + "59": { + "#text": "60 61 62 63 to traffic-class 9", + "60": { + "#text": "61 62 63 to traffic-class 9", + "61": { + "#text": "62 63 to traffic-class 9", + "62": { + "#text": "63 to traffic-class 9", + "63": { + "#text": "to traffic-class 9", + "to": { + "#text": "traffic-class 9", + "traffic-class": { + "#text": "9", + "9": { + "#standalone": true + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "traffic-class": { + "#text": "0 1 2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4", + "0": { + "#text": "1 2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4", + "1": { + "#text": "2 3 4 5 6 7 8 9 10 11 to mc-tx-queue 4", + "2": { + "#text": "3 4 5 6 7 8 9 10 11 to mc-tx-queue 4", + "3": { + "#text": "4 5 6 7 8 9 10 11 to mc-tx-queue 4", + "4": { + "#text": "5 6 7 8 9 10 11 to mc-tx-queue 4", + "5": { + "#text": "6 7 8 9 10 11 to mc-tx-queue 4", + "6": { + "#text": "7 8 9 10 11 to mc-tx-queue 4", + "7": { + "#text": "8 9 10 11 to mc-tx-queue 4", + "8": { + "#text": "9 10 11 to mc-tx-queue 4", + "9": { + "#text": "10 11 to mc-tx-queue 4", + "10": { + "#text": "11 to mc-tx-queue 4", + "11": { + "#text": "to mc-tx-queue 4", + "to": { + "#text": "mc-tx-queue 4", + "cos": { + "#text": "3", + "3": { + "#standalone": true + } + }, + "uc-tx-queue": { + "#text": "4", + "4": { + "#standalone": true + } + }, + "mc-tx-queue": { + "#text": "4", + "4": { + "#standalone": true + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + } + }, + "policy-map": { + "#text": "type control-plane copp-system-policy", + "type": { + "#text": "control-plane copp-system-policy", + "control-plane": { + "#text": "copp-system-policy", + "copp-system-policy": { + "#list": [ + { + "class": { + "#text": "copp-system-default", + "copp-system-bpdu": { + "#list": [ + { + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 5000", + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-arp": { + "#list": [ + { + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 1000", + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-igmp": { + "#list": [ + { + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 4000", + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-default": { + "#list": [ + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + } + ], + "#text": "no bandwidth", + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + }, + "#standalone": true + } + } + }, + { + "class": { + "#text": "copp-system-default", + "copp-system-bpdu": { + "#list": [ + { + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 5000", + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-arp": { + "#list": [ + { + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 1000", + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-igmp": { + "#list": [ + { + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 4000", + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-default": { + "#list": [ + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + } + ], + "#text": "no bandwidth", + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + }, + "#standalone": true + } + } + }, + { + "class": { + "#text": "copp-system-default", + "copp-system-bpdu": { + "#list": [ + { + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 5000", + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-arp": { + "#list": [ + { + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 1000", + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-igmp": { + "#list": [ + { + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 4000", + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-default": { + "#list": [ + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + } + ], + "#text": "no bandwidth", + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + }, + "#standalone": true + } + } + }, + { + "class": { + "#text": "copp-system-default", + "copp-system-bpdu": { + "#list": [ + { + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 5000", + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-arp": { + "#list": [ + { + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 1000", + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-igmp": { + "#list": [ + { + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 4000", + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-default": { + "#list": [ + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + } + ], + "#text": "no bandwidth", + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + }, + "#standalone": true + } + } + } + ], + "#text": "class copp-system-default", + "class": { + "#text": "copp-system-default", + "copp-system-bpdu": { + "#list": [ + { + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 5000", + "shape": { + "#text": "pps 6000", + "pps": { + "#text": "6000", + "6000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-arp": { + "#list": [ + { + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 1000", + "shape": { + "#text": "pps 25000", + "pps": { + "#text": "25000", + "25000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 1000", + "pps": { + "#text": "1000", + "1000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-igmp": { + "#list": [ + { + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + } + }, + { + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + } + } + ], + "#text": "bandwidth pps 4000", + "shape": { + "#text": "pps 5000", + "pps": { + "#text": "5000", + "5000": { + "#standalone": true + } + } + }, + "bandwidth": { + "#text": "pps 4000", + "pps": { + "#text": "4000", + "4000": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "copp-system-default": { + "#list": [ + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + } + } + ], + "#text": "no bandwidth", + "no": { + "#text": "bandwidth", + "shape": { + "#standalone": true + }, + "bandwidth": { + "#standalone": true + } + }, + "#standalone": true + } + }, + "#standalone": true + } + } + } + }, + "system": { + "#text": "coredump compressed", + "coredump": { + "#text": "compressed", + "compressed": { + "#standalone": true + } + } + }, + "management": { + "#text": "xmpp", + "api": { + "#text": "http-commands", + "http-commands": { + "#list": [ + { + "protocol": { + "#text": "https mac hmac-sha1", + "https": { + "#text": "mac hmac-sha1", + "port": { + "#text": "443", + "443": { + "#standalone": true + } + }, + "cipher": { + "#text": "aes256-cbc aes128-cbc", + "aes256-cbc": { + "#text": "aes128-cbc", + "aes128-cbc": { + "#standalone": true + } + } + }, + "key-exchange": { + "#text": "rsa diffie-hellman-ephemeral-rsa", + "rsa": { + "#text": "diffie-hellman-ephemeral-rsa", + "diffie-hellman-ephemeral-rsa": { + "#standalone": true + } + } + }, + "mac": { + "#text": "hmac-sha1", + "hmac-sha1": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shutdown", + "protocol": { + "#text": "https ssl profile", + "http": { + "#text": "localhost port 8080", + "port": { + "#text": "80", + "80": { + "#standalone": true + } + }, + "localhost": { + "#text": "port 8080", + "port": { + "#text": "8080", + "8080": { + "#standalone": true + } + } + } + }, + "unix-socket": { + "#standalone": true + }, + "https": { + "#text": "ssl profile", + "certificate": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + "cors": { + "#text": "allowed-origin", + "allowed-origin": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "protocol": { + "#text": "https ssl profile", + "http": { + "#text": "localhost port 8080", + "port": { + "#text": "80", + "80": { + "#standalone": true + } + }, + "localhost": { + "#text": "port 8080", + "port": { + "#text": "8080", + "8080": { + "#standalone": true + } + } + } + }, + "unix-socket": { + "#standalone": true + }, + "https": { + "#text": "ssl profile", + "certificate": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + "cors": { + "#text": "allowed-origin", + "allowed-origin": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "protocol": { + "#text": "https ssl profile", + "http": { + "#text": "localhost port 8080", + "port": { + "#text": "80", + "80": { + "#standalone": true + } + }, + "localhost": { + "#text": "port 8080", + "port": { + "#text": "8080", + "8080": { + "#standalone": true + } + } + } + }, + "unix-socket": { + "#standalone": true + }, + "https": { + "#text": "ssl profile", + "certificate": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + "cors": { + "#text": "allowed-origin", + "allowed-origin": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "protocol": { + "#text": "https ssl profile", + "http": { + "#text": "localhost port 8080", + "port": { + "#text": "80", + "80": { + "#standalone": true + } + }, + "localhost": { + "#text": "port 8080", + "port": { + "#text": "8080", + "8080": { + "#standalone": true + } + } + } + }, + "unix-socket": { + "#standalone": true + }, + "https": { + "#text": "ssl profile", + "certificate": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + "cors": { + "#text": "allowed-origin", + "allowed-origin": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "protocol": { + "#text": "https ssl profile", + "http": { + "#text": "localhost port 8080", + "port": { + "#text": "80", + "80": { + "#standalone": true + } + }, + "localhost": { + "#text": "port 8080", + "port": { + "#text": "8080", + "8080": { + "#standalone": true + } + } + } + }, + "unix-socket": { + "#standalone": true + }, + "https": { + "#text": "ssl profile", + "certificate": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + "cors": { + "#text": "allowed-origin", + "allowed-origin": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "protocol": { + "#text": "https ssl profile", + "http": { + "#text": "localhost port 8080", + "port": { + "#text": "80", + "80": { + "#standalone": true + } + }, + "localhost": { + "#text": "port 8080", + "port": { + "#text": "8080", + "8080": { + "#standalone": true + } + } + } + }, + "unix-socket": { + "#standalone": true + }, + "https": { + "#text": "ssl profile", + "certificate": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + "cors": { + "#text": "allowed-origin", + "allowed-origin": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "protocol": { + "#text": "https mac hmac-sha1", + "https": { + "#text": "mac hmac-sha1", + "port": { + "#text": "443", + "443": { + "#standalone": true + } + }, + "cipher": { + "#text": "aes256-cbc aes128-cbc", + "aes256-cbc": { + "#text": "aes128-cbc", + "aes128-cbc": { + "#standalone": true + } + } + }, + "key-exchange": { + "#text": "rsa diffie-hellman-ephemeral-rsa", + "rsa": { + "#text": "diffie-hellman-ephemeral-rsa", + "diffie-hellman-ephemeral-rsa": { + "#standalone": true + } + } + }, + "mac": { + "#text": "hmac-sha1", + "hmac-sha1": { + "#standalone": true + } + } + } + } + }, + { + "protocol": { + "#text": "https mac hmac-sha1", + "https": { + "#text": "mac hmac-sha1", + "port": { + "#text": "443", + "443": { + "#standalone": true + } + }, + "cipher": { + "#text": "aes256-cbc aes128-cbc", + "aes256-cbc": { + "#text": "aes128-cbc", + "aes128-cbc": { + "#standalone": true + } + } + }, + "key-exchange": { + "#text": "rsa diffie-hellman-ephemeral-rsa", + "rsa": { + "#text": "diffie-hellman-ephemeral-rsa", + "diffie-hellman-ephemeral-rsa": { + "#standalone": true + } + } + }, + "mac": { + "#text": "hmac-sha1", + "hmac-sha1": { + "#standalone": true + } + } + } + } + }, + { + "protocol": { + "#text": "https mac hmac-sha1", + "https": { + "#text": "mac hmac-sha1", + "port": { + "#text": "443", + "443": { + "#standalone": true + } + }, + "cipher": { + "#text": "aes256-cbc aes128-cbc", + "aes256-cbc": { + "#text": "aes128-cbc", + "aes128-cbc": { + "#standalone": true + } + } + }, + "key-exchange": { + "#text": "rsa diffie-hellman-ephemeral-rsa", + "rsa": { + "#text": "diffie-hellman-ephemeral-rsa", + "diffie-hellman-ephemeral-rsa": { + "#standalone": true + } + } + }, + "mac": { + "#text": "hmac-sha1", + "hmac-sha1": { + "#standalone": true + } + } + } + } + }, + { + "qos": { + "#text": "dscp 0", + "dscp": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "shutdown", + "protocol": { + "#text": "https ssl profile", + "http": { + "#text": "localhost port 8080", + "port": { + "#text": "80", + "80": { + "#standalone": true + } + }, + "localhost": { + "#text": "port 8080", + "port": { + "#text": "8080", + "8080": { + "#standalone": true + } + } + } + }, + "unix-socket": { + "#standalone": true + }, + "https": { + "#text": "ssl profile", + "certificate": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + "cors": { + "#text": "allowed-origin", + "allowed-origin": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "vrf": { + "#text": "default", + "default": { + "#list": [ + { + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + } + ], + "#text": "no shutdown", + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + }, + "#standalone": true + } + } + } + ], + "#text": "vrf default", + "protocol": { + "#text": "https mac hmac-sha1", + "https": { + "#text": "mac hmac-sha1", + "port": { + "#text": "443", + "443": { + "#standalone": true + } + }, + "cipher": { + "#text": "aes256-cbc aes128-cbc", + "aes256-cbc": { + "#text": "aes128-cbc", + "aes128-cbc": { + "#standalone": true + } + } + }, + "key-exchange": { + "#text": "rsa diffie-hellman-ephemeral-rsa", + "rsa": { + "#text": "diffie-hellman-ephemeral-rsa", + "diffie-hellman-ephemeral-rsa": { + "#standalone": true + } + } + }, + "mac": { + "#text": "hmac-sha1", + "hmac-sha1": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "shutdown", + "protocol": { + "#text": "https ssl profile", + "http": { + "#text": "localhost port 8080", + "port": { + "#text": "80", + "80": { + "#standalone": true + } + }, + "localhost": { + "#text": "port 8080", + "port": { + "#text": "8080", + "8080": { + "#standalone": true + } + } + } + }, + "unix-socket": { + "#standalone": true + }, + "https": { + "#text": "ssl profile", + "certificate": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + "cors": { + "#text": "allowed-origin", + "allowed-origin": { + "#standalone": true + } + }, + "shutdown": { + "#standalone": true + } + }, + "qos": { + "#text": "dscp 0", + "dscp": { + "#text": "0", + "0": { + "#standalone": true + } + } + }, + "vrf": { + "#text": "default", + "default": { + "#list": [ + { + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + } + ], + "#text": "no shutdown", + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + }, + "#standalone": true + } + }, + "#standalone": true + } + }, + "cim-provider": { + "#list": [ + { + "http": { + "#text": "7778", + "7778": { + "#standalone": true + } + } + }, + { + "https": { + "#text": "7779", + "7779": { + "#standalone": true + } + } + }, + { + "idle-timeout": { + "#text": "90", + "90": { + "#standalone": true + } + } + }, + { + "default": { + "#text": "ssl key", + "live-time": { + "#standalone": true + }, + "trace": { + "#standalone": true + }, + "ssl": { + "#text": "key", + "certificate": { + "#standalone": true + }, + "key": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "ssl key", + "live-time": { + "#standalone": true + }, + "trace": { + "#standalone": true + }, + "ssl": { + "#text": "key", + "certificate": { + "#standalone": true + }, + "key": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "ssl key", + "live-time": { + "#standalone": true + }, + "trace": { + "#standalone": true + }, + "ssl": { + "#text": "key", + "certificate": { + "#standalone": true + }, + "key": { + "#standalone": true + } + } + } + }, + { + "default": { + "#text": "ssl key", + "live-time": { + "#standalone": true + }, + "trace": { + "#standalone": true + }, + "ssl": { + "#text": "key", + "certificate": { + "#standalone": true + }, + "key": { + "#standalone": true + } + } + } + } + ], + "#text": "default ssl key", + "shutdown": { + "#standalone": true + }, + "http": { + "#text": "7778", + "7778": { + "#standalone": true + } + }, + "https": { + "#text": "7779", + "7779": { + "#standalone": true + } + }, + "idle-timeout": { + "#text": "90", + "90": { + "#standalone": true + } + }, + "default": { + "#text": "ssl key", + "live-time": { + "#standalone": true + }, + "trace": { + "#standalone": true + }, + "ssl": { + "#text": "key", + "certificate": { + "#standalone": true + }, + "key": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "console": { + "#list": [ + { + "idle-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + ], + "#text": "idle-timeout 0", + "idle-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "#standalone": true + }, + "cvx": { + "#list": [ + { + "no": { + "#text": "ssl profile", + "server": { + "#text": "port", + "host": { + "#standalone": true + }, + "port": { + "#standalone": true + } + }, + "source-interface": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ssl profile", + "server": { + "#text": "port", + "host": { + "#standalone": true + }, + "port": { + "#standalone": true + } + }, + "source-interface": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + { + "no": { + "#text": "ssl profile", + "server": { + "#text": "port", + "host": { + "#standalone": true + }, + "port": { + "#standalone": true + } + }, + "source-interface": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + { + "heartbeat-interval": { + "#text": "20", + "20": { + "#standalone": true + } + } + }, + { + "heartbeat-timeout": { + "#text": "60", + "60": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "ssl profile", + "server": { + "#text": "port", + "host": { + "#standalone": true + }, + "port": { + "#standalone": true + } + }, + "source-interface": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + } + }, + { + "service": { + "#text": "debug", + "debug": { + "#list": [ + { + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + }, + { + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + ], + "#text": "interval 1", + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + }, + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + }, + "#standalone": true + } + } + } + ], + "#text": "service debug", + "shutdown": { + "#standalone": true + }, + "no": { + "#text": "ssl profile", + "server": { + "#text": "port", + "host": { + "#standalone": true + }, + "port": { + "#standalone": true + } + }, + "source-interface": { + "#standalone": true + }, + "ssl": { + "#text": "profile", + "profile": { + "#standalone": true + } + } + }, + "heartbeat-interval": { + "#text": "20", + "20": { + "#standalone": true + } + }, + "heartbeat-timeout": { + "#text": "60", + "60": { + "#standalone": true + } + }, + "service": { + "#text": "debug", + "debug": { + "#list": [ + { + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + } + }, + { + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + ], + "#text": "interval 1", + "no": { + "#text": "shutdown", + "shutdown": { + "#standalone": true + } + }, + "interval": { + "#text": "1", + "1": { + "#standalone": true + } + }, + "#standalone": true + } + }, + "#standalone": true + }, + "defaults": { + "#list": [ + { + "secret": { + "#text": "hash md5", + "hash": { + "#text": "md5", + "md5": { + "#standalone": true + } + } + } + } + ], + "#text": "secret hash md5", + "secret": { + "#text": "hash md5", + "hash": { + "#text": "md5", + "md5": { + "#standalone": true + } + } + }, + "#standalone": true + }, + "security": { + "#list": [ + { + "no": { + "#text": "password minimum length", + "entropy": { + "#text": "source hardware", + "source": { + "#text": "hardware", + "hardware": { + "#standalone": true + } + } + }, + "password": { + "#text": "minimum length", + "minimum": { + "#text": "length", + "length": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "password minimum length", + "entropy": { + "#text": "source hardware", + "source": { + "#text": "hardware", + "hardware": { + "#standalone": true + } + } + }, + "password": { + "#text": "minimum length", + "minimum": { + "#text": "length", + "length": { + "#standalone": true + } + } + } + } + } + ], + "#text": "no password minimum length", + "no": { + "#text": "password minimum length", + "entropy": { + "#text": "source hardware", + "source": { + "#text": "hardware", + "hardware": { + "#standalone": true + } + } + }, + "password": { + "#text": "minimum length", + "minimum": { + "#text": "length", + "length": { + "#standalone": true + } + } + } + }, + "#standalone": true + }, + "ssh": { + "#list": [ + { + "idle-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + } + }, + { + "authentication": { + "#text": "mode keyboard-interactive", + "mode": { + "#text": "keyboard-interactive", + "keyboard-interactive": { + "#standalone": true + } + } + } + }, + { + "server-port": { + "#text": "22", + "22": { + "#standalone": true + } + } + }, + { + "hostkey": { + "#text": "server rsa dsa", + "server": { + "#text": "rsa dsa", + "rsa": { + "#text": "dsa", + "dsa": { + "#standalone": true + } + } + } + } + }, + { + "no": { + "#text": "shutdown", + "fips": { + "#text": "restrictions", + "restrictions": { + "#standalone": true + } + }, + "hostkey": { + "#text": "client strict-checking", + "client": { + "#text": "strict-checking", + "strict-checking": { + "#standalone": true + } + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "fips": { + "#text": "restrictions", + "restrictions": { + "#standalone": true + } + }, + "hostkey": { + "#text": "client strict-checking", + "client": { + "#text": "strict-checking", + "strict-checking": { + "#standalone": true + } + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "no": { + "#text": "shutdown", + "fips": { + "#text": "restrictions", + "restrictions": { + "#standalone": true + } + }, + "hostkey": { + "#text": "client strict-checking", + "client": { + "#text": "strict-checking", + "strict-checking": { + "#standalone": true + } + } + }, + "shutdown": { + "#standalone": true + } + } + }, + { + "login": { + "#text": "timeout 120", + "timeout": { + "#text": "120", + "120": { + "#standalone": true + } + } + } + }, + { + "log-level": { + "#text": "info", + "info": { + "#standalone": true + } + } + } + ], + "#text": "log-level info", + "idle-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "authentication": { + "#text": "mode keyboard-interactive", + "mode": { + "#text": "keyboard-interactive", + "keyboard-interactive": { + "#standalone": true + } + } + }, + "server-port": { + "#text": "22", + "22": { + "#standalone": true + } + }, + "hostkey": { + "#text": "server rsa dsa", + "server": { + "#text": "rsa dsa", + "rsa": { + "#text": "dsa", + "dsa": { + "#standalone": true + } + } + } + }, + "no": { + "#text": "shutdown", + "fips": { + "#text": "restrictions", + "restrictions": { + "#standalone": true + } + }, + "hostkey": { + "#text": "client strict-checking", + "client": { + "#text": "strict-checking", + "strict-checking": { + "#standalone": true + } + } + }, + "shutdown": { + "#standalone": true + } + }, + "login": { + "#text": "timeout 120", + "timeout": { + "#text": "120", + "120": { + "#standalone": true + } + } + }, + "log-level": { + "#text": "info", + "info": { + "#standalone": true + } + }, + "#standalone": true + }, + "telnet": { + "#list": [ + { + "idle-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + } + } + ], + "#text": "idle-timeout 0", + "shutdown": { + "#standalone": true + }, + "idle-timeout": { + "#text": "0", + "0": { + "#standalone": true + } + }, + "#standalone": true + }, + "xmpp": { + "#list": [ + { + "vrf": { + "#text": "default", + "default": { + "#standalone": true + } + } + }, + { + "session": { + "#text": "privilege 1", + "privilege": { + "#text": "1", + "1": { + "#standalone": true + } + } + } + } + ], + "#text": "session privilege 1", + "shutdown": { + "#standalone": true + }, + "vrf": { + "#text": "default", + "default": { + "#standalone": true + } + }, + "session": { + "#text": "privilege 1", + "privilege": { + "#text": "1", + "1": { + "#standalone": true + } + } + }, + "#standalone": true + } + }, + "end": { + "#standalone": true + }, + "": { + "#standalone": true + } + } +] \ No newline at end of file