From d1c3aca4990504ded67e405736c6d8f4776e0b4f Mon Sep 17 00:00:00 2001 From: Gary Snider <75227981+gsnider2195@users.noreply.github.com> Date: Fri, 6 Sep 2024 08:39:34 -0700 Subject: [PATCH 1/9] Update ssot to v3.0 (#235) --- .github/workflows/ci.yml | 12 +- changes/235.dependencies | 2 + development/Dockerfile | 31 +- docs/requirements.txt | 9 +- .../adapters/sync_devices_adapters.py | 20 +- .../adapters/sync_network_data_adapters.py | 46 +- .../diffsync/models/sync_devices_models.py | 128 +- .../models/sync_network_data_models.py | 162 +- .../fixtures/sync_network_data_fixture.py | 2 +- nautobot_device_onboarding/tests/test_jobs.py | 2 +- poetry.lock | 2197 ++++++++++------- pyproject.toml | 11 +- tasks.py | 44 +- 13 files changed, 1495 insertions(+), 1171 deletions(-) create mode 100644 changes/235.dependencies diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4848f39e..c7de623a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ on: # yamllint disable-line rule:truthy rule:comments pull_request: ~ env: - APP_NAME: "nautobot-app-device-onboarding" + APP_NAME: "nautobot-device-onboarding" jobs: ruff-format: @@ -91,6 +91,10 @@ jobs: uses: "actions/checkout@v4" - name: "Setup environment" uses: "networktocode/gh-action-setup-poetry-environment@v6" + - name: "Constrain Nautobot version and regenerate lock file" + env: + INVOKE_NAUTOBOT_DEVICE_ONBOARDING_LOCAL: "true" + run: "poetry run invoke lock --constrain-nautobot-ver --constrain-python-ver" - name: "Set up Docker Buildx" id: "buildx" uses: "docker/setup-buildx-action@v3" @@ -108,6 +112,7 @@ jobs: build-args: | NAUTOBOT_VER=${{ matrix.nautobot-version }} PYTHON_VER=${{ matrix.python-version }} + CI=true - name: "Copy credentials" run: "cp development/creds.example.env development/creds.env" - name: "Linting: pylint" @@ -141,6 +146,10 @@ jobs: uses: "actions/checkout@v4" - name: "Setup environment" uses: "networktocode/gh-action-setup-poetry-environment@v6" + - name: "Constrain Nautobot version and regenerate lock file" + env: + INVOKE_NAUTOBOT_DEVICE_ONBOARDING_LOCAL: "true" + run: "poetry run invoke lock --constrain-nautobot-ver --constrain-python-ver" - name: "Set up Docker Buildx" id: "buildx" uses: "docker/setup-buildx-action@v3" @@ -158,6 +167,7 @@ jobs: build-args: | NAUTOBOT_VER=${{ matrix.nautobot-version }} PYTHON_VER=${{ matrix.python-version }} + CI=true - name: "Copy credentials" run: "cp development/creds.example.env development/creds.env" - name: "Use Mysql invoke settings when needed" diff --git a/changes/235.dependencies b/changes/235.dependencies new file mode 100644 index 00000000..ad3734a3 --- /dev/null +++ b/changes/235.dependencies @@ -0,0 +1,2 @@ +Updated Nautobot App SSoT to v3.0.0. +Pinned griffe to v1.1.1. diff --git a/development/Dockerfile b/development/Dockerfile index 0d2083f7..157b88f0 100644 --- a/development/Dockerfile +++ b/development/Dockerfile @@ -53,29 +53,18 @@ RUN which poetry || curl -sSL https://install.python-poetry.org | python3 - && \ WORKDIR /source COPY . /source -# Get container's installed Nautobot version as a forced constraint -# NAUTOBOT_VER may be a branch name and not a published release therefor we need to get the installed version -# so pip can use it to recognize local constraints. -RUN pip show nautobot | grep "^Version: " | sed -e 's/Version: /nautobot==/' > constraints.txt +# Build args must be declared in each stage +ARG PYTHON_VER -# Use Poetry to grab dev dependencies from the lock file -# Can be improved in Poetry 1.2 which allows `poetry install --only dev` -# -# We can't use the entire freeze as it takes forever to resolve with rigidly fixed non-direct dependencies, -# especially those that are only direct to Nautobot but the container included versions slightly mismatch -RUN poetry export -f requirements.txt --without-hashes --extras all --output poetry_freeze_base.txt -RUN poetry export -f requirements.txt --without-hashes --extras all --with dev --output poetry_freeze_all.txt -RUN sort poetry_freeze_base.txt poetry_freeze_all.txt | uniq -u > poetry_freeze_dev.txt - -# Install all local project as editable, constrained on Nautobot version, to get any additional -# direct dependencies of the app -RUN --mount=type=cache,target="/root/.cache/pip",sharing=locked \ - pip install -c constraints.txt -e .[all] +# Constrain the Nautobot version to NAUTOBOT_VER +# In CI, this should be done outside of the Dockerfile to prevent cross-compile build failures +ARG CI +RUN if [ -z "${CI+x}" ]; then \ + INSTALLED_NAUTOBOT_VER=$(pip show nautobot | grep "^Version" | sed "s/Version: //"); \ + poetry add --lock nautobot@${INSTALLED_NAUTOBOT_VER} --python ${PYTHON_VER}; fi -# Install any dev dependencies frozen from Poetry -# Can be improved in Poetry 1.2 which allows `poetry install --only dev` -RUN --mount=type=cache,target="/root/.cache/pip",sharing=locked \ - pip install -c constraints.txt -r poetry_freeze_dev.txt +# Install the app +RUN poetry install --extras all --with dev COPY development/nautobot_config.py ${NAUTOBOT_ROOT}/nautobot_config.py # !!! USE CAUTION WHEN MODIFYING LINES ABOVE diff --git a/docs/requirements.txt b/docs/requirements.txt index 1d89ad0d..bf10c13b 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,5 +1,6 @@ -mkdocs==1.5.2 -mkdocs-material==9.1.15 +mkdocs==1.6.0 +mkdocs-material==9.5.32 markdown-version-annotations==1.0.1 -mkdocstrings-python==1.5.2 -mkdocstrings==0.22.0 +griffe==1.1.1 +mkdocstrings-python==1.10.8 +mkdocstrings==0.25.2 diff --git a/nautobot_device_onboarding/diffsync/adapters/sync_devices_adapters.py b/nautobot_device_onboarding/diffsync/adapters/sync_devices_adapters.py index 9662aee2..16d3fb4a 100644 --- a/nautobot_device_onboarding/diffsync/adapters/sync_devices_adapters.py +++ b/nautobot_device_onboarding/diffsync/adapters/sync_devices_adapters.py @@ -17,7 +17,7 @@ ParameterSet = FrozenSet[Tuple[str, Hashable]] -class SyncDevicesNautobotAdapter(diffsync.DiffSync): +class SyncDevicesNautobotAdapter(diffsync.Adapter): """Adapter for loading Nautobot data.""" manufacturer = sync_devices_models.SyncDevicesManufacturer @@ -62,7 +62,7 @@ def load_manufacturers(self): for manufacturer in Manufacturer.objects.all(): if self.job.debug: self.job.logger.debug("Loading Manufacturer data from Nautobot...") - onboarding_manufacturer = self.manufacturer(diffsync=self, pk=manufacturer.pk, name=manufacturer.name) + onboarding_manufacturer = self.manufacturer(adapter=self, pk=manufacturer.pk, name=manufacturer.name) self.add(onboarding_manufacturer) if self.job.debug: self.job.logger.debug(f"Manufacturer: {manufacturer.name} loaded.") @@ -73,7 +73,7 @@ def load_platforms(self): self.job.logger.debug("Loading Platform data from Nautobot...") for platform in Platform.objects.all(): onboarding_platform = self.platform( - diffsync=self, + adapter=self, pk=platform.pk, name=platform.name, network_driver=platform.network_driver if platform.network_driver else "", @@ -89,7 +89,7 @@ def load_device_types(self): self.job.logger.debug("Loading DeviceType data from Nautobot...") for device_type in DeviceType.objects.all(): onboarding_device_type = self.device_type( - diffsync=self, + adapter=self, pk=device_type.pk, model=device_type.model, part_number=device_type.part_number, @@ -118,7 +118,7 @@ def load_devices(self): else: interfaces = [] onboarding_device = self.device( - diffsync=self, + adapter=self, pk=device.pk, device_type__model=device.device_type.model, location__name=device.location.name, @@ -145,7 +145,7 @@ def load(self): self.load_devices() -class SyncDevicesNetworkAdapter(diffsync.DiffSync): +class SyncDevicesNetworkAdapter(diffsync.Adapter): """Adapter for loading device data from a network.""" manufacturer = sync_devices_models.SyncDevicesManufacturer @@ -235,7 +235,7 @@ def load_manufacturers(self): onboarding_manufacturer = None try: onboarding_manufacturer = self.manufacturer( - diffsync=self, + adapter=self, name=self.device_data[ip_address]["manufacturer"], ) except KeyError as err: @@ -256,7 +256,7 @@ def load_platforms(self): onboarding_platform = None try: onboarding_platform = self.platform( - diffsync=self, + adapter=self, name=self.device_data[ip_address]["platform"], manufacturer__name=self.device_data[ip_address]["manufacturer"], network_driver=self.device_data[ip_address]["network_driver"], @@ -279,7 +279,7 @@ def load_device_types(self): onboarding_device_type = None try: onboarding_device_type = self.device_type( - diffsync=self, + adapter=self, model=self.device_data[ip_address]["device_type"], part_number=self.device_data[ip_address]["device_type"], manufacturer__name=self.device_data[ip_address]["manufacturer"], @@ -334,7 +334,7 @@ def load_devices(self): ) onboarding_device = self.device( - diffsync=self, + adapter=self, device_type__model=self.device_data[ip_address]["device_type"], location__name=location.name, name=self.device_data[ip_address]["hostname"], diff --git a/nautobot_device_onboarding/diffsync/adapters/sync_network_data_adapters.py b/nautobot_device_onboarding/diffsync/adapters/sync_network_data_adapters.py index 3fd236a8..04511c27 100644 --- a/nautobot_device_onboarding/diffsync/adapters/sync_network_data_adapters.py +++ b/nautobot_device_onboarding/diffsync/adapters/sync_network_data_adapters.py @@ -29,7 +29,7 @@ class FilteredNautobotAdapter(NautobotAdapter): def _load_objects(self, diffsync_model): # pylint: disable=protected-access """Given a diffsync model class, load a list of models from the database and return them.""" parameter_names = self._get_parameter_names(diffsync_model) - for database_object in diffsync_model._get_queryset(diffsync=self): # pylint: disable=protected-access + for database_object in diffsync_model._get_queryset(adapter=self): # pylint: disable=protected-access self._load_single_object(database_object, diffsync_model, parameter_names) @@ -99,7 +99,7 @@ def load_ip_addresses(self): parent__namespace__name=self.job.namespace.name, ): network_ip_address = self.ip_address( - diffsync=self, + adapter=self, host=ip_address.host, mask_length=ip_address.mask_length, type=ip_address.type, @@ -123,7 +123,7 @@ def load_vlans(self): """ for vlan in VLAN.objects.all(): network_vlan = self.vlan( - diffsync=self, + adapter=self, name=vlan.name, vid=vlan.vid, location__name=vlan.location.name if vlan.location else "", @@ -149,7 +149,7 @@ def load_tagged_vlans_to_interface(self): tagged_vlans.append(vlan_dict) network_tagged_vlans_to_interface = self.tagged_vlans_to_interface( - diffsync=self, + adapter=self, device__name=interface.device.name, name=interface.name, tagged_vlans=tagged_vlans, @@ -170,7 +170,7 @@ def load_untagged_vlan_to_interface(self): untagged_vlan["id"] = str(interface.untagged_vlan.vid) network_untagged_vlan_to_interface = self.untagged_vlan_to_interface( - diffsync=self, + adapter=self, device__name=interface.device.name, name=interface.name, untagged_vlan=untagged_vlan, @@ -186,7 +186,7 @@ def load_lag_to_interface(self): """ for interface in Interface.objects.filter(device__in=self.job.devices_to_load): network_lag_to_interface = self.lag_to_interface( - diffsync=self, + adapter=self, device__name=interface.device.name, name=interface.name, lag__interface__name=interface.lag.name if interface.lag else "", @@ -202,7 +202,7 @@ def load_vrfs(self): """ for vrf in VRF.objects.all(): network_vrf = self.vrf( - diffsync=self, + adapter=self, name=vrf.name, namespace__name=vrf.namespace.name, ) @@ -224,7 +224,7 @@ def load_vrf_to_interface(self): vrf["name"] = interface.vrf.name network_vrf_to_interface = self.vrf_to_interface( - diffsync=self, + adapter=self, device__name=interface.device.name, name=interface.name, vrf=vrf, @@ -258,7 +258,7 @@ def load_cables(self): termination_b_interface = cable.termination_a.name network_cable = self.cable( - diffsync=self, + adapter=self, status__name=cable.status.name, termination_a__app_label="dcim", termination_a__model="interface", @@ -362,7 +362,7 @@ class MacUnixExpandedUppercase(mac_unix_expanded): word_fmt = "%.2X" -class SyncNetworkDataNetworkAdapter(diffsync.DiffSync): +class SyncNetworkDataNetworkAdapter(diffsync.Adapter): """Adapter for loading Network data.""" def __init__(self, *args, job, sync=None, **kwargs): @@ -465,7 +465,7 @@ def load_devices(self): for hostname, device_data in self.job.command_getter_result.items(): try: network_device = self.device( - diffsync=self, + adapter=self, name=hostname, serial=device_data["serial"], last_network_data_sync=datetime.datetime.now().date().isoformat(), @@ -489,7 +489,7 @@ def load_devices(self): def load_interface(self, hostname, interface_name, interface_data): """Load an interface into the DiffSync store.""" network_interface = self.interface( - diffsync=self, + adapter=self, name=interface_name, device__name=hostname, status__name=self.job.interface_status.name, @@ -499,6 +499,8 @@ def load_interface(self, hostname, interface_name, interface_data): description=interface_data["description"], enabled=interface_data["link_status"], mode=interface_data["802.1Q_mode"], + parent_interface__name=None, + lag__name=None, # untagged_vlan__name=self._get_vlan_name(interface_data=interface_data), ) self.add(network_interface) @@ -518,7 +520,7 @@ def load_ip_addresses(self): self.job.logger.debug(f"Loading {ip_address} from {interface_name} on {hostname}") try: network_ip_address = self.ip_address( - diffsync=self, + adapter=self, host=ip_address["ip_address"], mask_length=int(ip_address["prefix_length"]), type="host", @@ -553,7 +555,7 @@ def load_vlans(self): for tagged_vlan in interface_data["tagged_vlans"]: try: network_vlan = self.vlan( - diffsync=self, + adapter=self, name=tagged_vlan["name"], vid=tagged_vlan["id"], location__name=location_names.get(hostname, ""), @@ -570,7 +572,7 @@ def load_vlans(self): if interface_data["untagged_vlan"]: try: network_vlan = self.vlan( - diffsync=self, + adapter=self, name=interface_data["untagged_vlan"]["name"], vid=interface_data["untagged_vlan"]["id"], location__name=location_names.get(hostname, ""), @@ -594,7 +596,7 @@ def load_vrfs(self): if interface_data["vrf"]: try: network_vrf = self.vrf( - diffsync=self, + adapter=self, name=interface_data["vrf"]["name"], namespace__name=self.job.namespace.name, ) @@ -615,7 +617,7 @@ def load_ip_address_to_interfaces(self): if ip_address["ip_address"]: # the ip_address and mask_length may be empty, skip these try: network_ip_address_to_interface = self.ipaddress_to_interface( - diffsync=self, + adapter=self, interface__device__name=hostname, interface__name=interface_name, ip_address__host=ip_address["ip_address"], @@ -637,7 +639,7 @@ def load_tagged_vlans_to_interface(self): for interface_name, interface_data in device_data["interfaces"].items(): try: network_tagged_vlans_to_interface = self.tagged_vlans_to_interface( - diffsync=self, + adapter=self, device__name=hostname, name=interface_name, tagged_vlans=interface_data["tagged_vlans"], @@ -656,7 +658,7 @@ def load_untagged_vlan_to_interface(self): for interface_name, interface_data in device_data["interfaces"].items(): try: network_untagged_vlan_to_interface = self.untagged_vlan_to_interface( - diffsync=self, + adapter=self, device__name=hostname, name=interface_name, untagged_vlan=interface_data["untagged_vlan"], @@ -675,7 +677,7 @@ def load_lag_to_interface(self): for interface_name, interface_data in device_data["interfaces"].items(): try: network_lag_to_interface = self.lag_to_interface( - diffsync=self, + adapter=self, device__name=hostname, name=interface_name, lag__interface__name=interface_data["lag"] if interface_data["lag"] else "", @@ -694,7 +696,7 @@ def load_vrf_to_interface(self): for interface_name, interface_data in device_data["interfaces"].items(): try: network_vrf_to_interface = self.vrf_to_interface( - diffsync=self, + adapter=self, device__name=hostname, name=interface_name, vrf=interface_data["vrf"], @@ -772,7 +774,7 @@ def load_cables(self): # pylint: disable=inconsistent-return-statements termination_b_interface = local_interface network_cable = self.cable( - diffsync=self, + adapter=self, status__name="Connected", # ask for default status in the job form termination_a__app_label="dcim", termination_a__model="interface", diff --git a/nautobot_device_onboarding/diffsync/models/sync_devices_models.py b/nautobot_device_onboarding/diffsync/models/sync_devices_models.py index 96015e64..0f5cc4e6 100644 --- a/nautobot_device_onboarding/diffsync/models/sync_devices_models.py +++ b/nautobot_device_onboarding/diffsync/models/sync_devices_models.py @@ -38,19 +38,19 @@ class SyncDevicesDevice(DiffSyncModel): location__name: str serial: str - device_type__model: Optional[str] - mask_length: Optional[int] - primary_ip4__host: Optional[str] - primary_ip4__status__name: Optional[str] - platform__name: Optional[str] - role__name: Optional[str] - secrets_group__name: Optional[str] - status__name: Optional[str] + device_type__model: Optional[str] = None + mask_length: Optional[int] = None + primary_ip4__host: Optional[str] = None + primary_ip4__status__name: Optional[str] = None + platform__name: Optional[str] = None + role__name: Optional[str] = None + secrets_group__name: Optional[str] = None + status__name: Optional[str] = None - interfaces: Optional[list] + interfaces: Optional[list] = None @classmethod - def _get_or_create_device(cls, diffsync, ids, attrs): + def _get_or_create_device(cls, adapter, ids, attrs): """Attempt to get a Device, create a new one if necessary.""" device = None try: @@ -60,25 +60,25 @@ def _get_or_create_device(cls, diffsync, ids, attrs): # (or doesn't exist) the matching device will be updated or skipped based on user preference. location = diffsync_utils.retrieve_submitted_value( - job=diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="location" + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="location" ) platform = Platform.objects.get(name=attrs["platform__name"]) device = Device.objects.get(name=ids["name"], location=location) update_devices_without_primary_ip = diffsync_utils.retrieve_submitted_value( - job=diffsync.job, + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="update_devices_without_primary_ip", ) if update_devices_without_primary_ip: - diffsync.job.logger.warning( + adapter.job.logger.warning( f"Device {device.name} at location {location.name} already exists in Nautobot " "but the primary ip address either does not exist, or doesn't match an entered ip address. " "This device will be updated. This update may result in multiple IP Address assignments " "to an interface on the device." ) - device = cls._update_device_with_attrs(device, platform, ids, attrs, diffsync) + device = cls._update_device_with_attrs(device, platform, ids, attrs, adapter) else: - diffsync.job.logger.warning( + adapter.job.logger.warning( f"Device {device.name} at location {location.name} already exists in Nautobot " "but the primary ip address either does not exist, or doesn't match an entered ip address. " "IP Address, this device will be skipped." @@ -90,16 +90,16 @@ def _get_or_create_device(cls, diffsync, ids, attrs): device = Device( location=location, status=diffsync_utils.retrieve_submitted_value( - job=diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="device_status" + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="device_status" ), role=diffsync_utils.retrieve_submitted_value( - job=diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="device_role" + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="device_role" ), device_type=DeviceType.objects.get(model=attrs["device_type__model"]), name=ids["name"], platform=platform, secrets_group=diffsync_utils.retrieve_submitted_value( - job=diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="secrets_group" + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="secrets_group" ), serial=ids["serial"], ) @@ -107,7 +107,7 @@ def _get_or_create_device(cls, diffsync, ids, attrs): return device @classmethod - def _get_or_create_interface(cls, diffsync, device, ip_address, interface_name): + def _get_or_create_interface(cls, adapter, device, ip_address, interface_name): """Attempt to get a Device Interface, create a new one if necessary.""" device_interface = None try: @@ -120,21 +120,21 @@ def _get_or_create_interface(cls, diffsync, device, ip_address, interface_name): device_interface = Interface( name=interface_name, mgmt_only=diffsync_utils.retrieve_submitted_value( - job=diffsync.job, ip_address=ip_address, query_string="set_mgmt_only" + job=adapter.job, ip_address=ip_address, query_string="set_mgmt_only" ), status=diffsync_utils.retrieve_submitted_value( - job=diffsync.job, ip_address=ip_address, query_string="interface_status" + job=adapter.job, ip_address=ip_address, query_string="interface_status" ), type=InterfaceTypeChoices.TYPE_OTHER, device=device, ) device_interface.validated_save() except Exception as err: - diffsync.job.logger.error(f"Device Interface could not be created, {err}") + adapter.job.logger.error(f"Device Interface could not be created, {err}") return device_interface @classmethod - def _get_or_create_ip_address_to_interface(cls, diffsync, interface, ip_address): + def _get_or_create_ip_address_to_interface(cls, adapter, interface, ip_address): """Attempt to get a Device Interface, create a new one if necessary.""" interface_assignment = None try: @@ -150,31 +150,31 @@ def _get_or_create_ip_address_to_interface(cls, diffsync, interface, ip_address) ) interface_assignment.validated_save() except Exception as err: - diffsync.job.logger.error(f"{ip_address} failed to assign to assign to interface {err}") + adapter.job.logger.error(f"{ip_address} failed to assign to assign to interface {err}") return interface_assignment @classmethod - def _update_device_with_attrs(cls, device, platform, ids, attrs, diffsync): + def _update_device_with_attrs(cls, device, platform, ids, attrs, adapter): """Update a Nautobot device instance with attrs.""" device.location = diffsync_utils.retrieve_submitted_value( - job=diffsync.job, + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="location", ) device.status = diffsync_utils.retrieve_submitted_value( - job=diffsync.job, + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="device_status", ) device.role = diffsync_utils.retrieve_submitted_value( - job=diffsync.job, + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="device_role", ) device.device_type = DeviceType.objects.get(model=attrs["device_type__model"]) device.platform = platform device.secrets_group = diffsync_utils.retrieve_submitted_value( - job=diffsync.job, + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="secrets_group", ) @@ -194,10 +194,10 @@ def _remove_old_interface_assignment(self, device, ip_address): ip_address=ip_address, ) old_interface_assignment.delete() - if self.diffsync.job.debug: - self.diffsync.job.logger.debug(f"Interface assignment deleted: {old_interface_assignment}") + if self.adapter.job.debug: + self.adapter.job.logger.debug(f"Interface assignment deleted: {old_interface_assignment}") except MultipleObjectsReturned: - self.diffsync.job.logger.warning( + self.adapter.job.logger.warning( f"{ip_address} is assigned to multiple interfaces. The primary IP Address for this " "device will be assigned to an interface but duplicate assignments will remain." ) @@ -205,54 +205,54 @@ def _remove_old_interface_assignment(self, device, ip_address): pass @classmethod - def create(cls, diffsync, ids, attrs): + def create(cls, adapter, ids, attrs): """Create a new nautobot device using data scraped from a device.""" - if diffsync.job.debug: - diffsync.job.logger.debug(f"Creating device {ids} with {attrs}") + if adapter.job.debug: + adapter.job.logger.debug(f"Creating device {ids} with {attrs}") # Get or create Device, Interface and IP Address - device = cls._get_or_create_device(diffsync, ids, attrs) + device = cls._get_or_create_device(adapter, ids, attrs) if device: ip_address = diffsync_utils.get_or_create_ip_address( host=attrs["primary_ip4__host"], mask_length=attrs["mask_length"], namespace=diffsync_utils.retrieve_submitted_value( - job=diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="namespace" + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="namespace" ), default_ip_status=diffsync_utils.retrieve_submitted_value( - job=diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" ), default_prefix_status=diffsync_utils.retrieve_submitted_value( - job=diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" + job=adapter.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" ), - job=diffsync.job, + job=adapter.job, ) interface = cls._get_or_create_interface( - diffsync=diffsync, + adapter=adapter, device=device, ip_address=attrs["primary_ip4__host"], interface_name=attrs["interfaces"][0], ) - cls._get_or_create_ip_address_to_interface(diffsync=diffsync, ip_address=ip_address, interface=interface) + cls._get_or_create_ip_address_to_interface(adapter=adapter, ip_address=ip_address, interface=interface) # Assign primary IP Address to Device device.primary_ip4 = ip_address try: device.validated_save() except ValidationError as err: - diffsync.job.logger.error(f"Failed to create or update Device: {ids['name']}, {err}") + adapter.job.logger.error(f"Failed to create or update Device: {ids['name']}, {err}") raise ValidationError(err) else: - diffsync.job.logger.error(f"Failed create or update Device: {ids['name']}") + adapter.job.logger.error(f"Failed create or update Device: {ids['name']}") - return super().create(diffsync=diffsync, ids=ids, attrs=attrs) + return super().create(adapter=adapter, ids=ids, attrs=attrs) def update(self, attrs): """Update an existing nautobot device using data scraped from a device.""" device = Device.objects.get(name=self.name, location__name=self.location__name) - if self.diffsync.job.debug: - self.diffsync.job.logger.debug(f"Updating {device.name} with attrs: {attrs}") + if self.adapter.job.debug: + self.adapter.job.logger.debug(f"Updating {device.name} with attrs: {attrs}") if attrs.get("device_type__model"): device.device_type = DeviceType.objects.get(model=attrs.get("device_type__model")) if attrs.get("platform__name"): @@ -275,24 +275,24 @@ def update(self, attrs): host=attrs["primary_ip4__host"], mask_length=attrs["mask_length"], namespace=diffsync_utils.retrieve_submitted_value( - job=self.diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="namespace" + job=self.adapter.job, ip_address=attrs["primary_ip4__host"], query_string="namespace" ), default_ip_status=diffsync_utils.retrieve_submitted_value( - job=self.diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" + job=self.adapter.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" ), default_prefix_status=diffsync_utils.retrieve_submitted_value( - job=self.diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" + job=self.adapter.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" ), - job=self.diffsync.job, + job=self.adapter.job, ) new_interface = self._get_or_create_interface( - diffsync=self.diffsync, + adapter=self.adapter, device=device, ip_address=attrs["primary_ip4__host"], interface_name=attrs["interfaces"][0], ) self._get_or_create_ip_address_to_interface( - diffsync=self.diffsync, ip_address=ip_address, interface=new_interface + adapter=self.adapter, ip_address=ip_address, interface=new_interface ) device.primary_ip4 = ip_address # Update the interface only @@ -301,13 +301,13 @@ def update(self, attrs): self._remove_old_interface_assignment(device=device, ip_address=device.primary_ip4) new_interface = self._get_or_create_interface( - diffsync=self.diffsync, + adapter=self.adapter, device=device, ip_address=self.primary_ip4__host, interface_name=attrs["interfaces"][0], ) self._get_or_create_ip_address_to_interface( - diffsync=self.diffsync, ip_address=device.primary_ip4, interface=new_interface + adapter=self.adapter, ip_address=device.primary_ip4, interface=new_interface ) else: # Update the primary ip address only @@ -321,31 +321,31 @@ def update(self, attrs): host=attrs["primary_ip4__host"], mask_length=attrs["mask_length"], namespace=diffsync_utils.retrieve_submitted_value( - job=self.diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="namespace" + job=self.adapter.job, ip_address=attrs["primary_ip4__host"], query_string="namespace" ), default_ip_status=diffsync_utils.retrieve_submitted_value( - job=self.diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" + job=self.adapter.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" ), default_prefix_status=diffsync_utils.retrieve_submitted_value( - job=self.diffsync.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" + job=self.adapter.job, ip_address=attrs["primary_ip4__host"], query_string="ip_address_status" ), - job=self.diffsync.job, + job=self.adapter.job, ) self._remove_old_interface_assignment(device=device, ip_address=device.primary_ip4) existing_interface = self._get_or_create_interface( - diffsync=self.diffsync, + adapter=self.adapter, device=device, ip_address=new_ip_address, interface_name=self.get_attrs()["interfaces"][0], ) self._get_or_create_ip_address_to_interface( - diffsync=self.diffsync, ip_address=new_ip_address, interface=existing_interface + adapter=self.adapter, ip_address=new_ip_address, interface=existing_interface ) device.primary_ip4 = new_ip_address try: device.validated_save() except ValidationError as err: - self.diffsync.job.logger.error(f"Device {device.name} failed to update, {err}") + self.adapter.job.logger.error(f"Device {device.name} failed to update, {err}") return super().update(attrs) @@ -383,5 +383,5 @@ class SyncDevicesPlatform(NautobotModel): name: str - network_driver: Optional[str] - manufacturer__name: Optional[str] + network_driver: Optional[str] = None + manufacturer__name: Optional[str] = None diff --git a/nautobot_device_onboarding/diffsync/models/sync_network_data_models.py b/nautobot_device_onboarding/diffsync/models/sync_network_data_models.py index 4a9948a8..731e2396 100644 --- a/nautobot_device_onboarding/diffsync/models/sync_network_data_models.py +++ b/nautobot_device_onboarding/diffsync/models/sync_network_data_models.py @@ -7,7 +7,7 @@ except ImportError: from typing_extensions import Annotated # Python<3.9 -from diffsync import DiffSync, DiffSyncModel +from diffsync import Adapter, DiffSyncModel from diffsync import exceptions as diffsync_exceptions from django.core.exceptions import MultipleObjectsReturned, ObjectDoesNotExist, ValidationError from nautobot.dcim.choices import InterfaceTypeChoices @@ -27,20 +27,20 @@ class FilteredNautobotModel(NautobotModel): """ @classmethod - def _get_queryset(cls, diffsync: "DiffSync"): + def _get_queryset(cls, adapter: "Adapter"): """Get the queryset used to load the models data from Nautobot.""" parameter_names = list(cls._identifiers) + list(cls._attributes) # Here we identify any foreign keys (i.e. fields with '__' in them) so that we can load them directly in the # first query if this function hasn't been overridden. prefetch_related_parameters = [parameter.split("__")[0] for parameter in parameter_names if "__" in parameter] - qs = cls.get_queryset(diffsync=diffsync) + qs = cls.get_queryset(adapter=adapter) return qs.prefetch_related(*prefetch_related_parameters) @classmethod - def get_queryset(cls, diffsync: "DiffSync"): + def get_queryset(cls, adapter: "Adapter"): """Get the queryset used to load the models data from Nautobot.""" # Replace return with a filtered queryset. - # Access the job form inputs with diffsync ex: diffsync.job.location.name + # Access the job form inputs with adapter ex: adapter.job.location.name return cls._model.objects.all() @@ -61,28 +61,28 @@ class SyncNetworkDataDevice(FilteredNautobotModel): last_network_data_sync: Annotated[ Optional[str], CustomFieldAnnotation(key="last_network_data_sync", name="last_network_data_sync") - ] + ] = None interfaces: List["SyncNetworkDataInterface"] = [] @classmethod - def _get_queryset(cls, diffsync: "DiffSync"): + def _get_queryset(cls, adapter: "Adapter"): """Get the queryset used to load the models data from Nautobot. job.command_getter_result contains the result from the CommandGetter job. Only devices that actually responded with data should be considered for the sync. """ - return diffsync.job.devices_to_load + return adapter.job.devices_to_load @classmethod - def create(cls, diffsync, ids, attrs): + def create(cls, adapter, ids, attrs): """ Do not create new devices. Network devices need to exist in Nautobot prior to syncing data and need to be included in the queryset generated based on job form inputs. """ - diffsync.job.logger.error( + adapter.job.logger.error( f"Network device {ids} is not included in the Nautobot devices " "selected for syncing. This device either does not exist in Nautobot " "or was not included based on filter criteria provided on the job form." @@ -91,7 +91,7 @@ def create(cls, diffsync, ids, attrs): def delete(self): """Prevent device deletion.""" - self.diffsync.job.logger.error(f"{self} will not be deleted.") + self.adapter.job.logger.error(f"{self} will not be deleted.") return None @@ -118,15 +118,15 @@ class SyncNetworkDataInterface(FilteredNautobotModel): device__name: str name: str - status__name: Optional[str] - type: Optional[str] - mac_address: Optional[str] - mtu: Optional[str] - parent_interface__name: Optional[str] - lag__name: Optional[str] - mode: Optional[str] - enabled: Optional[bool] - description: Optional[str] + status__name: Optional[str] = None + type: Optional[str] = None + mac_address: Optional[str] = None + mtu: Optional[str] = None + parent_interface__name: Optional[str] = None + lag__name: Optional[str] = None + mode: Optional[str] = None + enabled: Optional[bool] = None + description: Optional[str] = None class SyncNetworkDataIPAddress(DiffSyncModel): @@ -144,22 +144,22 @@ class SyncNetworkDataIPAddress(DiffSyncModel): status__name: str @classmethod - def create(cls, diffsync, ids, attrs): + def create(cls, adapter, ids, attrs): """Create a new IPAddress object.""" diffsync_utils.get_or_create_ip_address( host=ids["host"], mask_length=attrs["mask_length"], - namespace=diffsync.job.namespace, - default_ip_status=diffsync.job.ip_address_status, - default_prefix_status=diffsync.job.default_prefix_status, - job=diffsync.job, + namespace=adapter.job.namespace, + default_ip_status=adapter.job.ip_address_status, + default_prefix_status=adapter.job.default_prefix_status, + job=adapter.job, ) - return super().create(diffsync, ids, attrs) + return super().create(adapter, ids, attrs) def update(self, attrs): """Update an existing IPAddress object.""" try: - ip_address = IPAddress.objects.get(host=self.host, parent__namespace=self.diffsync.job.namespace) + ip_address = IPAddress.objects.get(host=self.host, parent__namespace=self.adapter.job.namespace) except ObjectDoesNotExist as err: self.job.logger.error(f"{self} failed to update, {err}") if attrs.get("mask_length"): @@ -188,9 +188,9 @@ class SyncNetworkDataIPAddressToInterface(FilteredNautobotModel): ip_address__host: str @classmethod - def _get_queryset(cls, diffsync: "DiffSync"): + def _get_queryset(cls, adapter: "Adapter"): """Get the queryset used to load the models data from Nautobot.""" - return IPAddressToInterface.objects.filter(interface__device__in=diffsync.job.devices_to_load) + return IPAddressToInterface.objects.filter(interface__device__in=adapter.job.devices_to_load) class SyncNetworkDataVLAN(DiffSyncModel): @@ -205,19 +205,19 @@ class SyncNetworkDataVLAN(DiffSyncModel): location__name: str @classmethod - def create(cls, diffsync, ids, attrs): + def create(cls, adapter, ids, attrs): """Create a new VLAN.""" location = None try: location = Location.objects.get(name=ids["location__name"]) except ObjectDoesNotExist: - diffsync.job.logger.warning( + adapter.job.logger.warning( f"While creating VLAN {ids['vid']} - {ids['name']}, " f"unable to find a Location with name: {ids['location__name']}. " "This VLAN will be created without a Location" ) except MultipleObjectsReturned: - diffsync.job.logger.warning( + adapter.job.logger.warning( f"While creating VLAN {ids['vid']} - {ids['name']}, " f"Multiple Locations were found with name: {ids['location__name']}. " "This VLAN will be created without a Location" @@ -231,9 +231,9 @@ def create(cls, diffsync, ids, attrs): ) vlan.validated_save() except ValidationError as err: - diffsync.job.logger.error(f"VLAN {vlan} failed to create, {err}") + adapter.job.logger.error(f"VLAN {vlan} failed to create, {err}") - return super().create(diffsync, ids, attrs) + return super().create(adapter, ids, attrs) class SyncNetworkDataTaggedVlansToInterface(DiffSyncModel): @@ -246,10 +246,10 @@ class SyncNetworkDataTaggedVlansToInterface(DiffSyncModel): device__name: str name: str - tagged_vlans: Optional[list] + tagged_vlans: Optional[list] = None @classmethod - def _get_and_assign_tagged_vlans(cls, diffsync, attrs, interface): + def _get_and_assign_tagged_vlans(cls, adapter, attrs, interface): """Loop through the tagged vlans for an interface and assign them.""" for network_vlan in attrs["tagged_vlans"]: try: @@ -258,7 +258,7 @@ def _get_and_assign_tagged_vlans(cls, diffsync, attrs, interface): ) interface.tagged_vlans.add(nautobot_vlan) except ObjectDoesNotExist: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign tagged vlan to {interface.device}:{interface}, unable to locate a vlan " f"with attributes [name: {network_vlan['name']}, vid: {network_vlan['id']} " f"location: {interface.device.location}]" @@ -266,27 +266,27 @@ def _get_and_assign_tagged_vlans(cls, diffsync, attrs, interface): raise diffsync_exceptions.ObjectNotCreated @classmethod - def create(cls, diffsync, ids, attrs): + def create(cls, adapter, ids, attrs): """Assign tagged vlans to an interface.""" if attrs.get("tagged_vlans"): try: interface = Interface.objects.get(device__name=ids["device__name"], name=ids["name"]) except ObjectDoesNotExist: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign tagged vlans {attrs['tagged_vlans']}. An interface with " f"attributes: [device__name: {ids['device__name']} name: {ids['name']}] was not found." ) raise diffsync_exceptions.ObjectNotCreated - cls._get_and_assign_tagged_vlans(diffsync, attrs, interface) + cls._get_and_assign_tagged_vlans(adapter, attrs, interface) if interface: try: interface.validated_save() except ValidationError as err: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign tagged vlans {attrs['tagged_vlans']} to {interface} on {interface.device}, {err}" ) raise diffsync_exceptions.ObjectNotCreated - return super().create(diffsync, ids, attrs) + return super().create(adapter, ids, attrs) def update(self, attrs): """Update tagged vlans.""" @@ -295,16 +295,16 @@ def update(self, attrs): interface = Interface.objects.get(**self.get_identifiers()) interface.tagged_vlans.clear() except ObjectDoesNotExist: - self.diffsync.job.logger.error( + self.adapter.job.logger.error( f"Failed to assign tagged vlans {attrs['tagged_vlans']}. An interface with " f"attributes: [{self.get_identifiers}] was not found." ) raise diffsync_exceptions.ObjectNotUpdated - self._get_and_assign_tagged_vlans(self.diffsync, attrs, interface) + self._get_and_assign_tagged_vlans(self.adapter, attrs, interface) try: interface.validated_save() except ValidationError as err: - self.diffsync.job.logger.error( + self.adapter.job.logger.error( f"Failed to assign tagged vlans {attrs['tagged_vlans']} to {interface} on {interface.device}, {err}" ) raise diffsync_exceptions.ObjectNotUpdated @@ -321,10 +321,10 @@ class SyncNetworkDataUnTaggedVlanToInterface(DiffSyncModel): device__name: str name: str - untagged_vlan: Optional[dict] + untagged_vlan: Optional[dict] = None @classmethod - def _get_and_assign_untagged_vlan(cls, diffsync, attrs, interface): + def _get_and_assign_untagged_vlan(cls, adapter, attrs, interface): """Assign an untagged vlan to an interface.""" try: vlan = VLAN.objects.get( @@ -334,7 +334,7 @@ def _get_and_assign_untagged_vlan(cls, diffsync, attrs, interface): ) interface.untagged_vlan = vlan except ObjectDoesNotExist: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign untagged vlan to {interface.device}:{interface}, unable to locate a vlan with " f"attributes [name: {attrs['untagged_vlan']['name']}, vid: {attrs['untagged_vlan']['id']} " f"location: {interface.device.location}]" @@ -342,26 +342,26 @@ def _get_and_assign_untagged_vlan(cls, diffsync, attrs, interface): raise diffsync_exceptions.ObjectNotCreated @classmethod - def create(cls, diffsync, ids, attrs): + def create(cls, adapter, ids, attrs): """Assign an untagged vlan to an interface.""" if attrs.get("untagged_vlan"): try: interface = Interface.objects.get(device__name=ids["device__name"], name=ids["name"]) except ObjectDoesNotExist: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign untagged vlan {attrs['untagged_vlan']}. An interface with " f"attributes: [device__name: {ids['device__name']} name: {ids['name']}] was not found." ) raise diffsync_exceptions.ObjectNotCreated - cls._get_and_assign_untagged_vlan(diffsync, attrs, interface) + cls._get_and_assign_untagged_vlan(adapter, attrs, interface) try: interface.validated_save() except ValidationError as err: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign untagged vlan {attrs['untagged_vlan']} to {interface} on {interface.device}, {err}" ) raise diffsync_exceptions.ObjectNotCreated - return super().create(diffsync, ids, attrs) + return super().create(adapter, ids, attrs) def update(self, attrs): """Update the untagged vlan on an interface.""" @@ -369,16 +369,16 @@ def update(self, attrs): try: interface = Interface.objects.get(**self.get_identifiers()) except ObjectDoesNotExist: - self.diffsync.job.logger.error( + self.adapter.job.logger.error( f"Failed to assign untagged vlan {attrs['untagged_vlan']}. An interface with " f"attributes: [{self.get_identifiers}] was not found." ) raise diffsync_exceptions.ObjectNotUpdated - self._get_and_assign_untagged_vlan(self.diffsync, attrs, interface) + self._get_and_assign_untagged_vlan(self.adapter, attrs, interface) try: interface.validated_save() except ValidationError as err: - self.diffsync.job.logger.error( + self.adapter.job.logger.error( f"Failed to assign untagged vlans {attrs['untagged_vlan']} to {interface} on {interface.device}, {err}" ) raise diffsync_exceptions.ObjectNotUpdated @@ -395,17 +395,17 @@ class SyncNetworkDataLagToInterface(DiffSyncModel): device__name: str name: str - lag__interface__name: Optional[str] + lag__interface__name: Optional[str] = None # TODO: move the create and update method locgic to a single utility function @classmethod - def create(cls, diffsync, ids, attrs): + def create(cls, adapter, ids, attrs): """Assign a lag to an interface.""" if attrs["lag__interface__name"]: try: interface = Interface.objects.get(device__name=ids["device__name"], name=ids["name"]) except ObjectDoesNotExist: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign lag {attrs['lag__interface__name']}. An interface with " f"attributes: [device__name: {ids['device__name']} name: {ids['name']}] was not found." ) @@ -418,18 +418,18 @@ def create(cls, diffsync, ids, attrs): interface.lag = lag_interface interface.validated_save() except ObjectDoesNotExist: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign lag to {interface.device}:{interface}, unable to locate a lag interface " f"with attributes [name: {attrs['lag__interface__name']}, device: {interface.device.name} " f"type: {InterfaceTypeChoices.TYPE_LAG}]" ) raise diffsync_exceptions.ObjectNotCreated except ValidationError as err: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign lag {lag_interface} to {interface} on {interface.device}, {err}" ) raise diffsync_exceptions.ObjectNotCreated - return super().create(diffsync, ids, attrs) + return super().create(adapter, ids, attrs) def update(self, attrs): """Update and interface lag.""" @@ -437,7 +437,7 @@ def update(self, attrs): try: interface = Interface.objects.get(**self.get_identifiers()) except ObjectDoesNotExist: - self.diffsync.job.logger.error( + self.adapter.job.logger.error( f"Failed to assign untagged lag {attrs['lag__interface__name']}. " f"An interface with attributes: [{self.get_identifiers}] was not found." ) @@ -449,14 +449,14 @@ def update(self, attrs): interface.lag = lag_interface interface.validated_save() except ObjectDoesNotExist: - self.diffsync.job.logger.error( + self.adapter.job.logger.error( f"Failed to assign lag to {interface}, unable to locate a lag interface " f"with attributes [name: {attrs['lag__interface__name']}, device: {interface.device.name} " f"type: {InterfaceTypeChoices.TYPE_LAG}]" ) raise diffsync_exceptions.ObjectNotUpdated except ValidationError as err: - self.diffsync.job.logger.error( + self.adapter.job.logger.error( f"Failed to assign lag {lag_interface} to {interface} on {interface.device}, {err}" ) raise diffsync_exceptions.ObjectNotUpdated @@ -485,28 +485,28 @@ class SyncNetworkDataVrfToInterface(DiffSyncModel): device__name: str name: str - vrf: Optional[dict] + vrf: Optional[dict] = None @classmethod - def _get_and_assign_vrf(cls, diffsync, attrs, interface): + def _get_and_assign_vrf(cls, adapter, attrs, interface): """Assign a vrf to an interface.""" try: vrf = VRF.objects.get( name=attrs["vrf"]["name"], - namespace=diffsync.job.namespace, + namespace=adapter.job.namespace, ) except ObjectDoesNotExist: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign vrf to {interface.device}:{interface}, unable to locate a vrf with attributes " f"[name: {attrs['vrf']['name']} " - f"namespace: {diffsync.job.namespace}]" + f"namespace: {adapter.job.namespace}]" ) raise diffsync_exceptions.ObjectNotCreated except MultipleObjectsReturned: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign vrf to {interface.device}:{interface}, there are multipple vrfs with attributes " f"[name: {attrs['vrf']['name']} " - f"namespace: {diffsync.job.namespace}]. " + f"namespace: {adapter.job.namespace}]. " "Unsure which to assign." ) raise diffsync_exceptions.ObjectNotCreated @@ -514,31 +514,31 @@ def _get_and_assign_vrf(cls, diffsync, attrs, interface): vrf.devices.add(interface.device) vrf.validated_save() except Exception as err: - diffsync.logger.error(f"Failed to assign device: {interface.device} to vrf: {vrf}, {err}") + adapter.logger.error(f"Failed to assign device: {interface.device} to vrf: {vrf}, {err}") raise diffsync_exceptions.ObjectNotCreated interface.vrf = vrf @classmethod - def create(cls, diffsync, ids, attrs): + def create(cls, adapter, ids, attrs): """Assign a vrf to an interface.""" if attrs.get("vrf"): try: interface = Interface.objects.get(device__name=ids["device__name"], name=ids["name"]) except ObjectDoesNotExist: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign vrf {attrs['vrf']}. An interface with attributes: " f"[device__name: {ids['device__name']} name: {ids['name']}] was not found." ) raise diffsync_exceptions.ObjectNotCreated - cls._get_and_assign_vrf(diffsync, attrs, interface) + cls._get_and_assign_vrf(adapter, attrs, interface) try: interface.validated_save() except ValidationError as err: - diffsync.job.logger.error( + adapter.job.logger.error( f"Failed to assign vrf {attrs['vrf']} to {interface} on {interface.device}, {err}" ) raise diffsync_exceptions.ObjectNotCreated - return super().create(diffsync, ids, attrs) + return super().create(adapter, ids, attrs) def update(self, attrs): """Update the vrf on an interface.""" @@ -546,16 +546,16 @@ def update(self, attrs): try: interface = Interface.objects.get(**self.get_identifiers()) except ObjectDoesNotExist: - self.diffsync.job.logger.error( + self.adapter.job.logger.error( f"Failed to assign vrf {attrs['vrf']['name']}. " f"An interface with attributes: [{self.get_identifiers}] was not found." ) raise diffsync_exceptions.ObjectNotUpdated - self._get_and_assign_vrf(self.diffsync, attrs, interface) + self._get_and_assign_vrf(self.adapter, attrs, interface) try: interface.validated_save() except ValidationError as err: - self.diffsync.job.logger.error( + self.adapter.job.logger.error( f"Failed to assign vrf {attrs['vrf']} to {interface} on {interface.device}, {err}" ) raise diffsync_exceptions.ObjectNotUpdated diff --git a/nautobot_device_onboarding/tests/fixtures/sync_network_data_fixture.py b/nautobot_device_onboarding/tests/fixtures/sync_network_data_fixture.py index 624a42a6..5043525a 100644 --- a/nautobot_device_onboarding/tests/fixtures/sync_network_data_fixture.py +++ b/nautobot_device_onboarding/tests/fixtures/sync_network_data_fixture.py @@ -87,7 +87,7 @@ "link_status": True, "802.1Q_mode": "", "lag": "", - "untagged_vlan": "", + "untagged_vlan": {}, "tagged_vlans": [], "vrf": {"name": "mgmt"}, }, diff --git a/nautobot_device_onboarding/tests/test_jobs.py b/nautobot_device_onboarding/tests/test_jobs.py index 233227ad..ea55a7b4 100644 --- a/nautobot_device_onboarding/tests/test_jobs.py +++ b/nautobot_device_onboarding/tests/test_jobs.py @@ -157,7 +157,7 @@ def test_sync_network_data__success(self, device_data): module="nautobot_device_onboarding.jobs", name="SSOTSyncNetworkData", **job_form_inputs ) - self.assertEqual(job_result.status, JobResultStatusChoices.STATUS_SUCCESS) + self.assertEqual(job_result.status, JobResultStatusChoices.STATUS_SUCCESS, job_result.traceback) for returned_device_hostname, data in device_data.return_value.items(): device = Device.objects.get(serial=data["serial"]) self.assertEqual(device.name, returned_device_hostname) diff --git a/poetry.lock b/poetry.lock index 75cb3361..b9fa256a 100755 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "amqp" @@ -25,6 +25,20 @@ files = [ {file = "aniso8601-7.0.0.tar.gz", hash = "sha256:513d2b6637b7853806ae79ffaca6f3e8754bdd547048f5ccc1420aec4b714f1e"}, ] +[[package]] +name = "annotated-types" +version = "0.7.0" +description = "Reusable constraint types to use with typing.Annotated" +optional = false +python-versions = ">=3.8" +files = [ + {file = "annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53"}, + {file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"}, +] + +[package.dependencies] +typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.9\""} + [[package]] name = "anyio" version = "4.4.0" @@ -77,13 +91,13 @@ tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] [[package]] name = "astroid" -version = "3.2.2" +version = "3.2.4" description = "An abstract syntax tree for Python with inference support." optional = false python-versions = ">=3.8.0" files = [ - {file = "astroid-3.2.2-py3-none-any.whl", hash = "sha256:e8a0083b4bb28fcffb6207a3bfc9e5d0a68be951dd7e336d5dcf639c682388c0"}, - {file = "astroid-3.2.2.tar.gz", hash = "sha256:8ead48e31b92b2e217b6c9733a21afafe479d52d6e164dd25fb1a770c7c3cf94"}, + {file = "astroid-3.2.4-py3-none-any.whl", hash = "sha256:413658a61eeca6202a59231abb473f932038fbcbf1666587f66d482083413a25"}, + {file = "astroid-3.2.4.tar.gz", hash = "sha256:0e14202810b30da1b735827f78f5157be2bbd4a7a59b7707ca0bfc2fb4c0063a"}, ] [package.dependencies] @@ -135,37 +149,54 @@ files = [ [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "autopep8" -version = "2.0.0" +version = "2.3.1" description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" optional = false -python-versions = "*" +python-versions = ">=3.8" +files = [ + {file = "autopep8-2.3.1-py2.py3-none-any.whl", hash = "sha256:a203fe0fcad7939987422140ab17a930f684763bf7335bdb6709991dd7ef6c2d"}, + {file = "autopep8-2.3.1.tar.gz", hash = "sha256:8d6c87eba648fdcfc83e29b788910b8643171c395d9c4bcf115ece035b9c9dda"}, +] + +[package.dependencies] +pycodestyle = ">=2.12.0" +tomli = {version = "*", markers = "python_version < \"3.11\""} + +[[package]] +name = "babel" +version = "2.16.0" +description = "Internationalization utilities" +optional = false +python-versions = ">=3.8" files = [ - {file = "autopep8-2.0.0-py2.py3-none-any.whl", hash = "sha256:ad924b42c2e27a1ac58e432166cc4588f5b80747de02d0d35b1ecbd3e7d57207"}, - {file = "autopep8-2.0.0.tar.gz", hash = "sha256:8b1659c7f003e693199f52caffdc06585bb0716900bbc6a7442fd931d658c077"}, + {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, + {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, ] [package.dependencies] -pycodestyle = ">=2.9.1" -tomli = "*" +pytz = {version = ">=2015.7", markers = "python_version < \"3.9\""} + +[package.extras] +dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] [[package]] name = "backcall" @@ -211,38 +242,38 @@ tzdata = ["tzdata"] [[package]] name = "bcrypt" -version = "4.1.3" +version = "4.2.0" description = "Modern password hashing for your software and your servers" optional = false python-versions = ">=3.7" files = [ - {file = "bcrypt-4.1.3-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:48429c83292b57bf4af6ab75809f8f4daf52aa5d480632e53707805cc1ce9b74"}, - {file = "bcrypt-4.1.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a8bea4c152b91fd8319fef4c6a790da5c07840421c2b785084989bf8bbb7455"}, - {file = "bcrypt-4.1.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d3b317050a9a711a5c7214bf04e28333cf528e0ed0ec9a4e55ba628d0f07c1a"}, - {file = "bcrypt-4.1.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:094fd31e08c2b102a14880ee5b3d09913ecf334cd604af27e1013c76831f7b05"}, - {file = "bcrypt-4.1.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:4fb253d65da30d9269e0a6f4b0de32bd657a0208a6f4e43d3e645774fb5457f3"}, - {file = "bcrypt-4.1.3-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:193bb49eeeb9c1e2db9ba65d09dc6384edd5608d9d672b4125e9320af9153a15"}, - {file = "bcrypt-4.1.3-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:8cbb119267068c2581ae38790e0d1fbae65d0725247a930fc9900c285d95725d"}, - {file = "bcrypt-4.1.3-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:6cac78a8d42f9d120b3987f82252bdbeb7e6e900a5e1ba37f6be6fe4e3848286"}, - {file = "bcrypt-4.1.3-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:01746eb2c4299dd0ae1670234bf77704f581dd72cc180f444bfe74eb80495b64"}, - {file = "bcrypt-4.1.3-cp37-abi3-win32.whl", hash = "sha256:037c5bf7c196a63dcce75545c8874610c600809d5d82c305dd327cd4969995bf"}, - {file = "bcrypt-4.1.3-cp37-abi3-win_amd64.whl", hash = "sha256:8a893d192dfb7c8e883c4576813bf18bb9d59e2cfd88b68b725990f033f1b978"}, - {file = "bcrypt-4.1.3-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:0d4cf6ef1525f79255ef048b3489602868c47aea61f375377f0d00514fe4a78c"}, - {file = "bcrypt-4.1.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5698ce5292a4e4b9e5861f7e53b1d89242ad39d54c3da451a93cac17b61921a"}, - {file = "bcrypt-4.1.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec3c2e1ca3e5c4b9edb94290b356d082b721f3f50758bce7cce11d8a7c89ce84"}, - {file = "bcrypt-4.1.3-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:3a5be252fef513363fe281bafc596c31b552cf81d04c5085bc5dac29670faa08"}, - {file = "bcrypt-4.1.3-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5f7cd3399fbc4ec290378b541b0cf3d4398e4737a65d0f938c7c0f9d5e686611"}, - {file = "bcrypt-4.1.3-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:c4c8d9b3e97209dd7111bf726e79f638ad9224b4691d1c7cfefa571a09b1b2d6"}, - {file = "bcrypt-4.1.3-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:31adb9cbb8737a581a843e13df22ffb7c84638342de3708a98d5c986770f2834"}, - {file = "bcrypt-4.1.3-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:551b320396e1d05e49cc18dd77d970accd52b322441628aca04801bbd1d52a73"}, - {file = "bcrypt-4.1.3-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6717543d2c110a155e6821ce5670c1f512f602eabb77dba95717ca76af79867d"}, - {file = "bcrypt-4.1.3-cp39-abi3-win32.whl", hash = "sha256:6004f5229b50f8493c49232b8e75726b568535fd300e5039e255d919fc3a07f2"}, - {file = "bcrypt-4.1.3-cp39-abi3-win_amd64.whl", hash = "sha256:2505b54afb074627111b5a8dc9b6ae69d0f01fea65c2fcaea403448c503d3991"}, - {file = "bcrypt-4.1.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:cb9c707c10bddaf9e5ba7cdb769f3e889e60b7d4fea22834b261f51ca2b89fed"}, - {file = "bcrypt-4.1.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9f8ea645eb94fb6e7bea0cf4ba121c07a3a182ac52876493870033141aa687bc"}, - {file = "bcrypt-4.1.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:f44a97780677e7ac0ca393bd7982b19dbbd8d7228c1afe10b128fd9550eef5f1"}, - {file = "bcrypt-4.1.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d84702adb8f2798d813b17d8187d27076cca3cd52fe3686bb07a9083930ce650"}, - {file = "bcrypt-4.1.3.tar.gz", hash = "sha256:2ee15dd749f5952fe3f0430d0ff6b74082e159c50332a1413d51b5689cf06623"}, + {file = "bcrypt-4.2.0-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:096a15d26ed6ce37a14c1ac1e48119660f21b24cba457f160a4b830f3fe6b5cb"}, + {file = "bcrypt-4.2.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c02d944ca89d9b1922ceb8a46460dd17df1ba37ab66feac4870f6862a1533c00"}, + {file = "bcrypt-4.2.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d84cf6d877918620b687b8fd1bf7781d11e8a0998f576c7aa939776b512b98d"}, + {file = "bcrypt-4.2.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:1bb429fedbe0249465cdd85a58e8376f31bb315e484f16e68ca4c786dcc04291"}, + {file = "bcrypt-4.2.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:655ea221910bcac76ea08aaa76df427ef8625f92e55a8ee44fbf7753dbabb328"}, + {file = "bcrypt-4.2.0-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:1ee38e858bf5d0287c39b7a1fc59eec64bbf880c7d504d3a06a96c16e14058e7"}, + {file = "bcrypt-4.2.0-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:0da52759f7f30e83f1e30a888d9163a81353ef224d82dc58eb5bb52efcabc399"}, + {file = "bcrypt-4.2.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:3698393a1b1f1fd5714524193849d0c6d524d33523acca37cd28f02899285060"}, + {file = "bcrypt-4.2.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:762a2c5fb35f89606a9fde5e51392dad0cd1ab7ae64149a8b935fe8d79dd5ed7"}, + {file = "bcrypt-4.2.0-cp37-abi3-win32.whl", hash = "sha256:5a1e8aa9b28ae28020a3ac4b053117fb51c57a010b9f969603ed885f23841458"}, + {file = "bcrypt-4.2.0-cp37-abi3-win_amd64.whl", hash = "sha256:8f6ede91359e5df88d1f5c1ef47428a4420136f3ce97763e31b86dd8280fbdf5"}, + {file = "bcrypt-4.2.0-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:c52aac18ea1f4a4f65963ea4f9530c306b56ccd0c6f8c8da0c06976e34a6e841"}, + {file = "bcrypt-4.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3bbbfb2734f0e4f37c5136130405332640a1e46e6b23e000eeff2ba8d005da68"}, + {file = "bcrypt-4.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3413bd60460f76097ee2e0a493ccebe4a7601918219c02f503984f0a7ee0aebe"}, + {file = "bcrypt-4.2.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:8d7bb9c42801035e61c109c345a28ed7e84426ae4865511eb82e913df18f58c2"}, + {file = "bcrypt-4.2.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3d3a6d28cb2305b43feac298774b997e372e56c7c7afd90a12b3dc49b189151c"}, + {file = "bcrypt-4.2.0-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:9c1c4ad86351339c5f320ca372dfba6cb6beb25e8efc659bedd918d921956bae"}, + {file = "bcrypt-4.2.0-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:27fe0f57bb5573104b5a6de5e4153c60814c711b29364c10a75a54bb6d7ff48d"}, + {file = "bcrypt-4.2.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:8ac68872c82f1add6a20bd489870c71b00ebacd2e9134a8aa3f98a0052ab4b0e"}, + {file = "bcrypt-4.2.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:cb2a8ec2bc07d3553ccebf0746bbf3d19426d1c6d1adbd4fa48925f66af7b9e8"}, + {file = "bcrypt-4.2.0-cp39-abi3-win32.whl", hash = "sha256:77800b7147c9dc905db1cba26abe31e504d8247ac73580b4aa179f98e6608f34"}, + {file = "bcrypt-4.2.0-cp39-abi3-win_amd64.whl", hash = "sha256:61ed14326ee023917ecd093ee6ef422a72f3aec6f07e21ea5f10622b735538a9"}, + {file = "bcrypt-4.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:39e1d30c7233cfc54f5c3f2c825156fe044efdd3e0b9d309512cc514a263ec2a"}, + {file = "bcrypt-4.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:f4f4acf526fcd1c34e7ce851147deedd4e26e6402369304220250598b26448db"}, + {file = "bcrypt-4.2.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:1ff39b78a52cf03fdf902635e4c81e544714861ba3f0efc56558979dd4f09170"}, + {file = "bcrypt-4.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:373db9abe198e8e2c70d12b479464e0d5092cc122b20ec504097b5f2297ed184"}, + {file = "bcrypt-4.2.0.tar.gz", hash = "sha256:cf69eaf5185fd58f268f805b505ce31f9b9fc2d64b376642164e9244540c1221"}, ] [package.extras] @@ -318,74 +349,89 @@ zstd = ["zstandard (==0.22.0)"] [[package]] name = "certifi" -version = "2024.2.2" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, - {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] name = "cffi" -version = "1.16.0" +version = "1.17.0" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" files = [ - {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, - {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, - {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, - {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, - {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, - {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, - {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, - {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, - {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, - {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, - {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, - {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, - {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, - {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, - {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, + {file = "cffi-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb"}, + {file = "cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab"}, + {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa"}, + {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f"}, + {file = "cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc"}, + {file = "cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2"}, + {file = "cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720"}, + {file = "cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8"}, + {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8"}, + {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb"}, + {file = "cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9"}, + {file = "cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0"}, + {file = "cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc"}, + {file = "cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828"}, + {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150"}, + {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a"}, + {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885"}, + {file = "cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492"}, + {file = "cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2"}, + {file = "cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118"}, + {file = "cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204"}, + {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f"}, + {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0"}, + {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4"}, + {file = "cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a"}, + {file = "cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7"}, + {file = "cffi-1.17.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:964823b2fc77b55355999ade496c54dde161c621cb1f6eac61dc30ed1b63cd4c"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:516a405f174fd3b88829eabfe4bb296ac602d6a0f68e0d64d5ac9456194a5b7e"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dec6b307ce928e8e112a6bb9921a1cb00a0e14979bf28b98e084a4b8a742bd9b"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4094c7b464cf0a858e75cd14b03509e84789abf7b79f8537e6a72152109c76e"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2404f3de742f47cb62d023f0ba7c5a916c9c653d5b368cc966382ae4e57da401"}, + {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3aa9d43b02a0c681f0bfbc12d476d47b2b2b6a3f9287f11ee42989a268a1833c"}, + {file = "cffi-1.17.0-cp38-cp38-win32.whl", hash = "sha256:0bb15e7acf8ab35ca8b24b90af52c8b391690ef5c4aec3d31f38f0d37d2cc499"}, + {file = "cffi-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:93a7350f6706b31f457c1457d3a3259ff9071a66f312ae64dc024f049055f72c"}, + {file = "cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2"}, + {file = "cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058"}, + {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3"}, + {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4"}, + {file = "cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb"}, + {file = "cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29"}, + {file = "cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76"}, ] [package.dependencies] @@ -583,63 +629,83 @@ files = [ [[package]] name = "coverage" -version = "7.5.3" +version = "7.6.1" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.5.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a6519d917abb15e12380406d721e37613e2a67d166f9fb7e5a8ce0375744cd45"}, - {file = "coverage-7.5.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aea7da970f1feccf48be7335f8b2ca64baf9b589d79e05b9397a06696ce1a1ec"}, - {file = "coverage-7.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:923b7b1c717bd0f0f92d862d1ff51d9b2b55dbbd133e05680204465f454bb286"}, - {file = "coverage-7.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62bda40da1e68898186f274f832ef3e759ce929da9a9fd9fcf265956de269dbc"}, - {file = "coverage-7.5.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8b7339180d00de83e930358223c617cc343dd08e1aa5ec7b06c3a121aec4e1d"}, - {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:25a5caf742c6195e08002d3b6c2dd6947e50efc5fc2c2205f61ecb47592d2d83"}, - {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:05ac5f60faa0c704c0f7e6a5cbfd6f02101ed05e0aee4d2822637a9e672c998d"}, - {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:239a4e75e09c2b12ea478d28815acf83334d32e722e7433471fbf641c606344c"}, - {file = "coverage-7.5.3-cp310-cp310-win32.whl", hash = "sha256:a5812840d1d00eafae6585aba38021f90a705a25b8216ec7f66aebe5b619fb84"}, - {file = "coverage-7.5.3-cp310-cp310-win_amd64.whl", hash = "sha256:33ca90a0eb29225f195e30684ba4a6db05dbef03c2ccd50b9077714c48153cac"}, - {file = "coverage-7.5.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f81bc26d609bf0fbc622c7122ba6307993c83c795d2d6f6f6fd8c000a770d974"}, - {file = "coverage-7.5.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7cec2af81f9e7569280822be68bd57e51b86d42e59ea30d10ebdbb22d2cb7232"}, - {file = "coverage-7.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55f689f846661e3f26efa535071775d0483388a1ccfab899df72924805e9e7cd"}, - {file = "coverage-7.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50084d3516aa263791198913a17354bd1dc627d3c1639209640b9cac3fef5807"}, - {file = "coverage-7.5.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:341dd8f61c26337c37988345ca5c8ccabeff33093a26953a1ac72e7d0103c4fb"}, - {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ab0b028165eea880af12f66086694768f2c3139b2c31ad5e032c8edbafca6ffc"}, - {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:5bc5a8c87714b0c67cfeb4c7caa82b2d71e8864d1a46aa990b5588fa953673b8"}, - {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:38a3b98dae8a7c9057bd91fbf3415c05e700a5114c5f1b5b0ea5f8f429ba6614"}, - {file = "coverage-7.5.3-cp311-cp311-win32.whl", hash = "sha256:fcf7d1d6f5da887ca04302db8e0e0cf56ce9a5e05f202720e49b3e8157ddb9a9"}, - {file = "coverage-7.5.3-cp311-cp311-win_amd64.whl", hash = "sha256:8c836309931839cca658a78a888dab9676b5c988d0dd34ca247f5f3e679f4e7a"}, - {file = "coverage-7.5.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:296a7d9bbc598e8744c00f7a6cecf1da9b30ae9ad51c566291ff1314e6cbbed8"}, - {file = "coverage-7.5.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:34d6d21d8795a97b14d503dcaf74226ae51eb1f2bd41015d3ef332a24d0a17b3"}, - {file = "coverage-7.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e317953bb4c074c06c798a11dbdd2cf9979dbcaa8ccc0fa4701d80042d4ebf1"}, - {file = "coverage-7.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:705f3d7c2b098c40f5b81790a5fedb274113373d4d1a69e65f8b68b0cc26f6db"}, - {file = "coverage-7.5.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1196e13c45e327d6cd0b6e471530a1882f1017eb83c6229fc613cd1a11b53cd"}, - {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:015eddc5ccd5364dcb902eaecf9515636806fa1e0d5bef5769d06d0f31b54523"}, - {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:fd27d8b49e574e50caa65196d908f80e4dff64d7e592d0c59788b45aad7e8b35"}, - {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:33fc65740267222fc02975c061eb7167185fef4cc8f2770267ee8bf7d6a42f84"}, - {file = "coverage-7.5.3-cp312-cp312-win32.whl", hash = "sha256:7b2a19e13dfb5c8e145c7a6ea959485ee8e2204699903c88c7d25283584bfc08"}, - {file = "coverage-7.5.3-cp312-cp312-win_amd64.whl", hash = "sha256:0bbddc54bbacfc09b3edaec644d4ac90c08ee8ed4844b0f86227dcda2d428fcb"}, - {file = "coverage-7.5.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f78300789a708ac1f17e134593f577407d52d0417305435b134805c4fb135adb"}, - {file = "coverage-7.5.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b368e1aee1b9b75757942d44d7598dcd22a9dbb126affcbba82d15917f0cc155"}, - {file = "coverage-7.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f836c174c3a7f639bded48ec913f348c4761cbf49de4a20a956d3431a7c9cb24"}, - {file = "coverage-7.5.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:244f509f126dc71369393ce5fea17c0592c40ee44e607b6d855e9c4ac57aac98"}, - {file = "coverage-7.5.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4c2872b3c91f9baa836147ca33650dc5c172e9273c808c3c3199c75490e709d"}, - {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dd4b3355b01273a56b20c219e74e7549e14370b31a4ffe42706a8cda91f19f6d"}, - {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:f542287b1489c7a860d43a7d8883e27ca62ab84ca53c965d11dac1d3a1fab7ce"}, - {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:75e3f4e86804023e991096b29e147e635f5e2568f77883a1e6eed74512659ab0"}, - {file = "coverage-7.5.3-cp38-cp38-win32.whl", hash = "sha256:c59d2ad092dc0551d9f79d9d44d005c945ba95832a6798f98f9216ede3d5f485"}, - {file = "coverage-7.5.3-cp38-cp38-win_amd64.whl", hash = "sha256:fa21a04112c59ad54f69d80e376f7f9d0f5f9123ab87ecd18fbb9ec3a2beed56"}, - {file = "coverage-7.5.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f5102a92855d518b0996eb197772f5ac2a527c0ec617124ad5242a3af5e25f85"}, - {file = "coverage-7.5.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d1da0a2e3b37b745a2b2a678a4c796462cf753aebf94edcc87dcc6b8641eae31"}, - {file = "coverage-7.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8383a6c8cefba1b7cecc0149415046b6fc38836295bc4c84e820872eb5478b3d"}, - {file = "coverage-7.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9aad68c3f2566dfae84bf46295a79e79d904e1c21ccfc66de88cd446f8686341"}, - {file = "coverage-7.5.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e079c9ec772fedbade9d7ebc36202a1d9ef7291bc9b3a024ca395c4d52853d7"}, - {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bde997cac85fcac227b27d4fb2c7608a2c5f6558469b0eb704c5726ae49e1c52"}, - {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:990fb20b32990b2ce2c5f974c3e738c9358b2735bc05075d50a6f36721b8f303"}, - {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3d5a67f0da401e105753d474369ab034c7bae51a4c31c77d94030d59e41df5bd"}, - {file = "coverage-7.5.3-cp39-cp39-win32.whl", hash = "sha256:e08c470c2eb01977d221fd87495b44867a56d4d594f43739a8028f8646a51e0d"}, - {file = "coverage-7.5.3-cp39-cp39-win_amd64.whl", hash = "sha256:1d2a830ade66d3563bb61d1e3c77c8def97b30ed91e166c67d0632c018f380f0"}, - {file = "coverage-7.5.3-pp38.pp39.pp310-none-any.whl", hash = "sha256:3538d8fb1ee9bdd2e2692b3b18c22bb1c19ffbefd06880f5ac496e42d7bb3884"}, - {file = "coverage-7.5.3.tar.gz", hash = "sha256:04aefca5190d1dc7a53a4c1a5a7f8568811306d7a8ee231c42fb69215571944f"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b06079abebbc0e89e6163b8e8f0e16270124c154dc6e4a47b413dd538859af16"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cf4b19715bccd7ee27b6b120e7e9dd56037b9c0681dcc1adc9ba9db3d417fa36"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61c0abb4c85b095a784ef23fdd4aede7a2628478e7baba7c5e3deba61070a02"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd21f6ae3f08b41004dfb433fa895d858f3f5979e7762d052b12aef444e29afc"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f59d57baca39b32db42b83b2a7ba6f47ad9c394ec2076b084c3f029b7afca23"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a1ac0ae2b8bd743b88ed0502544847c3053d7171a3cff9228af618a068ed9c34"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e6a08c0be454c3b3beb105c0596ebdc2371fab6bb90c0c0297f4e58fd7e1012c"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f5796e664fe802da4f57a168c85359a8fbf3eab5e55cd4e4569fbacecc903959"}, + {file = "coverage-7.6.1-cp310-cp310-win32.whl", hash = "sha256:7bb65125fcbef8d989fa1dd0e8a060999497629ca5b0efbca209588a73356232"}, + {file = "coverage-7.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:3115a95daa9bdba70aea750db7b96b37259a81a709223c8448fa97727d546fe0"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7dea0889685db8550f839fa202744652e87c60015029ce3f60e006f8c4462c93"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed37bd3c3b063412f7620464a9ac1314d33100329f39799255fb8d3027da50d3"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85f5e9a5f8b73e2350097c3756ef7e785f55bd71205defa0bfdaf96c31616ff"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bc572be474cafb617672c43fe989d6e48d3c83af02ce8de73fff1c6bb3c198d"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0420b573964c760df9e9e86d1a9a622d0d27f417e1a949a8a66dd7bcee7bc6"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f4aa8219db826ce6be7099d559f8ec311549bfc4046f7f9fe9b5cea5c581c56"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:fc5a77d0c516700ebad189b587de289a20a78324bc54baee03dd486f0855d234"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b48f312cca9621272ae49008c7f613337c53fadca647d6384cc129d2996d1133"}, + {file = "coverage-7.6.1-cp311-cp311-win32.whl", hash = "sha256:1125ca0e5fd475cbbba3bb67ae20bd2c23a98fac4e32412883f9bcbaa81c314c"}, + {file = "coverage-7.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:8ae539519c4c040c5ffd0632784e21b2f03fc1340752af711f33e5be83a9d6c6"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:95cae0efeb032af8458fc27d191f85d1717b1d4e49f7cb226cf526ff28179778"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5621a9175cf9d0b0c84c2ef2b12e9f5f5071357c4d2ea6ca1cf01814f45d2391"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:260933720fdcd75340e7dbe9060655aff3af1f0c5d20f46b57f262ab6c86a5e8"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e2ca0ad381b91350c0ed49d52699b625aab2b44b65e1b4e02fa9df0e92ad2d"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44fee9975f04b33331cb8eb272827111efc8930cfd582e0320613263ca849ca"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877abb17e6339d96bf08e7a622d05095e72b71f8afd8a9fefc82cf30ed944163"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e0cadcf6733c09154b461f1ca72d5416635e5e4ec4e536192180d34ec160f8a"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3c02d12f837d9683e5ab2f3d9844dc57655b92c74e286c262e0fc54213c216d"}, + {file = "coverage-7.6.1-cp312-cp312-win32.whl", hash = "sha256:e05882b70b87a18d937ca6768ff33cc3f72847cbc4de4491c8e73880766718e5"}, + {file = "coverage-7.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:b5d7b556859dd85f3a541db6a4e0167b86e7273e1cdc973e5b175166bb634fdb"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a4acd025ecc06185ba2b801f2de85546e0b8ac787cf9d3b06e7e2a69f925b106"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a6d3adcf24b624a7b778533480e32434a39ad8fa30c315208f6d3e5542aeb6e9"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0c212c49b6c10e6951362f7c6df3329f04c2b1c28499563d4035d964ab8e08c"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e81d7a3e58882450ec4186ca59a3f20a5d4440f25b1cff6f0902ad890e6748a"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b260de9790fd81e69401c2dc8b17da47c8038176a79092a89cb2b7d945d060"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a78d169acd38300060b28d600344a803628c3fd585c912cacc9ea8790fe96862"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2c09f4ce52cb99dd7505cd0fc8e0e37c77b87f46bc9c1eb03fe3bc9991085388"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6878ef48d4227aace338d88c48738a4258213cd7b74fd9a3d4d7582bb1d8a155"}, + {file = "coverage-7.6.1-cp313-cp313-win32.whl", hash = "sha256:44df346d5215a8c0e360307d46ffaabe0f5d3502c8a1cefd700b34baf31d411a"}, + {file = "coverage-7.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:8284cf8c0dd272a247bc154eb6c95548722dce90d098c17a883ed36e67cdb129"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3296782ca4eab572a1a4eca686d8bfb00226300dcefdf43faa25b5242ab8a3e"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:502753043567491d3ff6d08629270127e0c31d4184c4c8d98f92c26f65019962"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a89ecca80709d4076b95f89f308544ec8f7b4727e8a547913a35f16717856cb"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a318d68e92e80af8b00fa99609796fdbcdfef3629c77c6283566c6f02c6d6704"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13b0a73a0896988f053e4fbb7de6d93388e6dd292b0d87ee51d106f2c11b465b"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4421712dbfc5562150f7554f13dde997a2e932a6b5f352edcce948a815efee6f"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:166811d20dfea725e2e4baa71fffd6c968a958577848d2131f39b60043400223"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:225667980479a17db1048cb2bf8bfb39b8e5be8f164b8f6628b64f78a72cf9d3"}, + {file = "coverage-7.6.1-cp313-cp313t-win32.whl", hash = "sha256:170d444ab405852903b7d04ea9ae9b98f98ab6d7e63e1115e82620807519797f"}, + {file = "coverage-7.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b9f222de8cded79c49bf184bdbc06630d4c58eec9459b939b4a690c82ed05657"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6db04803b6c7291985a761004e9060b2bca08da6d04f26a7f2294b8623a0c1a0"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f1adfc8ac319e1a348af294106bc6a8458a0f1633cc62a1446aebc30c5fa186a"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a95324a9de9650a729239daea117df21f4b9868ce32e63f8b650ebe6cef5595b"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b43c03669dc4618ec25270b06ecd3ee4fa94c7f9b3c14bae6571ca00ef98b0d3"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8929543a7192c13d177b770008bc4e8119f2e1f881d563fc6b6305d2d0ebe9de"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:a09ece4a69cf399510c8ab25e0950d9cf2b42f7b3cb0374f95d2e2ff594478a6"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9054a0754de38d9dbd01a46621636689124d666bad1936d76c0341f7d71bf569"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0dbde0f4aa9a16fa4d754356a8f2e36296ff4d83994b2c9d8398aa32f222f989"}, + {file = "coverage-7.6.1-cp38-cp38-win32.whl", hash = "sha256:da511e6ad4f7323ee5702e6633085fb76c2f893aaf8ce4c51a0ba4fc07580ea7"}, + {file = "coverage-7.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:3f1156e3e8f2872197af3840d8ad307a9dd18e615dc64d9ee41696f287c57ad8"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abd5fd0db5f4dc9289408aaf34908072f805ff7792632250dcb36dc591d24255"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:547f45fa1a93154bd82050a7f3cddbc1a7a4dd2a9bf5cb7d06f4ae29fe94eaf8"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645786266c8f18a931b65bfcefdbf6952dd0dea98feee39bd188607a9d307ed2"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e0b2df163b8ed01d515807af24f63de04bebcecbd6c3bfeff88385789fdf75a"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:609b06f178fe8e9f89ef676532760ec0b4deea15e9969bf754b37f7c40326dbc"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:702855feff378050ae4f741045e19a32d57d19f3e0676d589df0575008ea5004"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2bdb062ea438f22d99cba0d7829c2ef0af1d768d1e4a4f528087224c90b132cb"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9c56863d44bd1c4fe2abb8a4d6f5371d197f1ac0ebdee542f07f35895fc07f36"}, + {file = "coverage-7.6.1-cp39-cp39-win32.whl", hash = "sha256:6e2cd258d7d927d09493c8df1ce9174ad01b381d4729a9d8d4e38670ca24774c"}, + {file = "coverage-7.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:06a737c882bd26d0d6ee7269b20b12f14a8704807a01056c80bb881a4b2ce6ca"}, + {file = "coverage-7.6.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:e9a6e0eb86070e8ccaedfbd9d38fec54864f3125ab95419970575b42af7541df"}, + {file = "coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d"}, ] [package.extras] @@ -647,13 +713,13 @@ toml = ["tomli"] [[package]] name = "cron-descriptor" -version = "1.4.3" +version = "1.4.5" description = "A Python library that converts cron expressions into human readable strings." optional = false python-versions = "*" files = [ - {file = "cron_descriptor-1.4.3-py3-none-any.whl", hash = "sha256:a67ba21804983b1427ed7f3e1ec27ee77bf24c652b0430239c268c5ddfbf9dc0"}, - {file = "cron_descriptor-1.4.3.tar.gz", hash = "sha256:7b1a00d7d25d6ae6896c0da4457e790b98cba778398a3d48e341e5e0d33f0488"}, + {file = "cron_descriptor-1.4.5-py3-none-any.whl", hash = "sha256:736b3ae9d1a99bc3dbfc5b55b5e6e7c12031e7ba5de716625772f8b02dcd6013"}, + {file = "cron_descriptor-1.4.5.tar.gz", hash = "sha256:f51ce4ffc1d1f2816939add8524f206c376a42c87a5fca3091ce26725b3b1bca"}, ] [package.extras] @@ -661,43 +727,38 @@ dev = ["polib"] [[package]] name = "cryptography" -version = "42.0.7" +version = "43.0.0" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." optional = false python-versions = ">=3.7" files = [ - {file = "cryptography-42.0.7-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477"}, - {file = "cryptography-42.0.7-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a"}, - {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604"}, - {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8"}, - {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55"}, - {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc"}, - {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2"}, - {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13"}, - {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da"}, - {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7"}, - {file = "cryptography-42.0.7-cp37-abi3-win32.whl", hash = "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b"}, - {file = "cryptography-42.0.7-cp37-abi3-win_amd64.whl", hash = "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678"}, - {file = "cryptography-42.0.7-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4"}, - {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858"}, - {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785"}, - {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda"}, - {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9"}, - {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e"}, - {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f"}, - {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1"}, - {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886"}, - {file = "cryptography-42.0.7-cp39-abi3-win32.whl", hash = "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda"}, - {file = "cryptography-42.0.7-cp39-abi3-win_amd64.whl", hash = "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b"}, - {file = "cryptography-42.0.7-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82"}, - {file = "cryptography-42.0.7-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60"}, - {file = "cryptography-42.0.7-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd"}, - {file = "cryptography-42.0.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582"}, - {file = "cryptography-42.0.7-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562"}, - {file = "cryptography-42.0.7-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14"}, - {file = "cryptography-42.0.7-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9"}, - {file = "cryptography-42.0.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68"}, - {file = "cryptography-42.0.7.tar.gz", hash = "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2"}, + {file = "cryptography-43.0.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:64c3f16e2a4fc51c0d06af28441881f98c5d91009b8caaff40cf3548089e9c74"}, + {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3dcdedae5c7710b9f97ac6bba7e1052b95c7083c9d0e9df96e02a1932e777895"}, + {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d9a1eca329405219b605fac09ecfc09ac09e595d6def650a437523fcd08dd22"}, + {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ea9e57f8ea880eeea38ab5abf9fbe39f923544d7884228ec67d666abd60f5a47"}, + {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9a8d6802e0825767476f62aafed40532bd435e8a5f7d23bd8b4f5fd04cc80ecf"}, + {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cc70b4b581f28d0a254d006f26949245e3657d40d8857066c2ae22a61222ef55"}, + {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4a997df8c1c2aae1e1e5ac49c2e4f610ad037fc5a3aadc7b64e39dea42249431"}, + {file = "cryptography-43.0.0-cp37-abi3-win32.whl", hash = "sha256:6e2b11c55d260d03a8cf29ac9b5e0608d35f08077d8c087be96287f43af3ccdc"}, + {file = "cryptography-43.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:31e44a986ceccec3d0498e16f3d27b2ee5fdf69ce2ab89b52eaad1d2f33d8778"}, + {file = "cryptography-43.0.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:7b3f5fe74a5ca32d4d0f302ffe6680fcc5c28f8ef0dc0ae8f40c0f3a1b4fca66"}, + {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac1955ce000cb29ab40def14fd1bbfa7af2017cca696ee696925615cafd0dce5"}, + {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:299d3da8e00b7e2b54bb02ef58d73cd5f55fb31f33ebbf33bd00d9aa6807df7e"}, + {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ee0c405832ade84d4de74b9029bedb7b31200600fa524d218fc29bfa371e97f5"}, + {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:cb013933d4c127349b3948aa8aaf2f12c0353ad0eccd715ca789c8a0f671646f"}, + {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fdcb265de28585de5b859ae13e3846a8e805268a823a12a4da2597f1f5afc9f0"}, + {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:2905ccf93a8a2a416f3ec01b1a7911c3fe4073ef35640e7ee5296754e30b762b"}, + {file = "cryptography-43.0.0-cp39-abi3-win32.whl", hash = "sha256:47ca71115e545954e6c1d207dd13461ab81f4eccfcb1345eac874828b5e3eaaf"}, + {file = "cryptography-43.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:0663585d02f76929792470451a5ba64424acc3cd5227b03921dab0e2f27b1709"}, + {file = "cryptography-43.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2c6d112bf61c5ef44042c253e4859b3cbbb50df2f78fa8fae6747a7814484a70"}, + {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:844b6d608374e7d08f4f6e6f9f7b951f9256db41421917dfb2d003dde4cd6b66"}, + {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:51956cf8730665e2bdf8ddb8da0056f699c1a5715648c1b0144670c1ba00b48f"}, + {file = "cryptography-43.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:aae4d918f6b180a8ab8bf6511a419473d107df4dbb4225c7b48c5c9602c38c7f"}, + {file = "cryptography-43.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:232ce02943a579095a339ac4b390fbbe97f5b5d5d107f8a08260ea2768be8cc2"}, + {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5bcb8a5620008a8034d39bce21dc3e23735dfdb6a33a06974739bfa04f853947"}, + {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:08a24a7070b2b6804c1940ff0f910ff728932a9d0e80e7814234269f9d46d069"}, + {file = "cryptography-43.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:e9c5266c432a1e23738d178e51c2c7a5e2ddf790f248be939448c0ba2021f9d1"}, + {file = "cryptography-43.0.0.tar.gz", hash = "sha256:b88075ada2d51aa9f18283532c9f60e72170041bba88d7f37e49cbb10275299e"}, ] [package.dependencies] @@ -710,7 +771,7 @@ nox = ["nox"] pep8test = ["check-sdist", "click", "mypy", "ruff"] sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test = ["certifi", "cryptography-vectors (==43.0.0)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] [[package]] @@ -755,19 +816,19 @@ files = [ [[package]] name = "diffsync" -version = "1.10.0" +version = "2.0.0" description = "Library to easily sync/diff/update 2 different data sources" optional = false python-versions = ">=3.8,<4.0" files = [ - {file = "diffsync-1.10.0-py3-none-any.whl", hash = "sha256:f4368c97162d51eecc7a8e87026c731197a694026cabcf2ab4f16d18d7bdadbd"}, - {file = "diffsync-1.10.0.tar.gz", hash = "sha256:a9d7cb8e8ce983b446bf858c1c5c82cf473fcf231db73c0855e8c59ee7cd8370"}, + {file = "diffsync-2.0.0-py3-none-any.whl", hash = "sha256:59f864a115abc5b0aa3b9db0d44deff59c81cd5469e5894326c27e29511e3aab"}, + {file = "diffsync-2.0.0.tar.gz", hash = "sha256:712bc85a24f49ef6075344dc3a16c85e27b1416154c46fd5de7acf72e8321a9b"}, ] [package.dependencies] colorama = ">=0.4.3,<0.5.0" packaging = ">=21.3,<24.0" -pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0" +pydantic = ">=2.0.0,<3.0.0" structlog = ">=20.1.0,<23.0.0" typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""} @@ -791,19 +852,20 @@ profile = ["gprof2dot (>=2022.7.29)"] [[package]] name = "django" -version = "3.2.25" -description = "A high-level Python Web framework that encourages rapid development and clean, pragmatic design." +version = "4.2.15" +description = "A high-level Python web framework that encourages rapid development and clean, pragmatic design." optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "Django-3.2.25-py3-none-any.whl", hash = "sha256:a52ea7fcf280b16f7b739cec38fa6d3f8953a5456986944c3ca97e79882b4e38"}, - {file = "Django-3.2.25.tar.gz", hash = "sha256:7ca38a78654aee72378594d63e51636c04b8e28574f5505dff630895b5472777"}, + {file = "Django-4.2.15-py3-none-any.whl", hash = "sha256:61ee4a130efb8c451ef3467c67ca99fdce400fedd768634efc86a68c18d80d30"}, + {file = "Django-4.2.15.tar.gz", hash = "sha256:c77f926b81129493961e19c0e02188f8d07c112a1162df69bfab178ae447f94a"}, ] [package.dependencies] -asgiref = ">=3.3.2,<4" -pytz = "*" -sqlparse = ">=0.2.2" +asgiref = ">=3.6.0,<4" +"backports.zoneinfo" = {version = "*", markers = "python_version < \"3.9\""} +sqlparse = ">=0.3.1" +tzdata = {version = "*", markers = "sys_platform == \"win32\""} [package.extras] argon2 = ["argon2-cffi (>=19.1.0)"] @@ -856,36 +918,35 @@ Django = ">=3.2.18" [[package]] name = "django-constance" -version = "2.9.1" +version = "3.1.0" description = "Django live settings with pluggable backends, including Redis." optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "django-constance-2.9.1.tar.gz", hash = "sha256:4c6a96a5f2cbce1bc3fa41aa20566b6ee26fbd896c9f91f996518a3a0904f6c8"}, - {file = "django_constance-2.9.1-py3-none-any.whl", hash = "sha256:bf0b392efa18a1f3f464eddb7eb36ac5c02598354a5e31d0d4ce4fc8b535694b"}, + {file = "django-constance-3.1.0.tar.gz", hash = "sha256:2b96e51de63751ef63f8f92f74e0f6aea30fb6453f3a736c21e1f8b3f6cf0b4f"}, + {file = "django_constance-3.1.0-py3-none-any.whl", hash = "sha256:6242486a346e396d765a9333d17f3101c8613cabc92e0b98dcb70c2a391bc53b"}, ] [package.dependencies] -django-picklefield = {version = "*", optional = true, markers = "extra == \"database\""} +django-picklefield = "*" [package.extras] -database = ["django-picklefield"] redis = ["redis"] [[package]] name = "django-cors-headers" -version = "4.3.1" +version = "4.4.0" description = "django-cors-headers is a Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS)." optional = false python-versions = ">=3.8" files = [ - {file = "django-cors-headers-4.3.1.tar.gz", hash = "sha256:0bf65ef45e606aff1994d35503e6b677c0b26cafff6506f8fd7187f3be840207"}, - {file = "django_cors_headers-4.3.1-py3-none-any.whl", hash = "sha256:0b1fd19297e37417fc9f835d39e45c8c642938ddba1acce0c1753d3edef04f36"}, + {file = "django_cors_headers-4.4.0-py3-none-any.whl", hash = "sha256:5c6e3b7fe870876a1efdfeb4f433782c3524078fa0dc9e0195f6706ce7a242f6"}, + {file = "django_cors_headers-4.4.0.tar.gz", hash = "sha256:92cf4633e22af67a230a1456cb1b7a02bb213d6536d2dcb2a4a24092ea9cebc2"}, ] [package.dependencies] asgiref = ">=3.6" -Django = ">=3.2" +django = ">=3.2" [[package]] name = "django-db-file-storage" @@ -903,17 +964,17 @@ Django = "*" [[package]] name = "django-debug-toolbar" -version = "4.3.0" +version = "4.4.6" description = "A configurable set of panels that display various debug information about the current request/response." optional = false python-versions = ">=3.8" files = [ - {file = "django_debug_toolbar-4.3.0-py3-none-any.whl", hash = "sha256:e09b7dcb8417b743234dfc57c95a7c1d1d87a88844abd13b4c5387f807b31bf6"}, - {file = "django_debug_toolbar-4.3.0.tar.gz", hash = "sha256:0b0dddee5ea29b9cb678593bc0d7a6d76b21d7799cb68e091a2148341a80f3c4"}, + {file = "django_debug_toolbar-4.4.6-py3-none-any.whl", hash = "sha256:3beb671c9ec44ffb817fad2780667f172bd1c067dbcabad6268ce39a81335f45"}, + {file = "django_debug_toolbar-4.4.6.tar.gz", hash = "sha256:36e421cb908c2f0675e07f9f41e3d1d8618dc386392ec82d23bcfcd5d29c7044"}, ] [package.dependencies] -django = ">=3.2.4" +django = ">=4.2.9" sqlparse = ">=0.2" [[package]] @@ -932,27 +993,27 @@ Django = ">=3.2" [[package]] name = "django-filter" -version = "23.5" +version = "24.2" description = "Django-filter is a reusable Django application for allowing users to filter querysets dynamically." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "django-filter-23.5.tar.gz", hash = "sha256:67583aa43b91fe8c49f74a832d95f4d8442be628fd4c6d65e9f811f5153a4e5c"}, - {file = "django_filter-23.5-py3-none-any.whl", hash = "sha256:99122a201d83860aef4fe77758b69dda913e874cc5e0eaa50a86b0b18d708400"}, + {file = "django-filter-24.2.tar.gz", hash = "sha256:48e5fc1da3ccd6ca0d5f9bb550973518ce977a4edde9d2a8a154a7f4f0b9f96e"}, + {file = "django_filter-24.2-py3-none-any.whl", hash = "sha256:df2ee9857e18d38bed203c8745f62a803fa0f31688c9fe6f8e868120b1848e48"}, ] [package.dependencies] -Django = ">=3.2" +Django = ">=4.2" [[package]] name = "django-health-check" -version = "3.18.2" +version = "3.18.3" description = "Run checks on services like databases, queue servers, celery processes, etc." optional = false python-versions = ">=3.8" files = [ - {file = "django_health_check-3.18.2-py2.py3-none-any.whl", hash = "sha256:16f9c9186236cbc2858fa0d0ecc3566ba2ad2b72683e5678d0d58eb9e8bbba1a"}, - {file = "django_health_check-3.18.2.tar.gz", hash = "sha256:21235120f8d756fa75ba430d0b0dbb04620fbd7bfac92ed6a0b911915ba38918"}, + {file = "django_health_check-3.18.3-py2.py3-none-any.whl", hash = "sha256:f5f58762b80bdf7b12fad724761993d6e83540f97e2c95c42978f187e452fa07"}, + {file = "django_health_check-3.18.3.tar.gz", hash = "sha256:18b75daca4551c69a43f804f9e41e23f5f5fb9efd06cf6a313b3d5031bb87bd0"}, ] [package.dependencies] @@ -962,6 +1023,20 @@ django = ">=2.2" docs = ["sphinx"] test = ["boto3", "celery", "django-storages", "pytest", "pytest-cov", "pytest-django", "redis"] +[[package]] +name = "django-ipware" +version = "7.0.1" +description = "A Django application to retrieve user's IP address" +optional = false +python-versions = ">=3.8" +files = [ + {file = "django-ipware-7.0.1.tar.gz", hash = "sha256:d9ec43d2bf7cdf216fed8d494a084deb5761a54860a53b2e74346a4f384cff47"}, + {file = "django_ipware-7.0.1-py2.py3-none-any.whl", hash = "sha256:db16bbee920f661ae7f678e4270460c85850f03c6761a4eaeb489bdc91f64709"}, +] + +[package.dependencies] +python-ipware = ">=2.0.3" + [[package]] name = "django-jinja" version = "2.11.0" @@ -1043,6 +1118,27 @@ Django = ">=3.2" gprof2dot = ">=2017.09.19" sqlparse = "*" +[[package]] +name = "django-structlog" +version = "8.1.0" +description = "Structured Logging for Django" +optional = false +python-versions = ">=3.8" +files = [ + {file = "django_structlog-8.1.0-py3-none-any.whl", hash = "sha256:1072564bd6f36e8d3ba9893e7b31c1c46e94301189fedaecc0fb8a46525a3214"}, + {file = "django_structlog-8.1.0.tar.gz", hash = "sha256:0229b9a2efbd24a4e3500169788e53915c2429521e34e41dd58ccc56039bef3f"}, +] + +[package.dependencies] +asgiref = ">=3.6.0" +django = ">=4.2" +django-ipware = ">=6.0.2" +structlog = ">=21.4.0" + +[package.extras] +celery = ["celery (>=5.1)"] +commands = ["django-extensions (>=1.4.9)"] + [[package]] name = "django-tables2" version = "2.7.0" @@ -1062,43 +1158,42 @@ tablib = ["tablib"] [[package]] name = "django-taggit" -version = "4.0.0" +version = "5.0.1" description = "django-taggit is a reusable Django application for simple tagging." optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "django-taggit-4.0.0.tar.gz", hash = "sha256:4d52de9d37245a9b9f98c0ec71fdccf1d2283e38e8866d40a7ae6a3b6787a161"}, - {file = "django_taggit-4.0.0-py3-none-any.whl", hash = "sha256:eb800dabef5f0a4e047ab0751f82cf805bc4a9e972037ef12bf519f52cd92480"}, + {file = "django-taggit-5.0.1.tar.gz", hash = "sha256:edcd7db1e0f35c304e082a2f631ddac2e16ef5296029524eb792af7430cab4cc"}, + {file = "django_taggit-5.0.1-py3-none-any.whl", hash = "sha256:a0ca8a28b03c4b26c2630fd762cb76ec39b5e41abf727a7b66f897a625c5e647"}, ] [package.dependencies] -Django = ">=3.2" +Django = ">=4.1" [[package]] name = "django-timezone-field" -version = "5.1" +version = "7.0" description = "A Django app providing DB, form, and REST framework fields for zoneinfo and pytz timezone objects." optional = false -python-versions = ">=3.7,<4.0" +python-versions = "<4.0,>=3.8" files = [ - {file = "django_timezone_field-5.1-py3-none-any.whl", hash = "sha256:16ca9955a4e16064e32168b1a0d1cdb2839679c6cb56856c1f49f506e2ca4281"}, - {file = "django_timezone_field-5.1.tar.gz", hash = "sha256:73fc49519273cd5da1c7f16abc04a4bcad87b00cc02968d0d384c0fecf9a8a86"}, + {file = "django_timezone_field-7.0-py3-none-any.whl", hash = "sha256:3232e7ecde66ba4464abb6f9e6b8cc739b914efb9b29dc2cf2eee451f7cc2acb"}, + {file = "django_timezone_field-7.0.tar.gz", hash = "sha256:aa6f4965838484317b7f08d22c0d91a53d64e7bbbd34264468ae83d4023898a7"}, ] [package.dependencies] "backports.zoneinfo" = {version = ">=0.2.1,<0.3.0", markers = "python_version < \"3.9\""} -Django = ">=2.2,<3.0.dev0 || >=3.2.dev0,<5.0" -pytz = "*" +Django = ">=3.2,<6.0" [[package]] name = "django-tree-queries" -version = "0.17.0" +version = "0.19.0" description = "Tree queries with explicit opt-in, without configurability" optional = false python-versions = ">=3.8" files = [ - {file = "django_tree_queries-0.17.0-py3-none-any.whl", hash = "sha256:df62cc7daa7a766483a8ae11618ff7649d74425b5d245e9644526f2dd2f51af0"}, - {file = "django_tree_queries-0.17.0.tar.gz", hash = "sha256:f115cf6756c55fde56bb876d5b5aa1b2bd33ae3d6e2949c3176ef0b4fb64c532"}, + {file = "django_tree_queries-0.19.0-py3-none-any.whl", hash = "sha256:05b9e3158e31612528f136b4704a8d807e14edc0b4a607a45377e6132517ba2c"}, + {file = "django_tree_queries-0.19.0.tar.gz", hash = "sha256:d1325e75f96e90b86c4316a3d63498101ec05703f4e629786b561e8aaab0e4a7"}, ] [package.extras] @@ -1127,18 +1222,18 @@ waitress = ["waitress"] [[package]] name = "djangorestframework" -version = "3.15.1" +version = "3.15.2" description = "Web APIs for Django, made easy." optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "djangorestframework-3.15.1-py3-none-any.whl", hash = "sha256:3ccc0475bce968608cf30d07fb17d8e52d1d7fc8bfe779c905463200750cbca6"}, - {file = "djangorestframework-3.15.1.tar.gz", hash = "sha256:f88fad74183dfc7144b2756d0d2ac716ea5b4c7c9840995ac3bfd8ec034333c1"}, + {file = "djangorestframework-3.15.2-py3-none-any.whl", hash = "sha256:2b8871b062ba1aefc2de01f773875441a961fefbf79f5eed1e32b2f096944b20"}, + {file = "djangorestframework-3.15.2.tar.gz", hash = "sha256:36fe88cd2d6c6bec23dca9804bab2ba5517a8bb9d8f47ebc68981b56840107ad"}, ] [package.dependencies] "backports.zoneinfo" = {version = "*", markers = "python_version < \"3.9\""} -django = ">=3.0" +django = ">=4.2" [[package]] name = "drf-react-template-framework" @@ -1156,13 +1251,13 @@ djangorestframework = ">=3.12.0,<4.0.0" [[package]] name = "drf-spectacular" -version = "0.26.5" +version = "0.27.2" description = "Sane and flexible OpenAPI 3 schema generation for Django REST framework" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" files = [ - {file = "drf-spectacular-0.26.5.tar.gz", hash = "sha256:aee55330a774ba8a9cbdb125714d1c9ee05a8aafd3ce3be8bfd26527649aeb44"}, - {file = "drf_spectacular-0.26.5-py3-none-any.whl", hash = "sha256:c0002a820b11771fdbf37853deb371947caf0159d1afeeffe7598e964bc1db94"}, + {file = "drf-spectacular-0.27.2.tar.gz", hash = "sha256:a199492f2163c4101055075ebdbb037d59c6e0030692fc83a1a8c0fc65929981"}, + {file = "drf_spectacular-0.27.2-py3-none-any.whl", hash = "sha256:b1c04bf8b2fbbeaf6f59414b4ea448c8787aba4d32f76055c3b13335cf7ec37b"}, ] [package.dependencies] @@ -1172,6 +1267,7 @@ drf-spectacular-sidecar = {version = "*", optional = true, markers = "extra == \ inflection = ">=0.3.1" jsonschema = ">=2.6.0" PyYAML = ">=5.1" +typing-extensions = {version = "*", markers = "python_version < \"3.10\""} uritemplate = ">=2.0.0" [package.extras] @@ -1180,13 +1276,13 @@ sidecar = ["drf-spectacular-sidecar"] [[package]] name = "drf-spectacular-sidecar" -version = "2024.5.1" +version = "2024.7.1" description = "Serve self-contained distribution builds of Swagger UI and Redoc with Django" optional = false python-versions = ">=3.6" files = [ - {file = "drf_spectacular_sidecar-2024.5.1-py3-none-any.whl", hash = "sha256:089fdef46b520b7b1c8a497a398cde9336c3f20b115835baeb158dc4138d743d"}, - {file = "drf_spectacular_sidecar-2024.5.1.tar.gz", hash = "sha256:1ecfbe86174461e3cf78a9cd49f69aa8d9e0710cb5e8b35107d3f8cc0f380c21"}, + {file = "drf_spectacular_sidecar-2024.7.1-py3-none-any.whl", hash = "sha256:5dc8b38ad153e90b328152674c7959bf114bf86360a617a5a4516e135cb832bc"}, + {file = "drf_spectacular_sidecar-2024.7.1.tar.gz", hash = "sha256:beb992d6ece806a2d422ad626983e2472c0a5550de9647a7ed6764716a5abdfe"}, ] [package.dependencies] @@ -1194,27 +1290,30 @@ Django = ">=2.2" [[package]] name = "emoji" -version = "2.11.1" +version = "2.12.1" description = "Emoji for Python" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,>=2.7" +python-versions = ">=3.7" files = [ - {file = "emoji-2.11.1-py2.py3-none-any.whl", hash = "sha256:b7ba25299bbf520cc8727848ae66b986da32aee27dc2887eaea2bff07226ce49"}, - {file = "emoji-2.11.1.tar.gz", hash = "sha256:062ff0b3154b6219143f8b9f4b3e5c64c35bc2b146e6e2349ab5f29e218ce1ee"}, + {file = "emoji-2.12.1-py3-none-any.whl", hash = "sha256:a00d62173bdadc2510967a381810101624a2f0986145b8da0cffa42e29430235"}, + {file = "emoji-2.12.1.tar.gz", hash = "sha256:4aa0488817691aa58d83764b6c209f8a27c0b3ab3f89d1b8dceca1a62e4973eb"}, ] +[package.dependencies] +typing-extensions = ">=4.7.0" + [package.extras] -dev = ["coverage", "coveralls", "pytest"] +dev = ["coverage", "pytest (>=7.4.4)"] [[package]] name = "exceptiongroup" -version = "1.2.1" +version = "1.2.2" description = "Backport of PEP 654 (exception groups)" optional = false python-versions = ">=3.7" files = [ - {file = "exceptiongroup-1.2.1-py3-none-any.whl", hash = "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad"}, - {file = "exceptiongroup-1.2.1.tar.gz", hash = "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16"}, + {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"}, + {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"}, ] [package.extras] @@ -1296,13 +1395,13 @@ test = ["coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre-commit", [[package]] name = "gprof2dot" -version = "2022.7.29" +version = "2024.6.6" description = "Generate a dot graph from the output of several profilers." optional = false -python-versions = ">=2.7" +python-versions = ">=3.8" files = [ - {file = "gprof2dot-2022.7.29-py2.py3-none-any.whl", hash = "sha256:f165b3851d3c52ee4915eb1bd6cca571e5759823c2cd0f71a79bda93c2dc85d6"}, - {file = "gprof2dot-2022.7.29.tar.gz", hash = "sha256:45b4d298bd36608fccf9511c3fd88a773f7a1abc04d6cd39445b11ba43133ec5"}, + {file = "gprof2dot-2024.6.6-py2.py3-none-any.whl", hash = "sha256:45b14ad7ce64e299c8f526881007b9eb2c6b75505d5613e96e66ee4d5ab33696"}, + {file = "gprof2dot-2024.6.6.tar.gz", hash = "sha256:fa1420c60025a9eb7734f65225b4da02a10fc6dd741b37fa129bc6b41951e5ab"}, ] [[package]] @@ -1399,13 +1498,13 @@ six = ">=1.12" [[package]] name = "griffe" -version = "0.45.2" +version = "1.1.1" description = "Signatures for entire Python programs. Extract the structure, the frame, the skeleton of your project, to generate API documentation or find breaking changes in your API." optional = false python-versions = ">=3.8" files = [ - {file = "griffe-0.45.2-py3-none-any.whl", hash = "sha256:297ec8530d0c68e5b98ff86fb588ebc3aa3559bb5dc21f3caea8d9542a350133"}, - {file = "griffe-0.45.2.tar.gz", hash = "sha256:83ce7dcaafd8cb7f43cbf1a455155015a1eb624b1ffd93249e5e1c4a22b2fdb2"}, + {file = "griffe-1.1.1-py3-none-any.whl", hash = "sha256:0c469411e8d671a545725f5c0851a746da8bd99d354a79fdc4abd45219252efb"}, + {file = "griffe-1.1.1.tar.gz", hash = "sha256:faeb78764c0b2bd010719d6e015d07709b0f260258b5d4dd6c88343d9702aa30"}, ] [package.dependencies] @@ -1470,13 +1569,13 @@ socks = ["socksio (==1.*)"] [[package]] name = "idna" -version = "3.7" +version = "3.8" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, - {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, + {file = "idna-3.8-py3-none-any.whl", hash = "sha256:050b4e5baadcd44d760cedbd2b8e639f2ff89bbc7a5730fcc662954303377aac"}, + {file = "idna-3.8.tar.gz", hash = "sha256:d838c2c0ed6fced7693d5e8ab8e734d5f8fda53a039c0164afb0b82e771e3603"}, ] [[package]] @@ -1500,36 +1599,43 @@ testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packag [[package]] name = "importlib-resources" -version = "6.4.0" +version = "6.4.4" description = "Read resources from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c"}, - {file = "importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145"}, + {file = "importlib_resources-6.4.4-py3-none-any.whl", hash = "sha256:dda242603d1c9cd836c3368b1174ed74cb4049ecd209e7a1a0104620c18c5c11"}, + {file = "importlib_resources-6.4.4.tar.gz", hash = "sha256:20600c8b7361938dc0bb2d5ec0297802e575df486f5a544fa414da65e13721f7"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"] +type = ["pytest-mypy"] [[package]] name = "incremental" -version = "22.10.0" -description = "\"A small library that versions your Python projects.\"" +version = "24.7.2" +description = "A small library that versions your Python projects." optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "incremental-22.10.0-py2.py3-none-any.whl", hash = "sha256:b864a1f30885ee72c5ac2835a761b8fe8aa9c28b9395cacf27286602688d3e51"}, - {file = "incremental-22.10.0.tar.gz", hash = "sha256:912feeb5e0f7e0188e6f42241d2f450002e11bbc0937c65865045854c24c0bd0"}, + {file = "incremental-24.7.2-py3-none-any.whl", hash = "sha256:8cb2c3431530bec48ad70513931a760f446ad6c25e8333ca5d95e24b0ed7b8fe"}, + {file = "incremental-24.7.2.tar.gz", hash = "sha256:fb4f1d47ee60efe87d4f6f0ebb5f70b9760db2b2574c59c8e8912be4ebd464c9"}, ] +[package.dependencies] +setuptools = ">=61.0" +tomli = {version = "*", markers = "python_version < \"3.11\""} + [package.extras] -mypy = ["click (>=6.0)", "mypy (==0.812)", "twisted (>=16.4.0)"] -scripts = ["click (>=6.0)", "twisted (>=16.4.0)"] +scripts = ["click (>=6.0)"] [[package]] name = "inflection" @@ -1670,13 +1776,13 @@ files = [ [[package]] name = "jsonschema" -version = "4.22.0" +version = "4.23.0" description = "An implementation of JSON Schema validation for Python" optional = false python-versions = ">=3.8" files = [ - {file = "jsonschema-4.22.0-py3-none-any.whl", hash = "sha256:ff4cfd6b1367a40e7bc6411caec72effadd3db0bbe5017de188f2d6108335802"}, - {file = "jsonschema-4.22.0.tar.gz", hash = "sha256:5b22d434a45935119af990552c862e5d6d564e8f6601206b305a61fdf661a2b7"}, + {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, + {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, ] [package.dependencies] @@ -1689,7 +1795,7 @@ rpds-py = ">=0.7.1" [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] -format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=24.6.0)"] [[package]] name = "jsonschema-specifications" @@ -1731,30 +1837,30 @@ yamlordereddictloader = "*" [[package]] name = "kombu" -version = "5.3.7" +version = "5.4.0" description = "Messaging library for Python." optional = false python-versions = ">=3.8" files = [ - {file = "kombu-5.3.7-py3-none-any.whl", hash = "sha256:5634c511926309c7f9789f1433e9ed402616b56836ef9878f01bd59267b4c7a9"}, - {file = "kombu-5.3.7.tar.gz", hash = "sha256:011c4cd9a355c14a1de8d35d257314a1d2456d52b7140388561acac3cf1a97bf"}, + {file = "kombu-5.4.0-py3-none-any.whl", hash = "sha256:c8dd99820467610b4febbc7a9e8a0d3d7da2d35116b67184418b51cc520ea6b6"}, + {file = "kombu-5.4.0.tar.gz", hash = "sha256:ad200a8dbdaaa2bbc5f26d2ee7d707d9a1fded353a0f4bd751ce8c7d9f449c60"}, ] [package.dependencies] amqp = ">=5.1.1,<6.0.0" "backports.zoneinfo" = {version = ">=0.2.1", extras = ["tzdata"], markers = "python_version < \"3.9\""} -typing-extensions = {version = "*", markers = "python_version < \"3.10\""} -vine = "*" +typing-extensions = {version = "4.12.2", markers = "python_version < \"3.10\""} +vine = "5.1.0" [package.extras] azureservicebus = ["azure-servicebus (>=7.10.0)"] azurestoragequeues = ["azure-identity (>=1.12.0)", "azure-storage-queue (>=12.6.0)"] confluentkafka = ["confluent-kafka (>=2.2.0)"] -consul = ["python-consul2"] +consul = ["python-consul2 (==0.1.5)"] librabbitmq = ["librabbitmq (>=2.0.0)"] mongodb = ["pymongo (>=4.1.1)"] -msgpack = ["msgpack"] -pyro = ["pyro4"] +msgpack = ["msgpack (==1.0.8)"] +pyro = ["pyro4 (==4.82)"] qpid = ["qpid-python (>=0.26)", "qpid-tools (>=0.26)"] redis = ["redis (>=4.5.2,!=4.5.5,!=5.0.2)"] slmq = ["softlayer-messaging (>=1.0.3)"] @@ -1765,153 +1871,149 @@ zookeeper = ["kazoo (>=2.8.0)"] [[package]] name = "lxml" -version = "5.2.2" +version = "5.3.0" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." optional = false python-versions = ">=3.6" files = [ - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632"}, - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526"}, - {file = "lxml-5.2.2-cp310-cp310-win32.whl", hash = "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30"}, - {file = "lxml-5.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b"}, - {file = "lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438"}, - {file = "lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836"}, - {file = "lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a"}, - {file = "lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48"}, - {file = "lxml-5.2.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e3d9d13603410b72787579769469af730c38f2f25505573a5888a94b62b920f8"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38b67afb0a06b8575948641c1d6d68e41b83a3abeae2ca9eed2ac59892b36706"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c689d0d5381f56de7bd6966a4541bff6e08bf8d3871bbd89a0c6ab18aa699573"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:cf2a978c795b54c539f47964ec05e35c05bd045db5ca1e8366988c7f2fe6b3ce"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:739e36ef7412b2bd940f75b278749106e6d025e40027c0b94a17ef7968d55d56"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d8bbcd21769594dbba9c37d3c819e2d5847656ca99c747ddb31ac1701d0c0ed9"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:2304d3c93f2258ccf2cf7a6ba8c761d76ef84948d87bf9664e14d203da2cd264"}, - {file = "lxml-5.2.2-cp36-cp36m-win32.whl", hash = "sha256:02437fb7308386867c8b7b0e5bc4cd4b04548b1c5d089ffb8e7b31009b961dc3"}, - {file = "lxml-5.2.2-cp36-cp36m-win_amd64.whl", hash = "sha256:edcfa83e03370032a489430215c1e7783128808fd3e2e0a3225deee278585196"}, - {file = "lxml-5.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:28bf95177400066596cdbcfc933312493799382879da504633d16cf60bba735b"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a745cc98d504d5bd2c19b10c79c61c7c3df9222629f1b6210c0368177589fb8"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b590b39ef90c6b22ec0be925b211298e810b4856909c8ca60d27ffbca6c12e6"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b336b0416828022bfd5a2e3083e7f5ba54b96242159f83c7e3eebaec752f1716"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:c2faf60c583af0d135e853c86ac2735ce178f0e338a3c7f9ae8f622fd2eb788c"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:4bc6cb140a7a0ad1f7bc37e018d0ed690b7b6520ade518285dc3171f7a117905"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7ff762670cada8e05b32bf1e4dc50b140790909caa8303cfddc4d702b71ea184"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:57f0a0bbc9868e10ebe874e9f129d2917750adf008fe7b9c1598c0fbbfdde6a6"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:a6d2092797b388342c1bc932077ad232f914351932353e2e8706851c870bca1f"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:60499fe961b21264e17a471ec296dcbf4365fbea611bf9e303ab69db7159ce61"}, - {file = "lxml-5.2.2-cp37-cp37m-win32.whl", hash = "sha256:d9b342c76003c6b9336a80efcc766748a333573abf9350f4094ee46b006ec18f"}, - {file = "lxml-5.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b16db2770517b8799c79aa80f4053cd6f8b716f21f8aca962725a9565ce3ee40"}, - {file = "lxml-5.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7ed07b3062b055d7a7f9d6557a251cc655eed0b3152b76de619516621c56f5d3"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f60fdd125d85bf9c279ffb8e94c78c51b3b6a37711464e1f5f31078b45002421"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a7e24cb69ee5f32e003f50e016d5fde438010c1022c96738b04fc2423e61706"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23cfafd56887eaed93d07bc4547abd5e09d837a002b791e9767765492a75883f"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:19b4e485cd07b7d83e3fe3b72132e7df70bfac22b14fe4bf7a23822c3a35bff5"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:7ce7ad8abebe737ad6143d9d3bf94b88b93365ea30a5b81f6877ec9c0dee0a48"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e49b052b768bb74f58c7dda4e0bdf7b79d43a9204ca584ffe1fb48a6f3c84c66"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d14a0d029a4e176795cef99c056d58067c06195e0c7e2dbb293bf95c08f772a3"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:be49ad33819d7dcc28a309b86d4ed98e1a65f3075c6acd3cd4fe32103235222b"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a6d17e0370d2516d5bb9062c7b4cb731cff921fc875644c3d751ad857ba9c5b1"}, - {file = "lxml-5.2.2-cp38-cp38-win32.whl", hash = "sha256:5b8c041b6265e08eac8a724b74b655404070b636a8dd6d7a13c3adc07882ef30"}, - {file = "lxml-5.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:f61efaf4bed1cc0860e567d2ecb2363974d414f7f1f124b1df368bbf183453a6"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9"}, - {file = "lxml-5.2.2-cp39-cp39-win32.whl", hash = "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf"}, - {file = "lxml-5.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a2f6a1bc2460e643785a2cde17293bd7a8f990884b822f7bca47bee0a82fc66b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e8d351ff44c1638cb6e980623d517abd9f580d2e53bfcd18d8941c052a5a009"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bec4bd9133420c5c52d562469c754f27c5c9e36ee06abc169612c959bd7dbb07"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:55ce6b6d803890bd3cc89975fca9de1dff39729b43b73cb15ddd933b8bc20484"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:8ab6a358d1286498d80fe67bd3d69fcbc7d1359b45b41e74c4a26964ca99c3f8"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:06668e39e1f3c065349c51ac27ae430719d7806c026fec462e5693b08b95696b"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9cd5323344d8ebb9fb5e96da5de5ad4ebab993bbf51674259dbe9d7a18049525"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89feb82ca055af0fe797a2323ec9043b26bc371365847dbe83c7fd2e2f181c34"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e481bba1e11ba585fb06db666bfc23dbe181dbafc7b25776156120bf12e0d5a6"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d6c6ea6a11ca0ff9cd0390b885984ed31157c168565702959c25e2191674a14"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3d98de734abee23e61f6b8c2e08a88453ada7d6486dc7cdc82922a03968928db"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:69ab77a1373f1e7563e0fb5a29a8440367dec051da6c7405333699d07444f511"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324"}, - {file = "lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:dd36439be765e2dde7660212b5275641edbc813e7b24668831a5c8ac91180656"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ae5fe5c4b525aa82b8076c1a59d642c17b6e8739ecf852522c6321852178119d"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:501d0d7e26b4d261fca8132854d845e4988097611ba2531408ec91cf3fd9d20a"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb66442c2546446944437df74379e9cf9e9db353e61301d1a0e26482f43f0dd8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e41506fec7a7f9405b14aa2d5c8abbb4dbbd09d88f9496958b6d00cb4d45330"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f7d4a670107d75dfe5ad080bed6c341d18c4442f9378c9f58e5851e86eb79965"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41ce1f1e2c7755abfc7e759dc34d7d05fd221723ff822947132dc934d122fe22"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:44264ecae91b30e5633013fb66f6ddd05c006d3e0e884f75ce0b4755b3e3847b"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:3c174dc350d3ec52deb77f2faf05c439331d6ed5e702fc247ccb4e6b62d884b7"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:2dfab5fa6a28a0b60a20638dc48e6343c02ea9933e3279ccb132f555a62323d8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b1c8c20847b9f34e98080da785bb2336ea982e7f913eed5809e5a3c872900f32"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2c86bf781b12ba417f64f3422cfc302523ac9cd1d8ae8c0f92a1c66e56ef2e86"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c162b216070f280fa7da844531169be0baf9ccb17263cf5a8bf876fcd3117fa5"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:36aef61a1678cb778097b4a6eeae96a69875d51d1e8f4d4b491ab3cfb54b5a03"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f65e5120863c2b266dbcc927b306c5b78e502c71edf3295dfcb9501ec96e5fc7"}, + {file = "lxml-5.3.0-cp310-cp310-win32.whl", hash = "sha256:ef0c1fe22171dd7c7c27147f2e9c3e86f8bdf473fed75f16b0c2e84a5030ce80"}, + {file = "lxml-5.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:052d99051e77a4f3e8482c65014cf6372e61b0a6f4fe9edb98503bb5364cfee3"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:74bcb423462233bc5d6066e4e98b0264e7c1bed7541fff2f4e34fe6b21563c8b"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a3d819eb6f9b8677f57f9664265d0a10dd6551d227afb4af2b9cd7bdc2ccbf18"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b8f5db71b28b8c404956ddf79575ea77aa8b1538e8b2ef9ec877945b3f46442"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3406b63232fc7e9b8783ab0b765d7c59e7c59ff96759d8ef9632fca27c7ee4"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ecdd78ab768f844c7a1d4a03595038c166b609f6395e25af9b0f3f26ae1230f"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:168f2dfcfdedf611eb285efac1516c8454c8c99caf271dccda8943576b67552e"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa617107a410245b8660028a7483b68e7914304a6d4882b5ff3d2d3eb5948d8c"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:69959bd3167b993e6e710b99051265654133a98f20cec1d9b493b931942e9c16"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:bd96517ef76c8654446fc3db9242d019a1bb5fe8b751ba414765d59f99210b79"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:ab6dd83b970dc97c2d10bc71aa925b84788c7c05de30241b9e96f9b6d9ea3080"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eec1bb8cdbba2925bedc887bc0609a80e599c75b12d87ae42ac23fd199445654"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a7095eeec6f89111d03dabfe5883a1fd54da319c94e0fb104ee8f23616b572d"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6f651ebd0b21ec65dfca93aa629610a0dbc13dbc13554f19b0113da2e61a4763"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:f422a209d2455c56849442ae42f25dbaaba1c6c3f501d58761c619c7836642ec"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:62f7fdb0d1ed2065451f086519865b4c90aa19aed51081979ecd05a21eb4d1be"}, + {file = "lxml-5.3.0-cp311-cp311-win32.whl", hash = "sha256:c6379f35350b655fd817cd0d6cbeef7f265f3ae5fedb1caae2eb442bbeae9ab9"}, + {file = "lxml-5.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:9c52100e2c2dbb0649b90467935c4b0de5528833c76a35ea1a2691ec9f1ee7a1"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e99f5507401436fdcc85036a2e7dc2e28d962550afe1cbfc07c40e454256a859"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:384aacddf2e5813a36495233b64cb96b1949da72bef933918ba5c84e06af8f0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:874a216bf6afaf97c263b56371434e47e2c652d215788396f60477540298218f"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65ab5685d56914b9a2a34d67dd5488b83213d680b0c5d10b47f81da5a16b0b0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aac0bbd3e8dd2d9c45ceb82249e8bdd3ac99131a32b4d35c8af3cc9db1657179"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b369d3db3c22ed14c75ccd5af429086f166a19627e84a8fdade3f8f31426e52a"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c24037349665434f375645fa9d1f5304800cec574d0310f618490c871fd902b3"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:62d172f358f33a26d6b41b28c170c63886742f5b6772a42b59b4f0fa10526cb1"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:c1f794c02903c2824fccce5b20c339a1a14b114e83b306ff11b597c5f71a1c8d"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:5d6a6972b93c426ace71e0be9a6f4b2cfae9b1baed2eed2006076a746692288c"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:3879cc6ce938ff4eb4900d901ed63555c778731a96365e53fadb36437a131a99"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:74068c601baff6ff021c70f0935b0c7bc528baa8ea210c202e03757c68c5a4ff"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ecd4ad8453ac17bc7ba3868371bffb46f628161ad0eefbd0a855d2c8c32dd81a"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7e2f58095acc211eb9d8b5771bf04df9ff37d6b87618d1cbf85f92399c98dae8"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e63601ad5cd8f860aa99d109889b5ac34de571c7ee902d6812d5d9ddcc77fa7d"}, + {file = "lxml-5.3.0-cp312-cp312-win32.whl", hash = "sha256:17e8d968d04a37c50ad9c456a286b525d78c4a1c15dd53aa46c1d8e06bf6fa30"}, + {file = "lxml-5.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:c1a69e58a6bb2de65902051d57fde951febad631a20a64572677a1052690482f"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8c72e9563347c7395910de6a3100a4840a75a6f60e05af5e58566868d5eb2d6a"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e92ce66cd919d18d14b3856906a61d3f6b6a8500e0794142338da644260595cd"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d04f064bebdfef9240478f7a779e8c5dc32b8b7b0b2fc6a62e39b928d428e51"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c2fb570d7823c2bbaf8b419ba6e5662137f8166e364a8b2b91051a1fb40ab8b"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c120f43553ec759f8de1fee2f4794452b0946773299d44c36bfe18e83caf002"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:562e7494778a69086f0312ec9689f6b6ac1c6b65670ed7d0267e49f57ffa08c4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:423b121f7e6fa514ba0c7918e56955a1d4470ed35faa03e3d9f0e3baa4c7e492"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c00f323cc00576df6165cc9d21a4c21285fa6b9989c5c39830c3903dc4303ef3"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl", hash = "sha256:1fdc9fae8dd4c763e8a31e7630afef517eab9f5d5d31a278df087f307bf601f4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_s390x.whl", hash = "sha256:658f2aa69d31e09699705949b5fc4719cbecbd4a97f9656a232e7d6c7be1a367"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1473427aff3d66a3fa2199004c3e601e6c4500ab86696edffdbc84954c72d832"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a87de7dd873bf9a792bf1e58b1c3887b9264036629a5bf2d2e6579fe8e73edff"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:0d7b36afa46c97875303a94e8f3ad932bf78bace9e18e603f2085b652422edcd"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:cf120cce539453ae086eacc0130a324e7026113510efa83ab42ef3fcfccac7fb"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:df5c7333167b9674aa8ae1d4008fa4bc17a313cc490b2cca27838bbdcc6bb15b"}, + {file = "lxml-5.3.0-cp313-cp313-win32.whl", hash = "sha256:c802e1c2ed9f0c06a65bc4ed0189d000ada8049312cfeab6ca635e39c9608957"}, + {file = "lxml-5.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:406246b96d552e0503e17a1006fd27edac678b3fcc9f1be71a2f94b4ff61528d"}, + {file = "lxml-5.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:8f0de2d390af441fe8b2c12626d103540b5d850d585b18fcada58d972b74a74e"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1afe0a8c353746e610bd9031a630a95bcfb1a720684c3f2b36c4710a0a96528f"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56b9861a71575f5795bde89256e7467ece3d339c9b43141dbdd54544566b3b94"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:9fb81d2824dff4f2e297a276297e9031f46d2682cafc484f49de182aa5e5df99"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2c226a06ecb8cdef28845ae976da407917542c5e6e75dcac7cc33eb04aaeb237"}, + {file = "lxml-5.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:7d3d1ca42870cdb6d0d29939630dbe48fa511c203724820fc0fd507b2fb46577"}, + {file = "lxml-5.3.0-cp36-cp36m-win32.whl", hash = "sha256:094cb601ba9f55296774c2d57ad68730daa0b13dc260e1f941b4d13678239e70"}, + {file = "lxml-5.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:eafa2c8658f4e560b098fe9fc54539f86528651f61849b22111a9b107d18910c"}, + {file = "lxml-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cb83f8a875b3d9b458cada4f880fa498646874ba4011dc974e071a0a84a1b033"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:25f1b69d41656b05885aa185f5fdf822cb01a586d1b32739633679699f220391"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23e0553b8055600b3bf4a00b255ec5c92e1e4aebf8c2c09334f8368e8bd174d6"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ada35dd21dc6c039259596b358caab6b13f4db4d4a7f8665764d616daf9cc1d"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:81b4e48da4c69313192d8c8d4311e5d818b8be1afe68ee20f6385d0e96fc9512"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:2bc9fd5ca4729af796f9f59cd8ff160fe06a474da40aca03fcc79655ddee1a8b"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07da23d7ee08577760f0a71d67a861019103e4812c87e2fab26b039054594cc5"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:ea2e2f6f801696ad7de8aec061044d6c8c0dd4037608c7cab38a9a4d316bfb11"}, + {file = "lxml-5.3.0-cp37-cp37m-win32.whl", hash = "sha256:5c54afdcbb0182d06836cc3d1be921e540be3ebdf8b8a51ee3ef987537455f84"}, + {file = "lxml-5.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:f2901429da1e645ce548bf9171784c0f74f0718c3f6150ce166be39e4dd66c3e"}, + {file = "lxml-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c56a1d43b2f9ee4786e4658c7903f05da35b923fb53c11025712562d5cc02753"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ee8c39582d2652dcd516d1b879451500f8db3fe3607ce45d7c5957ab2596040"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdf3a3059611f7585a78ee10399a15566356116a4288380921a4b598d807a22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:146173654d79eb1fc97498b4280c1d3e1e5d58c398fa530905c9ea50ea849b22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0a7056921edbdd7560746f4221dca89bb7a3fe457d3d74267995253f46343f15"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:9e4b47ac0f5e749cfc618efdf4726269441014ae1d5583e047b452a32e221920"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f914c03e6a31deb632e2daa881fe198461f4d06e57ac3d0e05bbcab8eae01945"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:213261f168c5e1d9b7535a67e68b1f59f92398dd17a56d934550837143f79c42"}, + {file = "lxml-5.3.0-cp38-cp38-win32.whl", hash = "sha256:218c1b2e17a710e363855594230f44060e2025b05c80d1f0661258142b2add2e"}, + {file = "lxml-5.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:315f9542011b2c4e1d280e4a20ddcca1761993dda3afc7a73b01235f8641e903"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ffc23010330c2ab67fac02781df60998ca8fe759e8efde6f8b756a20599c5de"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2b3778cb38212f52fac9fe913017deea2fdf4eb1a4f8e4cfc6b009a13a6d3fcc"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b0c7a688944891086ba192e21c5229dea54382f4836a209ff8d0a660fac06be"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:747a3d3e98e24597981ca0be0fd922aebd471fa99d0043a3842d00cdcad7ad6a"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86a6b24b19eaebc448dc56b87c4865527855145d851f9fc3891673ff97950540"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b11a5d918a6216e521c715b02749240fb07ae5a1fefd4b7bf12f833bc8b4fe70"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68b87753c784d6acb8a25b05cb526c3406913c9d988d51f80adecc2b0775d6aa"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:109fa6fede314cc50eed29e6e56c540075e63d922455346f11e4d7a036d2b8cf"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:02ced472497b8362c8e902ade23e3300479f4f43e45f4105c85ef43b8db85229"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:6b038cc86b285e4f9fea2ba5ee76e89f21ed1ea898e287dc277a25884f3a7dfe"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:7437237c6a66b7ca341e868cda48be24b8701862757426852c9b3186de1da8a2"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7f41026c1d64043a36fda21d64c5026762d53a77043e73e94b71f0521939cc71"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:482c2f67761868f0108b1743098640fbb2a28a8e15bf3f47ada9fa59d9fe08c3"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1483fd3358963cc5c1c9b122c80606a3a79ee0875bcac0204149fa09d6ff2727"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2dec2d1130a9cda5b904696cec33b2cfb451304ba9081eeda7f90f724097300a"}, + {file = "lxml-5.3.0-cp39-cp39-win32.whl", hash = "sha256:a0eabd0a81625049c5df745209dc7fcef6e2aea7793e5f003ba363610aa0a3ff"}, + {file = "lxml-5.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:89e043f1d9d341c52bf2af6d02e6adde62e0a46e6755d5eb60dc6e4f0b8aeca2"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7b1cd427cb0d5f7393c31b7496419da594fe600e6fdc4b105a54f82405e6626c"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51806cfe0279e06ed8500ce19479d757db42a30fd509940b1701be9c86a5ff9a"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee70d08fd60c9565ba8190f41a46a54096afa0eeb8f76bd66f2c25d3b1b83005"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:8dc2c0395bea8254d8daebc76dcf8eb3a95ec2a46fa6fae5eaccee366bfe02ce"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6ba0d3dcac281aad8a0e5b14c7ed6f9fa89c8612b47939fc94f80b16e2e9bc83"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:6e91cf736959057f7aac7adfc83481e03615a8e8dd5758aa1d95ea69e8931dba"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:94d6c3782907b5e40e21cadf94b13b0842ac421192f26b84c45f13f3c9d5dc27"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c300306673aa0f3ed5ed9372b21867690a17dba38c68c44b287437c362ce486b"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78d9b952e07aed35fe2e1a7ad26e929595412db48535921c5013edc8aa4a35ce"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:01220dca0d066d1349bd6a1726856a78f7929f3878f7e2ee83c296c69495309e"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:2d9b8d9177afaef80c53c0a9e30fa252ff3036fb1c6494d427c066a4ce6a282f"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:20094fc3f21ea0a8669dc4c61ed7fa8263bd37d97d93b90f28fc613371e7a875"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ace2c2326a319a0bb8a8b0e5b570c764962e95818de9f259ce814ee666603f19"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92e67a0be1639c251d21e35fe74df6bcc40cba445c2cda7c4a967656733249e2"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd5350b55f9fecddc51385463a4f67a5da829bc741e38cf689f38ec9023f54ab"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c1fefd7e3d00921c44dc9ca80a775af49698bbfd92ea84498e56acffd4c5469"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:71a8dd38fbd2f2319136d4ae855a7078c69c9a38ae06e0c17c73fd70fc6caad8"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:97acf1e1fd66ab53dacd2c35b319d7e548380c2e9e8c54525c6e76d21b1ae3b1"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:68934b242c51eb02907c5b81d138cb977b2129a0a75a8f8b60b01cb8586c7b21"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bc2b8292966b23a6a0121f7a6c51d45d2347edcc75f016ac123b8054d3f2"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18feb4b93302091b1541221196a2155aa296c363fd233814fa11e181adebc52f"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:3eb44520c4724c2e1a57c0af33a379eee41792595023f367ba3952a2d96c2aab"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:609251a0ca4770e5a8768ff902aa02bf636339c5a93f9349b48eb1f606f7f3e9"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:516f491c834eb320d6c843156440fe7fc0d50b33e44387fcec5b02f0bc118a4c"}, + {file = "lxml-5.3.0.tar.gz", hash = "sha256:4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f"}, ] [package.extras] @@ -1919,17 +2021,17 @@ cssselect = ["cssselect (>=0.7)"] html-clean = ["lxml-html-clean"] html5 = ["html5lib"] htmlsoup = ["BeautifulSoup4"] -source = ["Cython (>=3.0.10)"] +source = ["Cython (>=3.0.11)"] [[package]] name = "markdown" -version = "3.5.2" +version = "3.6" description = "Python implementation of John Gruber's Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "Markdown-3.5.2-py3-none-any.whl", hash = "sha256:d43323865d89fc0cb9b20c75fc8ad313af307cc087e84b657d9eec768eddeadd"}, - {file = "Markdown-3.5.2.tar.gz", hash = "sha256:e1ac7b3dc550ee80e602e71c1d168002f062e49f1b11e26a36264dafd4df2ef8"}, + {file = "Markdown-3.6-py3-none-any.whl", hash = "sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f"}, + {file = "Markdown-3.6.tar.gz", hash = "sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224"}, ] [package.dependencies] @@ -2060,44 +2162,44 @@ files = [ [[package]] name = "mkdocs" -version = "1.5.2" +version = "1.6.0" description = "Project documentation with Markdown." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "mkdocs-1.5.2-py3-none-any.whl", hash = "sha256:60a62538519c2e96fe8426654a67ee177350451616118a41596ae7c876bb7eac"}, - {file = "mkdocs-1.5.2.tar.gz", hash = "sha256:70d0da09c26cff288852471be03c23f0f521fc15cf16ac89c7a3bfb9ae8d24f9"}, + {file = "mkdocs-1.6.0-py3-none-any.whl", hash = "sha256:1eb5cb7676b7d89323e62b56235010216319217d4af5ddc543a91beb8d125ea7"}, + {file = "mkdocs-1.6.0.tar.gz", hash = "sha256:a73f735824ef83a4f3bcb7a231dcab23f5a838f88b7efc54a0eef5fbdbc3c512"}, ] [package.dependencies] click = ">=7.0" colorama = {version = ">=0.4", markers = "platform_system == \"Windows\""} ghp-import = ">=1.0" -importlib-metadata = {version = ">=4.3", markers = "python_version < \"3.10\""} +importlib-metadata = {version = ">=4.4", markers = "python_version < \"3.10\""} jinja2 = ">=2.11.1" -markdown = ">=3.2.1" +markdown = ">=3.3.6" markupsafe = ">=2.0.1" mergedeep = ">=1.3.4" +mkdocs-get-deps = ">=0.2.0" packaging = ">=20.5" pathspec = ">=0.11.1" -platformdirs = ">=2.2.0" pyyaml = ">=5.1" pyyaml-env-tag = ">=0.1" watchdog = ">=2.0" [package.extras] i18n = ["babel (>=2.9.0)"] -min-versions = ["babel (==2.9.0)", "click (==7.0)", "colorama (==0.4)", "ghp-import (==1.0)", "importlib-metadata (==4.3)", "jinja2 (==2.11.1)", "markdown (==3.2.1)", "markupsafe (==2.0.1)", "mergedeep (==1.3.4)", "packaging (==20.5)", "pathspec (==0.11.1)", "platformdirs (==2.2.0)", "pyyaml (==5.1)", "pyyaml-env-tag (==0.1)", "typing-extensions (==3.10)", "watchdog (==2.0)"] +min-versions = ["babel (==2.9.0)", "click (==7.0)", "colorama (==0.4)", "ghp-import (==1.0)", "importlib-metadata (==4.4)", "jinja2 (==2.11.1)", "markdown (==3.3.6)", "markupsafe (==2.0.1)", "mergedeep (==1.3.4)", "mkdocs-get-deps (==0.2.0)", "packaging (==20.5)", "pathspec (==0.11.1)", "pyyaml (==5.1)", "pyyaml-env-tag (==0.1)", "watchdog (==2.0)"] [[package]] name = "mkdocs-autorefs" -version = "1.0.1" +version = "1.1.0" description = "Automatically link across pages in MkDocs." optional = false python-versions = ">=3.8" files = [ - {file = "mkdocs_autorefs-1.0.1-py3-none-any.whl", hash = "sha256:aacdfae1ab197780fb7a2dac92ad8a3d8f7ca8049a9cbe56a4218cd52e8da570"}, - {file = "mkdocs_autorefs-1.0.1.tar.gz", hash = "sha256:f684edf847eced40b570b57846b15f0bf57fb93ac2c510450775dcf16accb971"}, + {file = "mkdocs_autorefs-1.1.0-py3-none-any.whl", hash = "sha256:492ac42f50214e81565e968f8cb0df9aba9d981542b9e7121b8f8ae9407fe6eb"}, + {file = "mkdocs_autorefs-1.1.0.tar.gz", hash = "sha256:f2fd43b11f66284bd014f9b542a05c8ecbfaad4e0d7b30b68584788217b6c656"}, ] [package.dependencies] @@ -2105,27 +2207,51 @@ Markdown = ">=3.3" markupsafe = ">=2.0.1" mkdocs = ">=1.1" +[[package]] +name = "mkdocs-get-deps" +version = "0.2.0" +description = "MkDocs extension that lists all dependencies according to a mkdocs.yml file" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mkdocs_get_deps-0.2.0-py3-none-any.whl", hash = "sha256:2bf11d0b133e77a0dd036abeeb06dec8775e46efa526dc70667d8863eefc6134"}, + {file = "mkdocs_get_deps-0.2.0.tar.gz", hash = "sha256:162b3d129c7fad9b19abfdcb9c1458a651628e4b1dea628ac68790fb3061c60c"}, +] + +[package.dependencies] +importlib-metadata = {version = ">=4.3", markers = "python_version < \"3.10\""} +mergedeep = ">=1.3.4" +platformdirs = ">=2.2.0" +pyyaml = ">=5.1" + [[package]] name = "mkdocs-material" -version = "9.1.15" +version = "9.5.32" description = "Documentation that simply works" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "mkdocs_material-9.1.15-py3-none-any.whl", hash = "sha256:b49e12869ab464558e2dd3c5792da5b748a7e0c48ee83b4d05715f98125a7a39"}, - {file = "mkdocs_material-9.1.15.tar.gz", hash = "sha256:8513ab847c9a541ed3d11a3a7eed556caf72991ee786c31c5aac6691a121088a"}, + {file = "mkdocs_material-9.5.32-py3-none-any.whl", hash = "sha256:f3704f46b63d31b3cd35c0055a72280bed825786eccaf19c655b44e0cd2c6b3f"}, + {file = "mkdocs_material-9.5.32.tar.gz", hash = "sha256:38ed66e6d6768dde4edde022554553e48b2db0d26d1320b19e2e2b9da0be1120"}, ] [package.dependencies] -colorama = ">=0.4" -jinja2 = ">=3.0" -markdown = ">=3.2" -mkdocs = ">=1.4.2" -mkdocs-material-extensions = ">=1.1" -pygments = ">=2.14" -pymdown-extensions = ">=9.9.1" -regex = ">=2022.4.24" -requests = ">=2.26" +babel = ">=2.10,<3.0" +colorama = ">=0.4,<1.0" +jinja2 = ">=3.0,<4.0" +markdown = ">=3.2,<4.0" +mkdocs = ">=1.6,<2.0" +mkdocs-material-extensions = ">=1.3,<2.0" +paginate = ">=0.5,<1.0" +pygments = ">=2.16,<3.0" +pymdown-extensions = ">=10.2,<11.0" +regex = ">=2022.4" +requests = ">=2.26,<3.0" + +[package.extras] +git = ["mkdocs-git-committers-plugin-2 (>=1.1,<2.0)", "mkdocs-git-revision-date-localized-plugin (>=1.2.4,<2.0)"] +imaging = ["cairosvg (>=2.6,<3.0)", "pillow (>=10.2,<11.0)"] +recommended = ["mkdocs-minify-plugin (>=0.7,<1.0)", "mkdocs-redirects (>=1.2,<2.0)", "mkdocs-rss-plugin (>=1.6,<2.0)"] [[package]] name = "mkdocs-material-extensions" @@ -2140,22 +2266,24 @@ files = [ [[package]] name = "mkdocstrings" -version = "0.22.0" +version = "0.25.2" description = "Automatic documentation from sources, for MkDocs." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "mkdocstrings-0.22.0-py3-none-any.whl", hash = "sha256:2d4095d461554ff6a778fdabdca3c00c468c2f1459d469f7a7f622a2b23212ba"}, - {file = "mkdocstrings-0.22.0.tar.gz", hash = "sha256:82a33b94150ebb3d4b5c73bab4598c3e21468c79ec072eff6931c8f3bfc38256"}, + {file = "mkdocstrings-0.25.2-py3-none-any.whl", hash = "sha256:9e2cda5e2e12db8bb98d21e3410f3f27f8faab685a24b03b06ba7daa5b92abfc"}, + {file = "mkdocstrings-0.25.2.tar.gz", hash = "sha256:5cf57ad7f61e8be3111a2458b4e49c2029c9cb35525393b179f9c916ca8042dc"}, ] [package.dependencies] +click = ">=7.0" importlib-metadata = {version = ">=4.6", markers = "python_version < \"3.10\""} Jinja2 = ">=2.11.1" Markdown = ">=3.3" MarkupSafe = ">=1.1" -mkdocs = ">=1.2" +mkdocs = ">=1.4" mkdocs-autorefs = ">=0.3.1" +platformdirs = ">=2.2.0" pymdown-extensions = ">=6.3" typing-extensions = {version = ">=4.1", markers = "python_version < \"3.10\""} @@ -2166,18 +2294,18 @@ python-legacy = ["mkdocstrings-python-legacy (>=0.2.1)"] [[package]] name = "mkdocstrings-python" -version = "1.5.2" +version = "1.10.8" description = "A Python handler for mkdocstrings." optional = false python-versions = ">=3.8" files = [ - {file = "mkdocstrings_python-1.5.2-py3-none-any.whl", hash = "sha256:ed37ca6d216986e2ac3530c19c3e7be381d1e3d09ea414e4ff467d6fd2cbd9c1"}, - {file = "mkdocstrings_python-1.5.2.tar.gz", hash = "sha256:81eb4a93bc454a253daf247d1a11397c435d641c64fa165324c17c06170b1dfb"}, + {file = "mkdocstrings_python-1.10.8-py3-none-any.whl", hash = "sha256:bb12e76c8b071686617f824029cb1dfe0e9afe89f27fb3ad9a27f95f054dcd89"}, + {file = "mkdocstrings_python-1.10.8.tar.gz", hash = "sha256:5856a59cbebbb8deb133224a540de1ff60bded25e54d8beacc375bb133d39016"}, ] [package.dependencies] -griffe = ">=0.35" -mkdocstrings = ">=0.20" +griffe = ">=0.49" +mkdocstrings = ">=0.25" [[package]] name = "mypy-extensions" @@ -2224,48 +2352,49 @@ typing-extensions = ">=4.3.0" [[package]] name = "nautobot" -version = "2.2.5" +version = "2.3.1" description = "Source of truth and network automation platform." optional = false -python-versions = "<3.12,>=3.8" +python-versions = "<3.13,>=3.8" files = [ - {file = "nautobot-2.2.5-py3-none-any.whl", hash = "sha256:8b4256cb5f76b13d56c754b8a04e2869bc78d6a6593b2e7aae8094073320cb49"}, - {file = "nautobot-2.2.5.tar.gz", hash = "sha256:0b0ac6aae922092dad271feccfef3efe1e1482284b23d0acbdb0c61f78227b57"}, + {file = "nautobot-2.3.1-py3-none-any.whl", hash = "sha256:28c02e229dcc87d69dba0e75d36c3bd219fefa9328ac996471e9b39f3ec74bb3"}, + {file = "nautobot-2.3.1.tar.gz", hash = "sha256:96a3f0ee9cf73b404abca34bd2ed53a6d4494fcf85338734baa10dcd977f27f7"}, ] [package.dependencies] -celery = ">=5.3.1,<5.4.0" -Django = ">=3.2.25,<3.3.0" +celery = ">=5.3.6,<5.4.0" +Django = ">=4.2.15,<4.3.0" django-ajax-tables = ">=1.1.1,<1.2.0" django-celery-beat = ">=2.6.0,<2.7.0" django-celery-results = ">=2.5.1,<2.6.0" -django-constance = {version = ">=2.9.1,<2.10.0", extras = ["database"]} -django-cors-headers = ">=4.3.1,<4.4.0" -django-db-file-storage = ">=0.5.5,<0.6.0" +django-constance = ">=3.1.0,<3.2.0" +django-cors-headers = ">=4.4.0,<4.5.0" +django-db-file-storage = ">=0.5.6.1,<0.6.0.0" django-extensions = ">=3.2.3,<3.3.0" -django-filter = ">=23.5,<23.6" -django-health-check = ">=3.18.1,<3.19.0" +django-filter = ">=24.2,<24.3" +django-health-check = ">=3.18.3,<3.19.0" django-jinja = ">=2.11.0,<2.12.0" django-prometheus = ">=2.3.1,<2.4.0" django-redis = ">=5.4.0,<5.5.0" django-silk = ">=5.1.0,<5.2.0" +django-structlog = {version = ">=8.1.0,<9.0.0", extras = ["all"]} django-tables2 = ">=2.7.0,<2.8.0" -django-taggit = ">=4.0.0,<4.1.0" -django-timezone-field = ">=5.1,<5.2" -django-tree-queries = ">=0.17.0,<0.18.0" +django-taggit = ">=5.0.0,<5.1.0" +django-timezone-field = ">=7.0,<7.1" +django-tree-queries = ">=0.19.0,<0.20.0" django-webserver = ">=1.2.0,<1.3.0" -djangorestframework = ">=3.15.1,<3.16.0" +djangorestframework = ">=3.15.2,<3.16.0" drf-react-template-framework = ">=0.0.17,<0.0.18" -drf-spectacular = {version = ">=0.26.5,<0.27.0", extras = ["sidecar"]} -emoji = ">=2.11.0,<2.12.0" +drf-spectacular = {version = ">=0.27.2,<0.28.0", extras = ["sidecar"]} +emoji = ">=2.12.1,<2.13.0" GitPython = ">=3.1.43,<3.2.0" graphene-django = ">=2.16.0,<2.17.0" graphene-django-optimizer = ">=0.8.0,<0.9.0" Jinja2 = ">=3.1.4,<3.2.0" jsonschema = ">=4.7.0,<5.0.0" -Markdown = ">=3.5.2,<3.6.0" +Markdown = ">=3.6,<3.7" MarkupSafe = ">=2.1.5,<2.2.0" -netaddr = ">=0.10.1,<0.11.0" +netaddr = ">=1.3.0,<1.4.0" netutils = ">=1.6.0,<2.0.0" nh3 = ">=0.2.15,<0.3.0" packaging = ">=23.1" @@ -2275,15 +2404,15 @@ psycopg2-binary = ">=2.9.9,<2.10.0" python-slugify = ">=8.0.3,<8.1.0" pyuwsgi = ">=2.0.23,<2.1.0" PyYAML = ">=6.0,<6.1" -social-auth-app-django = ">=5.4.1,<5.5.0" +social-auth-app-django = ">=5.4.2,<5.5.0" svgwrite = ">=1.4.2,<1.5.0" [package.extras] -all = ["django-auth-ldap (>=4.7.0,<4.8.0)", "django-storages (>=1.14.2,<1.15.0)", "mysqlclient (>=2.2.3,<2.3.0)", "napalm (>=4.1.0,<4.2.0)", "social-auth-core[saml] (>=4.5.3,<4.6.0)"] -ldap = ["django-auth-ldap (>=4.7.0,<4.8.0)"] +all = ["django-auth-ldap (>=4.8.0,<4.9.0)", "django-storages (==1.14.3)", "mysqlclient (>=2.2.3,<2.3.0)", "napalm (>=4.1.0,<6.0.0)", "social-auth-core[saml] (>=4.5.3,<4.6.0)"] +ldap = ["django-auth-ldap (>=4.8.0,<4.9.0)"] mysql = ["mysqlclient (>=2.2.3,<2.3.0)"] -napalm = ["napalm (>=4.1.0,<4.2.0)"] -remote-storage = ["django-storages (>=1.14.2,<1.15.0)"] +napalm = ["napalm (>=4.1.0,<6.0.0)"] +remote-storage = ["django-storages (==1.14.3)"] sso = ["social-auth-core[saml] (>=4.5.3,<4.6.0)"] [[package]] @@ -2304,29 +2433,31 @@ nornir-nautobot = ">=3.0.0,<4.0.0" [[package]] name = "nautobot-ssot" -version = "2.6.1" +version = "3.0.1" description = "Nautobot Single Source of Truth" optional = false python-versions = "<3.12,>=3.8" files = [ - {file = "nautobot_ssot-2.6.1-py3-none-any.whl", hash = "sha256:6368980a09ac27e7e21f0e80de0b0cae0e70a2ecf4d2340eb9250907167e8864"}, - {file = "nautobot_ssot-2.6.1.tar.gz", hash = "sha256:88f1e0387a7668636ffca3c59ff2f828b7676bfa54301b9834f34a45084e884b"}, + {file = "nautobot_ssot-3.0.1-py3-none-any.whl", hash = "sha256:e530a0ec78e9b85c88151e3e6fdd7e026979820dbe86a4ca047231c3c3f663a3"}, + {file = "nautobot_ssot-3.0.1.tar.gz", hash = "sha256:7dbc038cbcca04d3a07b9b1b198e9a262e99e8741a5fba125fa1810edff33cc3"}, ] [package.dependencies] -diffsync = ">=1.6.0,<2.0.0" +diffsync = ">=2.0.0,<3.0.0" Markdown = "!=3.3.5" nautobot = ">=2.1.0,<3.0.0" packaging = ">=21.3,<24" prometheus-client = ">=0.17.1" +retry = ">=0.9.2,<0.10.0" [package.extras] aci = ["PyYAML (>=6)"] -all = ["Jinja2 (>=2.11.3)", "PyYAML (>=6)", "cloudvision (>=1.9.0,<2.0.0)", "cvprac (>=1.2.2,<2.0.0)", "dnspython (>=2.1.0,<3.0.0)", "ijson (>=2.5.1)", "ipfabric (>=6.0.9,<6.1.0)", "ipfabric-diagrams (>=6.0.2,<6.1.0)", "nautobot-device-lifecycle-mgmt (>=2.0.0,<3.0.0)", "netutils (>=1.0.0,<2.0.0)", "oauthlib (>=3.1.0)", "python-magic (>=0.4.15)", "pytz (>=2019.3)", "requests (>=2.21.0)", "requests-oauthlib (>=1.3.0)", "six (>=1.13.0)"] +all = ["Jinja2 (>=2.11.3)", "PyYAML (>=6)", "cloudvision (>=1.9.0,<2.0.0)", "cvprac (>=1.2.2,<2.0.0)", "dnacentersdk (>=2.5.6,<3.0.0)", "dnspython (>=2.1.0,<3.0.0)", "ijson (>=2.5.1)", "ipfabric (>=6.0.0,<7.0.0)", "nautobot-device-lifecycle-mgmt (>=2.0.0,<3.0.0)", "netutils (>=1.9.0,<2.0.0)", "oauthlib (>=3.1.0)", "python-magic (>=0.4.15)", "pytz (>=2019.3)", "requests (>=2.21.0)", "requests-oauthlib (>=1.3.0)", "six (>=1.13.0)"] aristacv = ["cloudvision (>=1.9.0,<2.0.0)", "cvprac (>=1.2.2,<2.0.0)"] device42 = ["requests (>=2.21.0)"] +dna-center = ["dnacentersdk (>=2.5.6,<3.0.0)", "netutils (>=1.9.0,<2.0.0)"] infoblox = ["dnspython (>=2.1.0,<3.0.0)"] -ipfabric = ["httpx (>=0.23.3)", "ipfabric (>=6.0.9,<6.1.0)", "ipfabric-diagrams (>=6.0.2,<6.1.0)", "netutils (>=1.0.0,<2.0.0)"] +ipfabric = ["httpx (>=0.23.3)", "ipfabric (>=6.0.0,<7.0.0)", "netutils (>=1.9.0,<2.0.0)"] nautobot-device-lifecycle-mgmt = ["nautobot-device-lifecycle-mgmt (>=2.0.0,<3.0.0)"] pysnow = ["ijson (>=2.5.1)", "oauthlib (>=3.1.0)", "python-magic (>=0.4.15)", "pytz (>=2019.3)", "requests (>=2.21.0)", "requests-oauthlib (>=1.3.0)", "six (>=1.13.0)"] servicenow = ["Jinja2 (>=2.11.3)", "PyYAML (>=6)", "ijson (>=2.5.1)", "oauthlib (>=3.1.0)", "python-magic (>=0.4.15)", "pytz (>=2019.3)", "requests (>=2.21.0)", "requests-oauthlib (>=1.3.0)", "six (>=1.13.0)"] @@ -2349,32 +2480,37 @@ six = "*" [[package]] name = "netaddr" -version = "0.10.1" +version = "1.3.0" description = "A network address manipulation library for Python" optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "netaddr-0.10.1-py2.py3-none-any.whl", hash = "sha256:9822305b42ea1020d54fee322d43cee5622b044c07a1f0130b459bb467efcf88"}, - {file = "netaddr-0.10.1.tar.gz", hash = "sha256:f4da4222ca8c3f43c8e18a8263e5426c750a3a837fdfeccf74c68d0408eaa3bf"}, + {file = "netaddr-1.3.0-py3-none-any.whl", hash = "sha256:c2c6a8ebe5554ce33b7d5b3a306b71bbb373e000bbbf2350dd5213cc56e3dbbe"}, + {file = "netaddr-1.3.0.tar.gz", hash = "sha256:5c3c3d9895b551b763779ba7db7a03487dc1f8e3b385af819af341ae9ef6e48a"}, ] +[package.extras] +nicer-shell = ["ipython"] + [[package]] name = "netmiko" -version = "4.3.0" +version = "4.4.0" description = "Multi-vendor library to simplify legacy CLI connections to network devices" optional = false -python-versions = ">=3.8,<4.0" +python-versions = "<4.0,>=3.8" files = [ - {file = "netmiko-4.3.0-py3-none-any.whl", hash = "sha256:a873b186e0b61be4a2100eda51e996d917ceddce195b734346b686757e61d324"}, - {file = "netmiko-4.3.0.tar.gz", hash = "sha256:da90f6efdf33b4140eb6cd7f2272773c2ce144fa74ac34d5ecac1b4d4607f1fb"}, + {file = "netmiko-4.4.0-py3-none-any.whl", hash = "sha256:2ff4683f013fac0f80715286c7d3250e89166aefc4421cb75d3ff483f2ebbbc0"}, + {file = "netmiko-4.4.0.tar.gz", hash = "sha256:25ff1237976aa3ff2cacf04949314638c899220a1675bd029e31b07ce20ce3b6"}, ] [package.dependencies] -ntc-templates = ">=2.0.0" +cffi = ">=1.17.0rc1" +ntc-templates = ">=3.1.0" paramiko = ">=2.9.5" pyserial = ">=3.3" pyyaml = ">=5.3" scp = ">=0.13.6" +setuptools = ">=65.0.0" textfsm = ">=1.1.3" [[package]] @@ -2393,27 +2529,27 @@ optionals = ["jsonschema (>=4.17.3,<5.0.0)", "napalm (>=4.0.0,<5.0.0)"] [[package]] name = "nh3" -version = "0.2.17" +version = "0.2.18" description = "Python bindings to the ammonia HTML sanitization library." optional = false python-versions = "*" files = [ - {file = "nh3-0.2.17-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:551672fd71d06cd828e282abdb810d1be24e1abb7ae2543a8fa36a71c1006fe9"}, - {file = "nh3-0.2.17-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:c551eb2a3876e8ff2ac63dff1585236ed5dfec5ffd82216a7a174f7c5082a78a"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:66f17d78826096291bd264f260213d2b3905e3c7fae6dfc5337d49429f1dc9f3"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0316c25b76289cf23be6b66c77d3608a4fdf537b35426280032f432f14291b9a"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:22c26e20acbb253a5bdd33d432a326d18508a910e4dcf9a3316179860d53345a"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:85cdbcca8ef10733bd31f931956f7fbb85145a4d11ab9e6742bbf44d88b7e351"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:40015514022af31975c0b3bca4014634fa13cb5dc4dbcbc00570acc781316dcc"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ba73a2f8d3a1b966e9cdba7b211779ad8a2561d2dba9674b8a19ed817923f65f"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c21bac1a7245cbd88c0b0e4a420221b7bfa838a2814ee5bb924e9c2f10a1120b"}, - {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:d7a25fd8c86657f5d9d576268e3b3767c5cd4f42867c9383618be8517f0f022a"}, - {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:c790769152308421283679a142dbdb3d1c46c79c823008ecea8e8141db1a2062"}, - {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:b4427ef0d2dfdec10b641ed0bdaf17957eb625b2ec0ea9329b3d28806c153d71"}, - {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a3f55fabe29164ba6026b5ad5c3151c314d136fd67415a17660b4aaddacf1b10"}, - {file = "nh3-0.2.17-cp37-abi3-win32.whl", hash = "sha256:1a814dd7bba1cb0aba5bcb9bebcc88fd801b63e21e2450ae6c52d3b3336bc911"}, - {file = "nh3-0.2.17-cp37-abi3-win_amd64.whl", hash = "sha256:1aa52a7def528297f256de0844e8dd680ee279e79583c76d6fa73a978186ddfb"}, - {file = "nh3-0.2.17.tar.gz", hash = "sha256:40d0741a19c3d645e54efba71cb0d8c475b59135c1e3c580f879ad5514cbf028"}, + {file = "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:14c5a72e9fe82aea5fe3072116ad4661af5cf8e8ff8fc5ad3450f123e4925e86"}, + {file = "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:7b7c2a3c9eb1a827d42539aa64091640bd275b81e097cd1d8d82ef91ffa2e811"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42c64511469005058cd17cc1537578eac40ae9f7200bedcfd1fc1a05f4f8c200"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0411beb0589eacb6734f28d5497ca2ed379eafab8ad8c84b31bb5c34072b7164"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:5f36b271dae35c465ef5e9090e1fdaba4a60a56f0bb0ba03e0932a66f28b9189"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34c03fa78e328c691f982b7c03d4423bdfd7da69cd707fe572f544cf74ac23ad"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19aaba96e0f795bd0a6c56291495ff59364f4300d4a39b29a0abc9cb3774a84b"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ceed6e661954871d6cd78b410213bdcb136f79aafe22aa7182e028b8c7307"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6955369e4d9f48f41e3f238a9e60f9410645db7e07435e62c6a9ea6135a4907f"}, + {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:f0eca9ca8628dbb4e916ae2491d72957fdd35f7a5d326b7032a345f111ac07fe"}, + {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:3a157ab149e591bb638a55c8c6bcb8cdb559c8b12c13a8affaba6cedfe51713a"}, + {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:c8b3a1cebcba9b3669ed1a84cc65bf005728d2f0bc1ed2a6594a992e817f3a50"}, + {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:36c95d4b70530b320b365659bb5034341316e6a9b30f0b25fa9c9eff4c27a204"}, + {file = "nh3-0.2.18-cp37-abi3-win32.whl", hash = "sha256:a7f1b5b2c15866f2db413a3649a8fe4fd7b428ae58be2c0f6bca5eefd53ca2be"}, + {file = "nh3-0.2.18-cp37-abi3-win_amd64.whl", hash = "sha256:8ce0f819d2f1933953fca255db2471ad58184a60508f03e6285e5114b6254844"}, + {file = "nh3-0.2.18.tar.gz", hash = "sha256:94a166927e53972a9698af9542ace4e38b9de50c34352b962f4d9a7d4c927af4"}, ] [[package]] @@ -2571,15 +2707,30 @@ files = [ {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, ] +[[package]] +name = "paginate" +version = "0.5.7" +description = "Divides large result sets into pages for easier browsing" +optional = false +python-versions = "*" +files = [ + {file = "paginate-0.5.7-py2.py3-none-any.whl", hash = "sha256:b885e2af73abcf01d9559fd5216b57ef722f8c42affbb63942377668e35c7591"}, + {file = "paginate-0.5.7.tar.gz", hash = "sha256:22bd083ab41e1a8b4f3690544afb2c60c25e5c9a63a30fa2f483f6c60c8e5945"}, +] + +[package.extras] +dev = ["pytest", "tox"] +lint = ["black"] + [[package]] name = "paramiko" -version = "3.4.0" +version = "3.4.1" description = "SSH2 protocol library" optional = false python-versions = ">=3.6" files = [ - {file = "paramiko-3.4.0-py3-none-any.whl", hash = "sha256:43f0b51115a896f9c00f59618023484cb3a14b98bbceab43394a39c6739b7ee7"}, - {file = "paramiko-3.4.0.tar.gz", hash = "sha256:aac08f26a31dc4dffd92821527d1682d99d52f9ef6851968114a8728f3c274d3"}, + {file = "paramiko-3.4.1-py3-none-any.whl", hash = "sha256:8e49fd2f82f84acf7ffd57c64311aa2b30e575370dc23bdb375b10262f7eac32"}, + {file = "paramiko-3.4.1.tar.gz", hash = "sha256:8b15302870af7f6652f2e038975c1d2973f06046cb5d7d65355668b3ecbece0c"}, ] [package.dependencies] @@ -2788,13 +2939,13 @@ test = ["coveralls", "futures", "mock", "pytest (>=2.7.3)", "pytest-benchmark", [[package]] name = "prompt-toolkit" -version = "3.0.45" +version = "3.0.47" description = "Library for building powerful interactive command lines in Python" optional = false python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.45-py3-none-any.whl", hash = "sha256:a29b89160e494e3ea8622b09fa5897610b437884dcdcd054fdc1308883326c2a"}, - {file = "prompt_toolkit-3.0.45.tar.gz", hash = "sha256:07c60ee4ab7b7e90824b61afa840c8f5aad2d46b3e2e10acc33d8ecc94a49089"}, + {file = "prompt_toolkit-3.0.47-py3-none-any.whl", hash = "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10"}, + {file = "prompt_toolkit-3.0.47.tar.gz", hash = "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360"}, ] [package.dependencies] @@ -2894,27 +3045,38 @@ files = [ [[package]] name = "pure-eval" -version = "0.2.2" +version = "0.2.3" description = "Safely evaluate AST nodes without side effects" optional = false python-versions = "*" files = [ - {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, - {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, + {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"}, + {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"}, ] [package.extras] tests = ["pytest"] +[[package]] +name = "py" +version = "1.11.0" +description = "library with cross-python path, ini-parsing, io, code, log facilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, + {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, +] + [[package]] name = "pycodestyle" -version = "2.9.1" +version = "2.12.1" description = "Python style guide checker" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pycodestyle-2.9.1-py2.py3-none-any.whl", hash = "sha256:d1735fc58b418fd7c5f658d28d943854f8a849b01a5d0a1e6f3f3fdd0166804b"}, - {file = "pycodestyle-2.9.1.tar.gz", hash = "sha256:2c9607871d58c76354b697b42f5d57e1ada7d261c261efac224b664affdc5785"}, + {file = "pycodestyle-2.12.1-py2.py3-none-any.whl", hash = "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3"}, + {file = "pycodestyle-2.12.1.tar.gz", hash = "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521"}, ] [[package]] @@ -2930,64 +3092,132 @@ files = [ [[package]] name = "pydantic" -version = "1.10.15" -description = "Data validation and settings management using python type hints" +version = "2.8.2" +description = "Data validation using Python type hints" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pydantic-1.10.15-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:22ed12ee588b1df028a2aa5d66f07bf8f8b4c8579c2e96d5a9c1f96b77f3bb55"}, - {file = "pydantic-1.10.15-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:75279d3cac98186b6ebc2597b06bcbc7244744f6b0b44a23e4ef01e5683cc0d2"}, - {file = "pydantic-1.10.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50f1666a9940d3d68683c9d96e39640f709d7a72ff8702987dab1761036206bb"}, - {file = "pydantic-1.10.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82790d4753ee5d00739d6cb5cf56bceb186d9d6ce134aca3ba7befb1eedbc2c8"}, - {file = "pydantic-1.10.15-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:d207d5b87f6cbefbdb1198154292faee8017d7495a54ae58db06762004500d00"}, - {file = "pydantic-1.10.15-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e49db944fad339b2ccb80128ffd3f8af076f9f287197a480bf1e4ca053a866f0"}, - {file = "pydantic-1.10.15-cp310-cp310-win_amd64.whl", hash = "sha256:d3b5c4cbd0c9cb61bbbb19ce335e1f8ab87a811f6d589ed52b0254cf585d709c"}, - {file = "pydantic-1.10.15-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c3d5731a120752248844676bf92f25a12f6e45425e63ce22e0849297a093b5b0"}, - {file = "pydantic-1.10.15-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c365ad9c394f9eeffcb30a82f4246c0006417f03a7c0f8315d6211f25f7cb654"}, - {file = "pydantic-1.10.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3287e1614393119c67bd4404f46e33ae3be3ed4cd10360b48d0a4459f420c6a3"}, - {file = "pydantic-1.10.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:be51dd2c8596b25fe43c0a4a59c2bee4f18d88efb8031188f9e7ddc6b469cf44"}, - {file = "pydantic-1.10.15-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6a51a1dd4aa7b3f1317f65493a182d3cff708385327c1c82c81e4a9d6d65b2e4"}, - {file = "pydantic-1.10.15-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4e316e54b5775d1eb59187f9290aeb38acf620e10f7fd2f776d97bb788199e53"}, - {file = "pydantic-1.10.15-cp311-cp311-win_amd64.whl", hash = "sha256:0d142fa1b8f2f0ae11ddd5e3e317dcac060b951d605fda26ca9b234b92214986"}, - {file = "pydantic-1.10.15-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7ea210336b891f5ea334f8fc9f8f862b87acd5d4a0cbc9e3e208e7aa1775dabf"}, - {file = "pydantic-1.10.15-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3453685ccd7140715e05f2193d64030101eaad26076fad4e246c1cc97e1bb30d"}, - {file = "pydantic-1.10.15-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bea1f03b8d4e8e86702c918ccfd5d947ac268f0f0cc6ed71782e4b09353b26f"}, - {file = "pydantic-1.10.15-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:005655cabc29081de8243126e036f2065bd7ea5b9dff95fde6d2c642d39755de"}, - {file = "pydantic-1.10.15-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:af9850d98fc21e5bc24ea9e35dd80a29faf6462c608728a110c0a30b595e58b7"}, - {file = "pydantic-1.10.15-cp37-cp37m-win_amd64.whl", hash = "sha256:d31ee5b14a82c9afe2bd26aaa405293d4237d0591527d9129ce36e58f19f95c1"}, - {file = "pydantic-1.10.15-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5e09c19df304b8123938dc3c53d3d3be6ec74b9d7d0d80f4f4b5432ae16c2022"}, - {file = "pydantic-1.10.15-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7ac9237cd62947db00a0d16acf2f3e00d1ae9d3bd602b9c415f93e7a9fc10528"}, - {file = "pydantic-1.10.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:584f2d4c98ffec420e02305cf675857bae03c9d617fcfdc34946b1160213a948"}, - {file = "pydantic-1.10.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbc6989fad0c030bd70a0b6f626f98a862224bc2b1e36bfc531ea2facc0a340c"}, - {file = "pydantic-1.10.15-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d573082c6ef99336f2cb5b667b781d2f776d4af311574fb53d908517ba523c22"}, - {file = "pydantic-1.10.15-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6bd7030c9abc80134087d8b6e7aa957e43d35714daa116aced57269a445b8f7b"}, - {file = "pydantic-1.10.15-cp38-cp38-win_amd64.whl", hash = "sha256:3350f527bb04138f8aff932dc828f154847fbdc7a1a44c240fbfff1b57f49a12"}, - {file = "pydantic-1.10.15-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:51d405b42f1b86703555797270e4970a9f9bd7953f3990142e69d1037f9d9e51"}, - {file = "pydantic-1.10.15-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a980a77c52723b0dc56640ced396b73a024d4b74f02bcb2d21dbbac1debbe9d0"}, - {file = "pydantic-1.10.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67f1a1fb467d3f49e1708a3f632b11c69fccb4e748a325d5a491ddc7b5d22383"}, - {file = "pydantic-1.10.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:676ed48f2c5bbad835f1a8ed8a6d44c1cd5a21121116d2ac40bd1cd3619746ed"}, - {file = "pydantic-1.10.15-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:92229f73400b80c13afcd050687f4d7e88de9234d74b27e6728aa689abcf58cc"}, - {file = "pydantic-1.10.15-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2746189100c646682eff0bce95efa7d2e203420d8e1c613dc0c6b4c1d9c1fde4"}, - {file = "pydantic-1.10.15-cp39-cp39-win_amd64.whl", hash = "sha256:394f08750bd8eaad714718812e7fab615f873b3cdd0b9d84e76e51ef3b50b6b7"}, - {file = "pydantic-1.10.15-py3-none-any.whl", hash = "sha256:28e552a060ba2740d0d2aabe35162652c1459a0b9069fe0db7f4ee0e18e74d58"}, - {file = "pydantic-1.10.15.tar.gz", hash = "sha256:ca832e124eda231a60a041da4f013e3ff24949d94a01154b137fc2f2a43c3ffb"}, + {file = "pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8"}, + {file = "pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a"}, ] [package.dependencies] -typing-extensions = ">=4.2.0" +annotated-types = ">=0.4.0" +pydantic-core = "2.20.1" +typing-extensions = {version = ">=4.6.1", markers = "python_version < \"3.13\""} [package.extras] -dotenv = ["python-dotenv (>=0.10.4)"] -email = ["email-validator (>=1.0.3)"] +email = ["email-validator (>=2.0.0)"] + +[[package]] +name = "pydantic-core" +version = "2.20.1" +description = "Core functionality for Pydantic validation and serialization" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3"}, + {file = "pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98"}, + {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a"}, + {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a"}, + {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840"}, + {file = "pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250"}, + {file = "pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c"}, + {file = "pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312"}, + {file = "pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1"}, + {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b"}, + {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27"}, + {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b"}, + {file = "pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a"}, + {file = "pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2"}, + {file = "pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231"}, + {file = "pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e"}, + {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24"}, + {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1"}, + {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd"}, + {file = "pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688"}, + {file = "pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d"}, + {file = "pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686"}, + {file = "pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c"}, + {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83"}, + {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203"}, + {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0"}, + {file = "pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e"}, + {file = "pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20"}, + {file = "pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:4745f4ac52cc6686390c40eaa01d48b18997cb130833154801a442323cc78f91"}, + {file = "pydantic_core-2.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a8ad4c766d3f33ba8fd692f9aa297c9058970530a32c728a2c4bfd2616d3358b"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41e81317dd6a0127cabce83c0c9c3fbecceae981c8391e6f1dec88a77c8a569a"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04024d270cf63f586ad41fff13fde4311c4fc13ea74676962c876d9577bcc78f"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eaad4ff2de1c3823fddf82f41121bdf453d922e9a238642b1dedb33c4e4f98ad"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:26ab812fa0c845df815e506be30337e2df27e88399b985d0bb4e3ecfe72df31c"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c5ebac750d9d5f2706654c638c041635c385596caf68f81342011ddfa1e5598"}, + {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2aafc5a503855ea5885559eae883978c9b6d8c8993d67766ee73d82e841300dd"}, + {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4868f6bd7c9d98904b748a2653031fc9c2f85b6237009d475b1008bfaeb0a5aa"}, + {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa2f457b4af386254372dfa78a2eda2563680d982422641a85f271c859df1987"}, + {file = "pydantic_core-2.20.1-cp38-none-win32.whl", hash = "sha256:225b67a1f6d602de0ce7f6c1c3ae89a4aa25d3de9be857999e9124f15dab486a"}, + {file = "pydantic_core-2.20.1-cp38-none-win_amd64.whl", hash = "sha256:6b507132dcfc0dea440cce23ee2182c0ce7aba7054576efc65634f080dbe9434"}, + {file = "pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c"}, + {file = "pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006"}, + {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1"}, + {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09"}, + {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab"}, + {file = "pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2"}, + {file = "pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99"}, + {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a"}, + {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7"}, + {file = "pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4"}, +] + +[package.dependencies] +typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" [[package]] name = "pyeapi" -version = "1.0.2" +version = "1.0.4" description = "Python Client for eAPI" optional = false python-versions = "*" files = [ - {file = "pyeapi-1.0.2.tar.gz", hash = "sha256:563a80bb19451df7dd7b6e9e38489dee67ebeaf2f54de296e8ae0b26cd68a297"}, + {file = "pyeapi-1.0.4.tar.gz", hash = "sha256:05920677246823cd3dddf7d4d0f831fbc86fd416f356706a03bc56a291d78f3d"}, ] [package.dependencies] @@ -2995,7 +3225,7 @@ netaddr = "*" [package.extras] dev = ["check-manifest", "pep8", "pyflakes", "twine"] -test = ["coverage", "mock"] +test = ["coverage"] [[package]] name = "pygments" @@ -3013,34 +3243,34 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyjwt" -version = "2.8.0" +version = "2.9.0" description = "JSON Web Token implementation in Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, - {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, + {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, + {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, ] [package.extras] crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] name = "pylint" -version = "3.2.2" +version = "3.2.6" description = "python code static checker" optional = false python-versions = ">=3.8.0" files = [ - {file = "pylint-3.2.2-py3-none-any.whl", hash = "sha256:3f8788ab20bb8383e06dd2233e50f8e08949cfd9574804564803441a4946eab4"}, - {file = "pylint-3.2.2.tar.gz", hash = "sha256:d068ca1dfd735fb92a07d33cb8f288adc0f6bc1287a139ca2425366f7cbe38f8"}, + {file = "pylint-3.2.6-py3-none-any.whl", hash = "sha256:03c8e3baa1d9fb995b12c1dbe00aa6c4bcef210c2a2634374aedeb22fb4a8f8f"}, + {file = "pylint-3.2.6.tar.gz", hash = "sha256:a5d01678349454806cff6d886fb072294f56a58c4761278c97fb557d708e1eb3"}, ] [package.dependencies] -astroid = ">=3.2.2,<=3.3.0-dev0" +astroid = ">=3.2.4,<=3.3.0-dev0" colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} dill = [ {version = ">=0.2", markers = "python_version < \"3.11\""}, @@ -3108,17 +3338,17 @@ pylint = ">=1.7" [[package]] name = "pymdown-extensions" -version = "10.7.1" +version = "10.9" description = "Extension pack for Python Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "pymdown_extensions-10.7.1-py3-none-any.whl", hash = "sha256:f5cc7000d7ff0d1ce9395d216017fa4df3dde800afb1fb72d1c7d3fd35e710f4"}, - {file = "pymdown_extensions-10.7.1.tar.gz", hash = "sha256:c70e146bdd83c744ffc766b4671999796aba18842b268510a329f7f64700d584"}, + {file = "pymdown_extensions-10.9-py3-none-any.whl", hash = "sha256:d323f7e90d83c86113ee78f3fe62fc9dee5f56b54d912660703ea1816fed5626"}, + {file = "pymdown_extensions-10.9.tar.gz", hash = "sha256:6ff740bcd99ec4172a938970d42b96128bdc9d4b9bcad72494f29921dc69b753"}, ] [package.dependencies] -markdown = ">=3.5" +markdown = ">=3.6" pyyaml = "*" [package.extras] @@ -3168,13 +3398,13 @@ urllib3 = ">=1.21.1,<1.27" [[package]] name = "pyparsing" -version = "3.1.2" +version = "3.1.4" description = "pyparsing module - Classes and methods to define and execute parsing grammars" optional = false python-versions = ">=3.6.8" files = [ - {file = "pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742"}, - {file = "pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad"}, + {file = "pyparsing-3.1.4-py3-none-any.whl", hash = "sha256:a6a7ee4235a3f944aa1fa2249307708f893fe5717dc603503c6c7969c070fb7c"}, + {file = "pyparsing-3.1.4.tar.gz", hash = "sha256:f86ec8d1a83f11977c9a6ea7598e8c27fc5cddfa5b07ea2241edbbde1d7bc032"}, ] [package.extras] @@ -3196,12 +3426,13 @@ cp2110 = ["hidapi"] [[package]] name = "python-crontab" -version = "3.1.0" +version = "3.2.0" description = "Python Crontab API" optional = false python-versions = "*" files = [ - {file = "python-crontab-3.1.0.tar.gz", hash = "sha256:f4ea1605d24533b67fa7a634ef26cb59a5f2e7954f6e677d2d7a2229959a2fc8"}, + {file = "python_crontab-3.2.0-py3-none-any.whl", hash = "sha256:82cb9b6a312d41ff66fd3caf3eed7115c28c195bfb50711bc2b4b9592feb9fe5"}, + {file = "python_crontab-3.2.0.tar.gz", hash = "sha256:40067d1dd39ade3460b2ad8557c7651514cd3851deffff61c5c60e1227c5c36b"}, ] [package.dependencies] @@ -3225,6 +3456,20 @@ files = [ [package.dependencies] six = ">=1.5" +[[package]] +name = "python-ipware" +version = "3.0.0" +description = "A Python package to retrieve user's IP address" +optional = false +python-versions = ">=3.7" +files = [ + {file = "python_ipware-3.0.0-py3-none-any.whl", hash = "sha256:fc936e6e7ec9fcc107f9315df40658f468ac72f739482a707181742882e36b60"}, + {file = "python_ipware-3.0.0.tar.gz", hash = "sha256:9117b1c4dddcb5d5ca49e6a9617de2fc66aec2ef35394563ac4eecabdf58c062"}, +] + +[package.extras] +dev = ["coverage[toml]", "coveralls (>=3.3,<4.0)", "ruff", "twine"] + [[package]] name = "python-slugify" version = "8.0.4" @@ -3273,113 +3518,120 @@ files = [ [[package]] name = "pyuwsgi" -version = "2.0.23.post0" +version = "2.0.26" description = "The uWSGI server" optional = false python-versions = "*" files = [ - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49dfe43726f4a71d3440f7a36eb3ba5b361e04807164d34ececda138e2dc2375"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65420b185003dd5b66f41a6d1aa03d63d953a18e818bd4a013fc8e9d580f11cb"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7bc7c60d8e1242b3a638754d2487c505112c642010c460442993be85f3ca9ec7"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1ae2abaa47cb9c0018c790935897aec8001fb709dfac54286a37ab2e0b88dca"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:af376cafca1501b2d4b8184c427c55b32c1a3dcb6070dc27115ca552898c7ff8"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f56a729808ed7aa1d7973d6f900a75bc36b976b7ab6c8867064f36e34cdafd4e"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4270e68bb2633b0fc132aad6d415e4e0cde67093a97e64dd84bd186264a8c083"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:97c940a69242dc45658dba3330e64d809f34e33d9631547b6928fd20075b4bb9"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cac396c2e8e0d199bde9bb8fc90538c82207d0c3d722d08b9a63619b41945d6"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:59d6a718ad42be54b2b80c8c236b728b8b83fb93438786e95f63fc259229ccd7"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c38b5bb59e1bf59030f2d43a3e67aa18e6089c8e7f43e9c5f2099567466d35f4"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7199009447770812056a5b417c4847bd44db1b0230d4bb64c48a4ffacd4e96f0"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f361d168cf175796fe36ab6a88dee079245a2f08e587e8190a38bd1b33238fa8"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:52a45e98fe746ae9c9437c5b6f0cdb6117f979c8800f09c8e4dae2997786affd"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f7455976abfa1dd43b5f3376f7f04a925c16babba1c3fc6edcdd81f5c0f24383"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508f5d84cd677cecc640d0e321badc61080c40c61843cd130b32f356729a599f"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dcf93afec49f5cf29b0a68f4d2fb3e44a3ad1f205704ab2f41f9db47dacb8e13"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a19ab0d5c43bc179a70cb079feb7804e39be6326bf98ec38808fcea5e7d44bd0"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8c5283e38c4fd3130cd7384d57535d60435c63b81a41a6463f26f340efeda9de"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:0d9dfb79bffa552e5985385bc114ecec1d4079b95ce24796f577ef0df727da06"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b531ac80155b6c839215d05f95569b34e614e97aab055072c74112b1d2a45546"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:eae183104f3fa26f3d9c28fe75f2ad914e3a365103a6a66e329c0f59f9e461d4"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a34ab2863ff0120c6e0e75c63c9ced462bfb4777e6b8237e4e1df60fb34af51"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc18481f336be63e80fc983aaa1a040e7c69c25c3145edcf93f0e6de2f1ad0d6"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:245da016b424c261d148bbb83d2407aac77e6d5793cbd4e23a17f7e3a8aa061f"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:8de1d975be958cff9122ecc82bf393bf7f41fff6f1047e76ed972047763bbd31"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d75859311605a510a6050ec622ec4beb9f2f8cce5f090e5cea70a1ff74133f8b"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d3ad00212ffbb208b7146744ad3710b908734f844b5e2bf533fb09fc44726f37"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:374142b106de187c4572b4441a367fa3466d9ea5aaabe475da42bb9f2202a690"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:137db348bd5f585e8e5a609046d3ac9ef58483bba93de1e3c568c1a860c31b9c"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:52b7a837dbc8702b245481514a32c88418a42df7b5ee68d45695eba457abd3ee"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfcfeb1eaca5f4dd0e6ed9194e7ec98dcb3a8ac108e8f0414ed7c28d608517ef"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7887c2acc8262223ff9cdce974851da0917818c12ef3ec0f49ec11a9943731fe"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:bae72689ddf8e0bdd1a974a364ed052dd19d7897f1d5c3efcf8d9010c60f56ef"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:9565569474f9e9f02f6fa490d96d8c5c7e3004829c01c0446cdb74c618b6a433"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6ba86c6aa815635eefe7728b9b219af281a4e956bab240c5871db6c151c300a8"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29ab8a02e812fbc34026ddb79f274a574c96fc488f384f320d3af37bd7edf932"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4f9c0694a11d8dfbbe2814b8b242a7c4dfa143b63e01447fabce9966a90fa60"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f75e45e14462cbb94fc32242378eef7bda97173de57a68a5d46e4053677a7547"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e7140fc3548cd9d0f02c4511b679ba47d26593d2cceb249d2d147c9901d90022"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ed348cc4c5a4964c8e8fa61ab0ef50c00f7676179a6c0cb0f55f0122db1db1c2"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17a8818ec98f92e7935cf0ff56ed4f02a069362e10554df969f70fcdf78d9199"}, - {file = "pyuwsgi-2.0.23.post0.tar.gz", hash = "sha256:04ec79c4a3acad21002ebf1479050c3208605d27cc6659008df51092951eeb8e"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5fe6149521f6545548452ae66d670be7ece962045952d07af7fdd156409771d4"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:03ce17f4a114e0ca53686748e7a4556e62c7a0edc8a6033e076eb3bc4db5489f"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:244c81e050e240ebc8a1c455db8aefc6b5c9f4582551b34905092da0e03415a3"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:596c55b36b72fbb04b6e024578e8f9867185b6b07f50fcead75e71b6534154e7"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a9e82434e640eb5c7ce0845c3cfd6711088cff3b0265d98e6a34216972eec07"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:df91af8b7dfd573683ccecfa646d447e4a23be7dc84329c0633e70faa9431ba8"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:ffa63939802f29873a8b92e437fd9e17fccde0a80004260a2abe8ad71b42bd1d"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:910642f91877e8dac6d0286c79688543d0d573e43e78d030d998faee8ca49bdb"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b20664df152f225d56f6ba810347d47efa126d9ce751e6e5fbad07a12d7cdae2"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:35aeca4b60e883796f0c2fa4b78fa34e5f31947b317b7d63526aa68a31036467"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46f95c39b8713121536e5f0c4292eab30adcb8dabd088641fd34b5641d4fd81d"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:85f8a3b09b41177496e5ed84aa9e0e3f815ac53422d37f72eec7933609f742e9"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9b9bed61cf18002ed7e9cef81c42e6b825c01b7c8d983f2cff223f905987e64"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a0bc7cb23a35b7da5ead97b2e9ea2894a74c96d9864782789526e66fdfcf5f91"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bb69885e3f02a7538137197a8618766cda7e29bd7da005fce699e6385215a786"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c7bb17f907f7e165d45b676939c9641dbf4d7c8c532caaa704006c6be69c3b60"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:01aac38118cd35adb141a7ddbd721845c3b895a18d6cfddca3a237e0da5e5fc7"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ead0863e90397be562ca9816b2e0704f8e59e734ab158eb467db333814af704e"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf4e2828ca8c213f91673ff960a29ebbc037d743e57b2758ea5a76dd13c0b01c"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d48accc82c82d637be27ebb153c17a2773758df582602d7f8c1702e9dcf8ea3a"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c87bd20906bceebf0bfb3fc4f25b12ca3943aafeaf0dc289df9144d4ee41f9c5"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e5f14b676f8aacd79a2106695657c212b4469cd98f1624dc0473e1e0e695bcc9"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:70aec45ba640742df86e0f1a0baa01964b162d11f24ee70d56146bd6331462f9"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c8ded279e1c4da7273f25d658979071520ae97712650f70ea50715618cb51910"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:288f34589e7d76e70f4ebaccfeb34b76cefa661f41302b38722f305a22310e1f"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:524c5620aff07c72f9ef6526712f92a06ff9741c0c3ea7b46284045de1b8db40"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e9f5f0c377d9efc04d12937e79567628c4c1f72c0991f45c6dbb76541ca1b683"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db26c9ca688fb19e1716c7ab8e09811a9bd431576432ca626d89e9ebbef96fc1"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:489ff6e77fcbe14ca7a853916388ddb4bd4e087dd243abef0b7a4732563401ba"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:3d07829faf43b5981487130a929eb8521aefdf39dd723c50e2e168362dafafdc"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:d9e21e147f851a77ab893a27466a166a52450558c88ce885974c2e63f6e3c298"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7cfa8b9524bccca9052c6fd2682ec2fc744a9397eaf5febde8e60334fac4313a"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a13acc603cca50510dd2b0772f398bad1bcfaa5c418069becba016edac22ac4"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:544e2f791912dc5f38cb1159eae8ba037cdd472b40e2fcfc0ea7fb973aaebaaa"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c807ae36058dd7ae2653451081536c10886c74fc06aa1bf7a28cc2f0c815307"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:af04d0ff93a89c65369c8b0b10d07394046e7d78694fad998b316aa7f8ca3e1d"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:fb1ba584cd07339f2adad5eb33ab51854330748426a63fbd58cb39031ffb7498"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:709d3704dcb9e85576a31a1c04782fe17df6a577a6eaf07dd2b7c34982ca905f"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4a81548e59852276af18d4404512cfcbaf20c40f38f345bb80b1a87f1dc7285c"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bb840399ff19b3e2308e33b2cd37143bc55b1666e99b38370660b95127b081aa"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:115cf76fe6358a7863e4f28d9dfd2fa51f1f198a7259ee5fec2e7cb52d0060bf"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fd517e4336ebae0493063a031da0e6a53ff436dc5cd551b57f387d38459085c"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14769dd0c41bc531dba7fc8fe202a11d984d93f251896ffcc74daa0476eda966"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:312575bcc9513dfd7d76d993b7753d18b9a36e54cffca6b72ad2e1397636c7fd"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3d839d584276784f660168b89209c28ce9a1cb14f8911322f21d919c2566e49d"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ea8e3e197f54902b34c5648880bc3c111ad4f677a7350203d1052606cc04119b"}, + {file = "pyuwsgi-2.0.26.tar.gz", hash = "sha256:c7f167545939764a1c6fcd0f861023f641ca09f9806f1f4b7e48b9ea2682db8e"}, ] [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0.2" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] @@ -3398,20 +3650,20 @@ pyyaml = "*" [[package]] name = "redis" -version = "5.0.4" +version = "5.0.8" description = "Python client for Redis database and key-value store" optional = false python-versions = ">=3.7" files = [ - {file = "redis-5.0.4-py3-none-any.whl", hash = "sha256:7adc2835c7a9b5033b7ad8f8918d09b7344188228809c98df07af226d39dec91"}, - {file = "redis-5.0.4.tar.gz", hash = "sha256:ec31f2ed9675cc54c21ba854cfe0462e6faf1d83c8ce5944709db8a4700b9c61"}, + {file = "redis-5.0.8-py3-none-any.whl", hash = "sha256:56134ee08ea909106090934adc36f65c9bcbbaecea5b21ba704ba6fb561f8eb4"}, + {file = "redis-5.0.8.tar.gz", hash = "sha256:0c5b10d387568dfe0698c6fad6615750c24170e548ca2deac10c649d463e9870"}, ] [package.dependencies] async-timeout = {version = ">=4.0.3", markers = "python_full_version < \"3.11.3\""} [package.extras] -hiredis = ["hiredis (>=1.0.0)"] +hiredis = ["hiredis (>1.0.0)"] ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==20.0.1)", "requests (>=2.26.0)"] [[package]] @@ -3431,90 +3683,90 @@ rpds-py = ">=0.7.0" [[package]] name = "regex" -version = "2024.5.15" +version = "2024.7.24" description = "Alternative regular expression module, to replace re." optional = false python-versions = ">=3.8" files = [ - {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a81e3cfbae20378d75185171587cbf756015ccb14840702944f014e0d93ea09f"}, - {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7b59138b219ffa8979013be7bc85bb60c6f7b7575df3d56dc1e403a438c7a3f6"}, - {file = "regex-2024.5.15-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0bd000c6e266927cb7a1bc39d55be95c4b4f65c5be53e659537537e019232b1"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5eaa7ddaf517aa095fa8da0b5015c44d03da83f5bd49c87961e3c997daed0de7"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba68168daedb2c0bab7fd7e00ced5ba90aebf91024dea3c88ad5063c2a562cca"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6e8d717bca3a6e2064fc3a08df5cbe366369f4b052dcd21b7416e6d71620dca1"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1337b7dbef9b2f71121cdbf1e97e40de33ff114801263b275aafd75303bd62b5"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9ebd0a36102fcad2f03696e8af4ae682793a5d30b46c647eaf280d6cfb32796"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9efa1a32ad3a3ea112224897cdaeb6aa00381627f567179c0314f7b65d354c62"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1595f2d10dff3d805e054ebdc41c124753631b6a471b976963c7b28543cf13b0"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b802512f3e1f480f41ab5f2cfc0e2f761f08a1f41092d6718868082fc0d27143"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:a0981022dccabca811e8171f913de05720590c915b033b7e601f35ce4ea7019f"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:19068a6a79cf99a19ccefa44610491e9ca02c2be3305c7760d3831d38a467a6f"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1b5269484f6126eee5e687785e83c6b60aad7663dafe842b34691157e5083e53"}, - {file = "regex-2024.5.15-cp310-cp310-win32.whl", hash = "sha256:ada150c5adfa8fbcbf321c30c751dc67d2f12f15bd183ffe4ec7cde351d945b3"}, - {file = "regex-2024.5.15-cp310-cp310-win_amd64.whl", hash = "sha256:ac394ff680fc46b97487941f5e6ae49a9f30ea41c6c6804832063f14b2a5a145"}, - {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f5b1dff3ad008dccf18e652283f5e5339d70bf8ba7c98bf848ac33db10f7bc7a"}, - {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c6a2b494a76983df8e3d3feea9b9ffdd558b247e60b92f877f93a1ff43d26656"}, - {file = "regex-2024.5.15-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a32b96f15c8ab2e7d27655969a23895eb799de3665fa94349f3b2fbfd547236f"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10002e86e6068d9e1c91eae8295ef690f02f913c57db120b58fdd35a6bb1af35"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec54d5afa89c19c6dd8541a133be51ee1017a38b412b1321ccb8d6ddbeb4cf7d"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10e4ce0dca9ae7a66e6089bb29355d4432caed736acae36fef0fdd7879f0b0cb"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e507ff1e74373c4d3038195fdd2af30d297b4f0950eeda6f515ae3d84a1770f"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d1f059a4d795e646e1c37665b9d06062c62d0e8cc3c511fe01315973a6542e40"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0721931ad5fe0dda45d07f9820b90b2148ccdd8e45bb9e9b42a146cb4f695649"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:833616ddc75ad595dee848ad984d067f2f31be645d603e4d158bba656bbf516c"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:287eb7f54fc81546346207c533ad3c2c51a8d61075127d7f6d79aaf96cdee890"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:19dfb1c504781a136a80ecd1fff9f16dddf5bb43cec6871778c8a907a085bb3d"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:119af6e56dce35e8dfb5222573b50c89e5508d94d55713c75126b753f834de68"}, - {file = "regex-2024.5.15-cp311-cp311-win32.whl", hash = "sha256:1c1c174d6ec38d6c8a7504087358ce9213d4332f6293a94fbf5249992ba54efa"}, - {file = "regex-2024.5.15-cp311-cp311-win_amd64.whl", hash = "sha256:9e717956dcfd656f5055cc70996ee2cc82ac5149517fc8e1b60261b907740201"}, - {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:632b01153e5248c134007209b5c6348a544ce96c46005d8456de1d552455b014"}, - {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e64198f6b856d48192bf921421fdd8ad8eb35e179086e99e99f711957ffedd6e"}, - {file = "regex-2024.5.15-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68811ab14087b2f6e0fc0c2bae9ad689ea3584cad6917fc57be6a48bbd012c49"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8ec0c2fea1e886a19c3bee0cd19d862b3aa75dcdfb42ebe8ed30708df64687a"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d0c0c0003c10f54a591d220997dd27d953cd9ccc1a7294b40a4be5312be8797b"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2431b9e263af1953c55abbd3e2efca67ca80a3de8a0437cb58e2421f8184717a"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a605586358893b483976cffc1723fb0f83e526e8f14c6e6614e75919d9862cf"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:391d7f7f1e409d192dba8bcd42d3e4cf9e598f3979cdaed6ab11288da88cb9f2"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9ff11639a8d98969c863d4617595eb5425fd12f7c5ef6621a4b74b71ed8726d5"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4eee78a04e6c67e8391edd4dad3279828dd66ac4b79570ec998e2155d2e59fd5"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8fe45aa3f4aa57faabbc9cb46a93363edd6197cbc43523daea044e9ff2fea83e"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:d0a3d8d6acf0c78a1fff0e210d224b821081330b8524e3e2bc5a68ef6ab5803d"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c486b4106066d502495b3025a0a7251bf37ea9540433940a23419461ab9f2a80"}, - {file = "regex-2024.5.15-cp312-cp312-win32.whl", hash = "sha256:c49e15eac7c149f3670b3e27f1f28a2c1ddeccd3a2812cba953e01be2ab9b5fe"}, - {file = "regex-2024.5.15-cp312-cp312-win_amd64.whl", hash = "sha256:673b5a6da4557b975c6c90198588181029c60793835ce02f497ea817ff647cb2"}, - {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:87e2a9c29e672fc65523fb47a90d429b70ef72b901b4e4b1bd42387caf0d6835"}, - {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c3bea0ba8b73b71b37ac833a7f3fd53825924165da6a924aec78c13032f20850"}, - {file = "regex-2024.5.15-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bfc4f82cabe54f1e7f206fd3d30fda143f84a63fe7d64a81558d6e5f2e5aaba9"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5bb9425fe881d578aeca0b2b4b3d314ec88738706f66f219c194d67179337cb"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64c65783e96e563103d641760664125e91bd85d8e49566ee560ded4da0d3e704"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf2430df4148b08fb4324b848672514b1385ae3807651f3567871f130a728cc3"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5397de3219a8b08ae9540c48f602996aa6b0b65d5a61683e233af8605c42b0f2"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:455705d34b4154a80ead722f4f185b04c4237e8e8e33f265cd0798d0e44825fa"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2b6f1b3bb6f640c1a92be3bbfbcb18657b125b99ecf141fb3310b5282c7d4ed"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:3ad070b823ca5890cab606c940522d05d3d22395d432f4aaaf9d5b1653e47ced"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5b5467acbfc153847d5adb21e21e29847bcb5870e65c94c9206d20eb4e99a384"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:e6662686aeb633ad65be2a42b4cb00178b3fbf7b91878f9446075c404ada552f"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:2b4c884767504c0e2401babe8b5b7aea9148680d2e157fa28f01529d1f7fcf67"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3cd7874d57f13bf70078f1ff02b8b0aa48d5b9ed25fc48547516c6aba36f5741"}, - {file = "regex-2024.5.15-cp38-cp38-win32.whl", hash = "sha256:e4682f5ba31f475d58884045c1a97a860a007d44938c4c0895f41d64481edbc9"}, - {file = "regex-2024.5.15-cp38-cp38-win_amd64.whl", hash = "sha256:d99ceffa25ac45d150e30bd9ed14ec6039f2aad0ffa6bb87a5936f5782fc1569"}, - {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:13cdaf31bed30a1e1c2453ef6015aa0983e1366fad2667657dbcac7b02f67133"}, - {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cac27dcaa821ca271855a32188aa61d12decb6fe45ffe3e722401fe61e323cd1"}, - {file = "regex-2024.5.15-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7dbe2467273b875ea2de38ded4eba86cbcbc9a1a6d0aa11dcf7bd2e67859c435"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64f18a9a3513a99c4bef0e3efd4c4a5b11228b48aa80743be822b71e132ae4f5"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d347a741ea871c2e278fde6c48f85136c96b8659b632fb57a7d1ce1872547600"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1878b8301ed011704aea4c806a3cadbd76f84dece1ec09cc9e4dc934cfa5d4da"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4babf07ad476aaf7830d77000874d7611704a7fcf68c9c2ad151f5d94ae4bfc4"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35cb514e137cb3488bce23352af3e12fb0dbedd1ee6e60da053c69fb1b29cc6c"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cdd09d47c0b2efee9378679f8510ee6955d329424c659ab3c5e3a6edea696294"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:72d7a99cd6b8f958e85fc6ca5b37c4303294954eac1376535b03c2a43eb72629"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:a094801d379ab20c2135529948cb84d417a2169b9bdceda2a36f5f10977ebc16"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c0c18345010870e58238790a6779a1219b4d97bd2e77e1140e8ee5d14df071aa"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:16093f563098448ff6b1fa68170e4acbef94e6b6a4e25e10eae8598bb1694b5d"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e38a7d4e8f633a33b4c7350fbd8bad3b70bf81439ac67ac38916c4a86b465456"}, - {file = "regex-2024.5.15-cp39-cp39-win32.whl", hash = "sha256:71a455a3c584a88f654b64feccc1e25876066c4f5ef26cd6dd711308aa538694"}, - {file = "regex-2024.5.15-cp39-cp39-win_amd64.whl", hash = "sha256:cab12877a9bdafde5500206d1020a584355a97884dfd388af3699e9137bf7388"}, - {file = "regex-2024.5.15.tar.gz", hash = "sha256:d3ee02d9e5f482cc8309134a91eeaacbdd2261ba111b0fef3748eeb4913e6a2c"}, + {file = "regex-2024.7.24-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b0d3f567fafa0633aee87f08b9276c7062da9616931382993c03808bb68ce"}, + {file = "regex-2024.7.24-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3426de3b91d1bc73249042742f45c2148803c111d1175b283270177fdf669024"}, + {file = "regex-2024.7.24-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f273674b445bcb6e4409bf8d1be67bc4b58e8b46fd0d560055d515b8830063cd"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23acc72f0f4e1a9e6e9843d6328177ae3074b4182167e34119ec7233dfeccf53"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65fd3d2e228cae024c411c5ccdffae4c315271eee4a8b839291f84f796b34eca"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c414cbda77dbf13c3bc88b073a1a9f375c7b0cb5e115e15d4b73ec3a2fbc6f59"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7a89eef64b5455835f5ed30254ec19bf41f7541cd94f266ab7cbd463f00c41"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19c65b00d42804e3fbea9708f0937d157e53429a39b7c61253ff15670ff62cb5"}, + {file = "regex-2024.7.24-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7a5486ca56c8869070a966321d5ab416ff0f83f30e0e2da1ab48815c8d165d46"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f51f9556785e5a203713f5efd9c085b4a45aecd2a42573e2b5041881b588d1f"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a4997716674d36a82eab3e86f8fa77080a5d8d96a389a61ea1d0e3a94a582cf7"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c0abb5e4e8ce71a61d9446040c1e86d4e6d23f9097275c5bd49ed978755ff0fe"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:18300a1d78cf1290fa583cd8b7cde26ecb73e9f5916690cf9d42de569c89b1ce"}, + {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:416c0e4f56308f34cdb18c3f59849479dde5b19febdcd6e6fa4d04b6c31c9faa"}, + {file = "regex-2024.7.24-cp310-cp310-win32.whl", hash = "sha256:fb168b5924bef397b5ba13aabd8cf5df7d3d93f10218d7b925e360d436863f66"}, + {file = "regex-2024.7.24-cp310-cp310-win_amd64.whl", hash = "sha256:6b9fc7e9cc983e75e2518496ba1afc524227c163e43d706688a6bb9eca41617e"}, + {file = "regex-2024.7.24-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:382281306e3adaaa7b8b9ebbb3ffb43358a7bbf585fa93821300a418bb975281"}, + {file = "regex-2024.7.24-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4fdd1384619f406ad9037fe6b6eaa3de2749e2e12084abc80169e8e075377d3b"}, + {file = "regex-2024.7.24-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3d974d24edb231446f708c455fd08f94c41c1ff4f04bcf06e5f36df5ef50b95a"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2ec4419a3fe6cf8a4795752596dfe0adb4aea40d3683a132bae9c30b81e8d73"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb563dd3aea54c797adf513eeec819c4213d7dbfc311874eb4fd28d10f2ff0f2"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45104baae8b9f67569f0f1dca5e1f1ed77a54ae1cd8b0b07aba89272710db61e"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:994448ee01864501912abf2bad9203bffc34158e80fe8bfb5b031f4f8e16da51"}, + {file = "regex-2024.7.24-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fac296f99283ac232d8125be932c5cd7644084a30748fda013028c815ba3364"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7e37e809b9303ec3a179085415cb5f418ecf65ec98cdfe34f6a078b46ef823ee"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:01b689e887f612610c869421241e075c02f2e3d1ae93a037cb14f88ab6a8934c"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f6442f0f0ff81775eaa5b05af8a0ffa1dda36e9cf6ec1e0d3d245e8564b684ce"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:871e3ab2838fbcb4e0865a6e01233975df3a15e6fce93b6f99d75cacbd9862d1"}, + {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c918b7a1e26b4ab40409820ddccc5d49871a82329640f5005f73572d5eaa9b5e"}, + {file = "regex-2024.7.24-cp311-cp311-win32.whl", hash = "sha256:2dfbb8baf8ba2c2b9aa2807f44ed272f0913eeeba002478c4577b8d29cde215c"}, + {file = "regex-2024.7.24-cp311-cp311-win_amd64.whl", hash = "sha256:538d30cd96ed7d1416d3956f94d54e426a8daf7c14527f6e0d6d425fcb4cca52"}, + {file = "regex-2024.7.24-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fe4ebef608553aff8deb845c7f4f1d0740ff76fa672c011cc0bacb2a00fbde86"}, + {file = "regex-2024.7.24-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:74007a5b25b7a678459f06559504f1eec2f0f17bca218c9d56f6a0a12bfffdad"}, + {file = "regex-2024.7.24-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7df9ea48641da022c2a3c9c641650cd09f0cd15e8908bf931ad538f5ca7919c9"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a1141a1dcc32904c47f6846b040275c6e5de0bf73f17d7a409035d55b76f289"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80c811cfcb5c331237d9bad3bea2c391114588cf4131707e84d9493064d267f9"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7214477bf9bd195894cf24005b1e7b496f46833337b5dedb7b2a6e33f66d962c"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d55588cba7553f0b6ec33130bc3e114b355570b45785cebdc9daed8c637dd440"}, + {file = "regex-2024.7.24-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:558a57cfc32adcf19d3f791f62b5ff564922942e389e3cfdb538a23d65a6b610"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a512eed9dfd4117110b1881ba9a59b31433caed0c4101b361f768e7bcbaf93c5"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:86b17ba823ea76256b1885652e3a141a99a5c4422f4a869189db328321b73799"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5eefee9bfe23f6df09ffb6dfb23809f4d74a78acef004aa904dc7c88b9944b05"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:731fcd76bbdbf225e2eb85b7c38da9633ad3073822f5ab32379381e8c3c12e94"}, + {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eaef80eac3b4cfbdd6de53c6e108b4c534c21ae055d1dbea2de6b3b8ff3def38"}, + {file = "regex-2024.7.24-cp312-cp312-win32.whl", hash = "sha256:185e029368d6f89f36e526764cf12bf8d6f0e3a2a7737da625a76f594bdfcbfc"}, + {file = "regex-2024.7.24-cp312-cp312-win_amd64.whl", hash = "sha256:2f1baff13cc2521bea83ab2528e7a80cbe0ebb2c6f0bfad15be7da3aed443908"}, + {file = "regex-2024.7.24-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:66b4c0731a5c81921e938dcf1a88e978264e26e6ac4ec96a4d21ae0354581ae0"}, + {file = "regex-2024.7.24-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:88ecc3afd7e776967fa16c80f974cb79399ee8dc6c96423321d6f7d4b881c92b"}, + {file = "regex-2024.7.24-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:64bd50cf16bcc54b274e20235bf8edbb64184a30e1e53873ff8d444e7ac656b2"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb462f0e346fcf41a901a126b50f8781e9a474d3927930f3490f38a6e73b6950"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a82465ebbc9b1c5c50738536fdfa7cab639a261a99b469c9d4c7dcbb2b3f1e57"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:68a8f8c046c6466ac61a36b65bb2395c74451df2ffb8458492ef49900efed293"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac8e84fff5d27420f3c1e879ce9929108e873667ec87e0c8eeb413a5311adfe"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba2537ef2163db9e6ccdbeb6f6424282ae4dea43177402152c67ef869cf3978b"}, + {file = "regex-2024.7.24-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:43affe33137fcd679bdae93fb25924979517e011f9dea99163f80b82eadc7e53"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c9bb87fdf2ab2370f21e4d5636e5317775e5d51ff32ebff2cf389f71b9b13750"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:945352286a541406f99b2655c973852da7911b3f4264e010218bbc1cc73168f2"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:8bc593dcce679206b60a538c302d03c29b18e3d862609317cb560e18b66d10cf"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:3f3b6ca8eae6d6c75a6cff525c8530c60e909a71a15e1b731723233331de4169"}, + {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c51edc3541e11fbe83f0c4d9412ef6c79f664a3745fab261457e84465ec9d5a8"}, + {file = "regex-2024.7.24-cp38-cp38-win32.whl", hash = "sha256:d0a07763776188b4db4c9c7fb1b8c494049f84659bb387b71c73bbc07f189e96"}, + {file = "regex-2024.7.24-cp38-cp38-win_amd64.whl", hash = "sha256:8fd5afd101dcf86a270d254364e0e8dddedebe6bd1ab9d5f732f274fa00499a5"}, + {file = "regex-2024.7.24-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0ffe3f9d430cd37d8fa5632ff6fb36d5b24818c5c986893063b4e5bdb84cdf24"}, + {file = "regex-2024.7.24-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:25419b70ba00a16abc90ee5fce061228206173231f004437730b67ac77323f0d"}, + {file = "regex-2024.7.24-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:33e2614a7ce627f0cdf2ad104797d1f68342d967de3695678c0cb84f530709f8"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d33a0021893ede5969876052796165bab6006559ab845fd7b515a30abdd990dc"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04ce29e2c5fedf296b1a1b0acc1724ba93a36fb14031f3abfb7abda2806c1535"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b16582783f44fbca6fcf46f61347340c787d7530d88b4d590a397a47583f31dd"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:836d3cc225b3e8a943d0b02633fb2f28a66e281290302a79df0e1eaa984ff7c1"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:438d9f0f4bc64e8dea78274caa5af971ceff0f8771e1a2333620969936ba10be"}, + {file = "regex-2024.7.24-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:973335b1624859cb0e52f96062a28aa18f3a5fc77a96e4a3d6d76e29811a0e6e"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c5e69fd3eb0b409432b537fe3c6f44ac089c458ab6b78dcec14478422879ec5f"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fbf8c2f00904eaf63ff37718eb13acf8e178cb940520e47b2f05027f5bb34ce3"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2757ace61bc4061b69af19e4689fa4416e1a04840f33b441034202b5cd02d4"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:44fc61b99035fd9b3b9453f1713234e5a7c92a04f3577252b45feefe1b327759"}, + {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:84c312cdf839e8b579f504afcd7b65f35d60b6285d892b19adea16355e8343c9"}, + {file = "regex-2024.7.24-cp39-cp39-win32.whl", hash = "sha256:ca5b2028c2f7af4e13fb9fc29b28d0ce767c38c7facdf64f6c2cd040413055f1"}, + {file = "regex-2024.7.24-cp39-cp39-win_amd64.whl", hash = "sha256:7c479f5ae937ec9985ecaf42e2e10631551d909f203e31308c12d703922742f9"}, + {file = "regex-2024.7.24.tar.gz", hash = "sha256:9cfd009eed1a46b27c14039ad5bbc5e71b6367c5b2e6d5f5da0ea91600817506"}, ] [[package]] @@ -3556,112 +3808,131 @@ requests = ">=2.0.0" [package.extras] rsa = ["oauthlib[signedtoken] (>=3.0.0)"] +[[package]] +name = "retry" +version = "0.9.2" +description = "Easy to use retry decorator." +optional = false +python-versions = "*" +files = [ + {file = "retry-0.9.2-py2.py3-none-any.whl", hash = "sha256:ccddf89761fa2c726ab29391837d4327f819ea14d244c232a1d24c67a2f98606"}, + {file = "retry-0.9.2.tar.gz", hash = "sha256:f8bfa8b99b69c4506d6f5bd3b0aabf77f98cdb17f3c9fc3f5ca820033336fba4"}, +] + +[package.dependencies] +decorator = ">=3.4.2" +py = ">=1.4.26,<2.0.0" + [[package]] name = "rpds-py" -version = "0.18.1" +version = "0.20.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:d31dea506d718693b6b2cffc0648a8929bdc51c70a311b2770f09611caa10d53"}, - {file = "rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:732672fbc449bab754e0b15356c077cc31566df874964d4801ab14f71951ea80"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a98a1f0552b5f227a3d6422dbd61bc6f30db170939bd87ed14f3c339aa6c7c9"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f1944ce16401aad1e3f7d312247b3d5de7981f634dc9dfe90da72b87d37887d"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38e14fb4e370885c4ecd734f093a2225ee52dc384b86fa55fe3f74638b2cfb09"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08d74b184f9ab6289b87b19fe6a6d1a97fbfea84b8a3e745e87a5de3029bf944"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d70129cef4a8d979caa37e7fe957202e7eee8ea02c5e16455bc9808a59c6b2f0"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ce0bb20e3a11bd04461324a6a798af34d503f8d6f1aa3d2aa8901ceaf039176d"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:81c5196a790032e0fc2464c0b4ab95f8610f96f1f2fa3d4deacce6a79852da60"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:f3027be483868c99b4985fda802a57a67fdf30c5d9a50338d9db646d590198da"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d44607f98caa2961bab4fa3c4309724b185b464cdc3ba6f3d7340bac3ec97cc1"}, - {file = "rpds_py-0.18.1-cp310-none-win32.whl", hash = "sha256:c273e795e7a0f1fddd46e1e3cb8be15634c29ae8ff31c196debb620e1edb9333"}, - {file = "rpds_py-0.18.1-cp310-none-win_amd64.whl", hash = "sha256:8352f48d511de5f973e4f2f9412736d7dea76c69faa6d36bcf885b50c758ab9a"}, - {file = "rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6b5ff7e1d63a8281654b5e2896d7f08799378e594f09cf3674e832ecaf396ce8"}, - {file = "rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8927638a4d4137a289e41d0fd631551e89fa346d6dbcfc31ad627557d03ceb6d"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:154bf5c93d79558b44e5b50cc354aa0459e518e83677791e6adb0b039b7aa6a7"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07f2139741e5deb2c5154a7b9629bc5aa48c766b643c1a6750d16f865a82c5fc"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8c7672e9fba7425f79019db9945b16e308ed8bc89348c23d955c8c0540da0a07"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:489bdfe1abd0406eba6b3bb4fdc87c7fa40f1031de073d0cfb744634cc8fa261"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c20f05e8e3d4fc76875fc9cb8cf24b90a63f5a1b4c5b9273f0e8225e169b100"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:967342e045564cef76dfcf1edb700b1e20838d83b1aa02ab313e6a497cf923b8"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2cc7c1a47f3a63282ab0f422d90ddac4aa3034e39fc66a559ab93041e6505da7"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f7afbfee1157e0f9376c00bb232e80a60e59ed716e3211a80cb8506550671e6e"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e6934d70dc50f9f8ea47081ceafdec09245fd9f6032669c3b45705dea096b88"}, - {file = "rpds_py-0.18.1-cp311-none-win32.whl", hash = "sha256:c69882964516dc143083d3795cb508e806b09fc3800fd0d4cddc1df6c36e76bb"}, - {file = "rpds_py-0.18.1-cp311-none-win_amd64.whl", hash = "sha256:70a838f7754483bcdc830444952fd89645569e7452e3226de4a613a4c1793fb2"}, - {file = "rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3dd3cd86e1db5aadd334e011eba4e29d37a104b403e8ca24dcd6703c68ca55b3"}, - {file = "rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:05f3d615099bd9b13ecf2fc9cf2d839ad3f20239c678f461c753e93755d629ee"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35b2b771b13eee8729a5049c976197ff58a27a3829c018a04341bcf1ae409b2b"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ee17cd26b97d537af8f33635ef38be873073d516fd425e80559f4585a7b90c43"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b646bf655b135ccf4522ed43d6902af37d3f5dbcf0da66c769a2b3938b9d8184"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19ba472b9606c36716062c023afa2484d1e4220548751bda14f725a7de17b4f6"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e30ac5e329098903262dc5bdd7e2086e0256aa762cc8b744f9e7bf2a427d3f8"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d58ad6317d188c43750cb76e9deacf6051d0f884d87dc6518e0280438648a9ac"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e1735502458621921cee039c47318cb90b51d532c2766593be6207eec53e5c4c"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f5bab211605d91db0e2995a17b5c6ee5edec1270e46223e513eaa20da20076ac"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2fc24a329a717f9e2448f8cd1f960f9dac4e45b6224d60734edeb67499bab03a"}, - {file = "rpds_py-0.18.1-cp312-none-win32.whl", hash = "sha256:1805d5901779662d599d0e2e4159d8a82c0b05faa86ef9222bf974572286b2b6"}, - {file = "rpds_py-0.18.1-cp312-none-win_amd64.whl", hash = "sha256:720edcb916df872d80f80a1cc5ea9058300b97721efda8651efcd938a9c70a72"}, - {file = "rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:c827576e2fa017a081346dce87d532a5310241648eb3700af9a571a6e9fc7e74"}, - {file = "rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aa3679e751408d75a0b4d8d26d6647b6d9326f5e35c00a7ccd82b78ef64f65f8"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0abeee75434e2ee2d142d650d1e54ac1f8b01e6e6abdde8ffd6eeac6e9c38e20"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed402d6153c5d519a0faf1bb69898e97fb31613b49da27a84a13935ea9164dfc"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:338dee44b0cef8b70fd2ef54b4e09bb1b97fc6c3a58fea5db6cc083fd9fc2724"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7750569d9526199c5b97e5a9f8d96a13300950d910cf04a861d96f4273d5b104"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:607345bd5912aacc0c5a63d45a1f73fef29e697884f7e861094e443187c02be5"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:207c82978115baa1fd8d706d720b4a4d2b0913df1c78c85ba73fe6c5804505f0"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6d1e42d2735d437e7e80bab4d78eb2e459af48c0a46e686ea35f690b93db792d"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5463c47c08630007dc0fe99fb480ea4f34a89712410592380425a9b4e1611d8e"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:06d218939e1bf2ca50e6b0ec700ffe755e5216a8230ab3e87c059ebb4ea06afc"}, - {file = "rpds_py-0.18.1-cp38-none-win32.whl", hash = "sha256:312fe69b4fe1ffbe76520a7676b1e5ac06ddf7826d764cc10265c3b53f96dbe9"}, - {file = "rpds_py-0.18.1-cp38-none-win_amd64.whl", hash = "sha256:9437ca26784120a279f3137ee080b0e717012c42921eb07861b412340f85bae2"}, - {file = "rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:19e515b78c3fc1039dd7da0a33c28c3154458f947f4dc198d3c72db2b6b5dc93"}, - {file = "rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a7b28c5b066bca9a4eb4e2f2663012debe680f097979d880657f00e1c30875a0"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:673fdbbf668dd958eff750e500495ef3f611e2ecc209464f661bc82e9838991e"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d960de62227635d2e61068f42a6cb6aae91a7fe00fca0e3aeed17667c8a34611"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:352a88dc7892f1da66b6027af06a2e7e5d53fe05924cc2cfc56495b586a10b72"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e0ee01ad8260184db21468a6e1c37afa0529acc12c3a697ee498d3c2c4dcaf3"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4c39ad2f512b4041343ea3c7894339e4ca7839ac38ca83d68a832fc8b3748ab"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aaa71ee43a703c321906813bb252f69524f02aa05bf4eec85f0c41d5d62d0f4c"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6cd8098517c64a85e790657e7b1e509b9fe07487fd358e19431cb120f7d96338"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:4adec039b8e2928983f885c53b7cc4cda8965b62b6596501a0308d2703f8af1b"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:32b7daaa3e9389db3695964ce8e566e3413b0c43e3394c05e4b243a4cd7bef26"}, - {file = "rpds_py-0.18.1-cp39-none-win32.whl", hash = "sha256:2625f03b105328729f9450c8badda34d5243231eef6535f80064d57035738360"}, - {file = "rpds_py-0.18.1-cp39-none-win_amd64.whl", hash = "sha256:bf18932d0003c8c4d51a39f244231986ab23ee057d235a12b2684ea26a353590"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cbfbea39ba64f5e53ae2915de36f130588bba71245b418060ec3330ebf85678e"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:a3d456ff2a6a4d2adcdf3c1c960a36f4fd2fec6e3b4902a42a384d17cf4e7a65"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7700936ef9d006b7ef605dc53aa364da2de5a3aa65516a1f3ce73bf82ecfc7ae"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51584acc5916212e1bf45edd17f3a6b05fe0cbb40482d25e619f824dccb679de"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:942695a206a58d2575033ff1e42b12b2aece98d6003c6bc739fbf33d1773b12f"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b906b5f58892813e5ba5c6056d6a5ad08f358ba49f046d910ad992196ea61397"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6f8e3fecca256fefc91bb6765a693d96692459d7d4c644660a9fff32e517843"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7732770412bab81c5a9f6d20aeb60ae943a9b36dcd990d876a773526468e7163"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bd1105b50ede37461c1d51b9698c4f4be6e13e69a908ab7751e3807985fc0346"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:618916f5535784960f3ecf8111581f4ad31d347c3de66d02e728de460a46303c"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:17c6d2155e2423f7e79e3bb18151c686d40db42d8645e7977442170c360194d4"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c4c4c3f878df21faf5fac86eda32671c27889e13570645a9eea0a1abdd50922"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:fab6ce90574645a0d6c58890e9bcaac8d94dff54fb51c69e5522a7358b80ab64"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:531796fb842b53f2695e94dc338929e9f9dbf473b64710c28af5a160b2a8927d"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:740884bc62a5e2bbb31e584f5d23b32320fd75d79f916f15a788d527a5e83644"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:998125738de0158f088aef3cb264a34251908dd2e5d9966774fdab7402edfab7"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2be6e9dd4111d5b31ba3b74d17da54a8319d8168890fbaea4b9e5c3de630ae5"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0cee71bc618cd93716f3c1bf56653740d2d13ddbd47673efa8bf41435a60daa"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2c3caec4ec5cd1d18e5dd6ae5194d24ed12785212a90b37f5f7f06b8bedd7139"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:27bba383e8c5231cd559affe169ca0b96ec78d39909ffd817f28b166d7ddd4d8"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:a888e8bdb45916234b99da2d859566f1e8a1d2275a801bb8e4a9644e3c7e7909"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6031b25fb1b06327b43d841f33842b383beba399884f8228a6bb3df3088485ff"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48c2faaa8adfacefcbfdb5f2e2e7bdad081e5ace8d182e5f4ade971f128e6bb3"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d85164315bd68c0806768dc6bb0429c6f95c354f87485ee3593c4f6b14def2bd"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6afd80f6c79893cfc0574956f78a0add8c76e3696f2d6a15bca2c66c415cf2d4"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fa242ac1ff583e4ec7771141606aafc92b361cd90a05c30d93e343a0c2d82a89"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d21be4770ff4e08698e1e8e0bce06edb6ea0626e7c8f560bc08222880aca6a6f"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c45a639e93a0c5d4b788b2613bd637468edd62f8f95ebc6fcc303d58ab3f0a8"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910e71711d1055b2768181efa0a17537b2622afeb0424116619817007f8a2b10"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b9bb1f182a97880f6078283b3505a707057c42bf55d8fca604f70dedfdc0772a"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d54f74f40b1f7aaa595a02ff42ef38ca654b1469bef7d52867da474243cc633"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8d2e182c9ee01135e11e9676e9a62dfad791a7a467738f06726872374a83db49"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:636a15acc588f70fda1661234761f9ed9ad79ebed3f2125d44be0862708b666e"}, - {file = "rpds_py-0.18.1.tar.gz", hash = "sha256:dc48b479d540770c811fbd1eb9ba2bb66951863e448efec2e2c102625328e92f"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, + {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, + {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, + {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, + {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, + {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, + {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, + {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, + {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, + {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, + {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, + {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, + {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, + {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, ] [[package]] @@ -3794,18 +4065,23 @@ paramiko = "*" [[package]] name = "setuptools" -version = "70.0.0" +version = "74.0.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-70.0.0-py3-none-any.whl", hash = "sha256:54faa7f2e8d2d11bcd2c07bed282eef1046b5c080d1c32add737d7b5817b1ad4"}, - {file = "setuptools-70.0.0.tar.gz", hash = "sha256:f211a66637b8fa059bb28183da127d4e86396c991a942b028c6650d4319c3fd0"}, + {file = "setuptools-74.0.0-py3-none-any.whl", hash = "sha256:0274581a0037b638b9fc1c6883cc71c0210865aaa76073f7882376b641b84e8f"}, + {file = "setuptools-74.0.0.tar.gz", hash = "sha256:a85e96b8be2b906f3e3e789adec6a9323abf79758ecfa3065bd740d81158b11e"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -testing = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mypy (==1.9)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.1)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (>=0.2.1)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] [[package]] name = "singledispatch" @@ -3857,13 +4133,13 @@ files = [ [[package]] name = "social-auth-app-django" -version = "5.4.1" +version = "5.4.2" description = "Python Social Authentication, Django integration." optional = false python-versions = ">=3.8" files = [ - {file = "social-auth-app-django-5.4.1.tar.gz", hash = "sha256:2a43cde559dd34fdc7132417b6c52c780fa99ec2332dee9f405b4763f371c367"}, - {file = "social_auth_app_django-5.4.1-py3-none-any.whl", hash = "sha256:7519f186c63c50f2d364457b236f051338d194bcface55e318a6a705c5213477"}, + {file = "social-auth-app-django-5.4.2.tar.gz", hash = "sha256:c8832c6cf13da6ad76f5613bcda2647d89ae7cfbc5217fadd13477a3406feaa8"}, + {file = "social_auth_app_django-5.4.2-py3-none-any.whl", hash = "sha256:0c041a31707921aef9a930f143183c65d8c7b364381364a50f3f7c6fcc9d62f6"}, ] [package.dependencies] @@ -3898,13 +4174,13 @@ saml = ["python3-saml (>=1.5.0)"] [[package]] name = "sqlparse" -version = "0.5.0" +version = "0.5.1" description = "A non-validating SQL parser." optional = false python-versions = ">=3.8" files = [ - {file = "sqlparse-0.5.0-py3-none-any.whl", hash = "sha256:c204494cd97479d0e39f28c93d46c0b2d5959c7b9ab904762ea6c7af211c8663"}, - {file = "sqlparse-0.5.0.tar.gz", hash = "sha256:714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93"}, + {file = "sqlparse-0.5.1-py3-none-any.whl", hash = "sha256:773dcbf9a5ab44a090f3441e2180efe2560220203dc2f8c0b0fa141e18b505e4"}, + {file = "sqlparse-0.5.1.tar.gz", hash = "sha256:bb6b4df465655ef332548e24f08e205afc81b9ab86cb1c45657a7ff173a3a00e"}, ] [package.extras] @@ -4008,13 +4284,13 @@ files = [ [[package]] name = "tomlkit" -version = "0.12.5" +version = "0.13.2" description = "Style preserving TOML library" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "tomlkit-0.12.5-py3-none-any.whl", hash = "sha256:af914f5a9c59ed9d0762c7b64d3b5d5df007448eb9cd2edc8a46b1eafead172f"}, - {file = "tomlkit-0.12.5.tar.gz", hash = "sha256:eef34fba39834d4d6b73c9ba7f3e4d1c417a4e56f89a7e96e090dd0d24b8fb3c"}, + {file = "tomlkit-0.13.2-py3-none-any.whl", hash = "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde"}, + {file = "tomlkit-0.13.2.tar.gz", hash = "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79"}, ] [[package]] @@ -4056,13 +4332,13 @@ test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0, [[package]] name = "transitions" -version = "0.9.1" +version = "0.9.2" description = "A lightweight, object-oriented Python state machine implementation with many extensions." optional = false python-versions = "*" files = [ - {file = "transitions-0.9.1-py2.py3-none-any.whl", hash = "sha256:e76ad7bf44d46bd03bc50f269cebfa5affef28534c92b87b43e60b03d8925864"}, - {file = "transitions-0.9.1.tar.gz", hash = "sha256:3542c37108e93e2ae5f215208ec5732c94a772937854a102cd7345b967fee61b"}, + {file = "transitions-0.9.2-py2.py3-none-any.whl", hash = "sha256:f7b40c9b4a93869f36c4d1c33809aeb18cdeeb065fd1adba018ee39c3db216f3"}, + {file = "transitions-0.9.2.tar.gz", hash = "sha256:2f8490dbdbd419366cef1516032ab06d07ccb5839ef54905e842a472692d4204"}, ] [package.dependencies] @@ -4106,13 +4382,13 @@ docs = ["mkdocs (==1.2.4)", "mkdocs-material (==7.2.2)", "mkdocs-material-extens [[package]] name = "typing-extensions" -version = "4.12.0" +version = "4.12.2" description = "Backported and Experimental Type Hints for Python 3.8+" optional = false python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.12.0-py3-none-any.whl", hash = "sha256:b349c66bea9016ac22978d800cfff206d5f9816951f12a7d0ec5578b0a819594"}, - {file = "typing_extensions-4.12.0.tar.gz", hash = "sha256:8cbcdc8606ebcb0d95453ad7dc5065e6237b6aa230a31e81d0f440c30fed5fd8"}, + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] [[package]] @@ -4139,13 +4415,13 @@ files = [ [[package]] name = "urllib3" -version = "1.26.18" +version = "1.26.20" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, - {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, + {file = "urllib3-1.26.20-py2.py3-none-any.whl", hash = "sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e"}, + {file = "urllib3-1.26.20.tar.gz", hash = "sha256:40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32"}, ] [package.extras] @@ -4166,43 +4442,46 @@ files = [ [[package]] name = "watchdog" -version = "4.0.1" +version = "4.0.2" description = "Filesystem events monitoring" optional = false python-versions = ">=3.8" files = [ - {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:da2dfdaa8006eb6a71051795856bedd97e5b03e57da96f98e375682c48850645"}, - {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e93f451f2dfa433d97765ca2634628b789b49ba8b504fdde5837cdcf25fdb53b"}, - {file = "watchdog-4.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ef0107bbb6a55f5be727cfc2ef945d5676b97bffb8425650dadbb184be9f9a2b"}, - {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5"}, - {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767"}, - {file = "watchdog-4.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459"}, - {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175"}, - {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7"}, - {file = "watchdog-4.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28"}, - {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d4925e4bf7b9bddd1c3de13c9b8a2cdb89a468f640e66fbfabaf735bd85b3e35"}, - {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cad0bbd66cd59fc474b4a4376bc5ac3fc698723510cbb64091c2a793b18654db"}, - {file = "watchdog-4.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a3c2c317a8fb53e5b3d25790553796105501a235343f5d2bf23bb8649c2c8709"}, - {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c9904904b6564d4ee8a1ed820db76185a3c96e05560c776c79a6ce5ab71888ba"}, - {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:667f3c579e813fcbad1b784db7a1aaa96524bed53437e119f6a2f5de4db04235"}, - {file = "watchdog-4.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d10a681c9a1d5a77e75c48a3b8e1a9f2ae2928eda463e8d33660437705659682"}, - {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0144c0ea9997b92615af1d94afc0c217e07ce2c14912c7b1a5731776329fcfc7"}, - {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:998d2be6976a0ee3a81fb8e2777900c28641fb5bfbd0c84717d89bca0addcdc5"}, - {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e7921319fe4430b11278d924ef66d4daa469fafb1da679a2e48c935fa27af193"}, - {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f0de0f284248ab40188f23380b03b59126d1479cd59940f2a34f8852db710625"}, - {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bca36be5707e81b9e6ce3208d92d95540d4ca244c006b61511753583c81c70dd"}, - {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:ab998f567ebdf6b1da7dc1e5accfaa7c6992244629c0fdaef062f43249bd8dee"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_i686.whl", hash = "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84"}, - {file = "watchdog-4.0.1-py3-none-win32.whl", hash = "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429"}, - {file = "watchdog-4.0.1-py3-none-win_amd64.whl", hash = "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a"}, - {file = "watchdog-4.0.1-py3-none-win_ia64.whl", hash = "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d"}, - {file = "watchdog-4.0.1.tar.gz", hash = "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44"}, + {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ede7f010f2239b97cc79e6cb3c249e72962404ae3865860855d5cbe708b0fd22"}, + {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a2cffa171445b0efa0726c561eca9a27d00a1f2b83846dbd5a4f639c4f8ca8e1"}, + {file = "watchdog-4.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c50f148b31b03fbadd6d0b5980e38b558046b127dc483e5e4505fcef250f9503"}, + {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7c7d4bf585ad501c5f6c980e7be9c4f15604c7cc150e942d82083b31a7548930"}, + {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:914285126ad0b6eb2258bbbcb7b288d9dfd655ae88fa28945be05a7b475a800b"}, + {file = "watchdog-4.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:984306dc4720da5498b16fc037b36ac443816125a3705dfde4fd90652d8028ef"}, + {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1cdcfd8142f604630deef34722d695fb455d04ab7cfe9963055df1fc69e6727a"}, + {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7ab624ff2f663f98cd03c8b7eedc09375a911794dfea6bf2a359fcc266bff29"}, + {file = "watchdog-4.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:132937547a716027bd5714383dfc40dc66c26769f1ce8a72a859d6a48f371f3a"}, + {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:cd67c7df93eb58f360c43802acc945fa8da70c675b6fa37a241e17ca698ca49b"}, + {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcfd02377be80ef3b6bc4ce481ef3959640458d6feaae0bd43dd90a43da90a7d"}, + {file = "watchdog-4.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:980b71510f59c884d684b3663d46e7a14b457c9611c481e5cef08f4dd022eed7"}, + {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:aa160781cafff2719b663c8a506156e9289d111d80f3387cf3af49cedee1f040"}, + {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f6ee8dedd255087bc7fe82adf046f0b75479b989185fb0bdf9a98b612170eac7"}, + {file = "watchdog-4.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0b4359067d30d5b864e09c8597b112fe0a0a59321a0f331498b013fb097406b4"}, + {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:770eef5372f146997638d737c9a3c597a3b41037cfbc5c41538fc27c09c3a3f9"}, + {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eeea812f38536a0aa859972d50c76e37f4456474b02bd93674d1947cf1e39578"}, + {file = "watchdog-4.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b2c45f6e1e57ebb4687690c05bc3a2c1fb6ab260550c4290b8abb1335e0fd08b"}, + {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:10b6683df70d340ac3279eff0b2766813f00f35a1d37515d2c99959ada8f05fa"}, + {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:f7c739888c20f99824f7aa9d31ac8a97353e22d0c0e54703a547a218f6637eb3"}, + {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c100d09ac72a8a08ddbf0629ddfa0b8ee41740f9051429baa8e31bb903ad7508"}, + {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f5315a8c8dd6dd9425b974515081fc0aadca1d1d61e078d2246509fd756141ee"}, + {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:2d468028a77b42cc685ed694a7a550a8d1771bb05193ba7b24006b8241a571a1"}, + {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f15edcae3830ff20e55d1f4e743e92970c847bcddc8b7509bcd172aa04de506e"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:936acba76d636f70db8f3c66e76aa6cb5136a936fc2a5088b9ce1c7a3508fc83"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_armv7l.whl", hash = "sha256:e252f8ca942a870f38cf785aef420285431311652d871409a64e2a0a52a2174c"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_i686.whl", hash = "sha256:0e83619a2d5d436a7e58a1aea957a3c1ccbf9782c43c0b4fed80580e5e4acd1a"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64.whl", hash = "sha256:88456d65f207b39f1981bf772e473799fcdc10801062c36fd5ad9f9d1d463a73"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:32be97f3b75693a93c683787a87a0dc8db98bb84701539954eef991fb35f5fbc"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_s390x.whl", hash = "sha256:c82253cfc9be68e3e49282831afad2c1f6593af80c0daf1287f6a92657986757"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:c0b14488bd336c5b1845cee83d3e631a1f8b4e9c5091ec539406e4a324f882d8"}, + {file = "watchdog-4.0.2-py3-none-win32.whl", hash = "sha256:0d8a7e523ef03757a5aa29f591437d64d0d894635f8a50f370fe37f913ce4e19"}, + {file = "watchdog-4.0.2-py3-none-win_amd64.whl", hash = "sha256:c344453ef3bf875a535b0488e3ad28e341adbd5a9ffb0f7d62cefacc8824ef2b"}, + {file = "watchdog-4.0.2-py3-none-win_ia64.whl", hash = "sha256:baececaa8edff42cd16558a639a9b0ddf425f93d892e8392a56bf904f5eff22c"}, + {file = "watchdog-4.0.2.tar.gz", hash = "sha256:b4dfbb6c49221be4535623ea4474a4d6ee0a9cef4a80b20c28db4d858b64e270"}, ] [package.extras] @@ -4221,13 +4500,13 @@ files = [ [[package]] name = "wheel" -version = "0.43.0" +version = "0.44.0" description = "A built-package format for Python" optional = false python-versions = ">=3.8" files = [ - {file = "wheel-0.43.0-py3-none-any.whl", hash = "sha256:55c570405f142630c6b9f72fe09d9b67cf1477fcf543ae5b8dcb1f5b7377da81"}, - {file = "wheel-0.43.0.tar.gz", hash = "sha256:465ef92c69fa5c5da2d1cf8ac40559a8c940886afcef87dcf14b9470862f1d85"}, + {file = "wheel-0.44.0-py3-none-any.whl", hash = "sha256:2376a90c98cc337d18623527a97c31797bd02bad0033d41547043a1cbfbe448f"}, + {file = "wheel-0.44.0.tar.gz", hash = "sha256:a29c3f2817e95ab89aa4660681ad547c0e9547f20e75b0562fe7723c9a2a9d49"}, ] [package.extras] @@ -4267,18 +4546,22 @@ pyyaml = "*" [[package]] name = "zipp" -version = "3.19.0" +version = "3.20.1" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.19.0-py3-none-any.whl", hash = "sha256:96dc6ad62f1441bcaccef23b274ec471518daf4fbbc580341204936a5a3dddec"}, - {file = "zipp-3.19.0.tar.gz", hash = "sha256:952df858fb3164426c976d9338d3961e8e8b3758e2e059e0f754b8c4262625ee"}, + {file = "zipp-3.20.1-py3-none-any.whl", hash = "sha256:9960cd8967c8f85a56f920d5d507274e74f9ff813a0ab8889a5b5be2daf44064"}, + {file = "zipp-3.20.1.tar.gz", hash = "sha256:c22b14cc4763c5a5b04134207736c107db42e9d3ef2d9779d465f5f1bcba572b"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["big-O", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] +type = ["pytest-mypy"] [extras] all = [] @@ -4286,4 +4569,4 @@ all = [] [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.12" -content-hash = "8ac22c9e70d945661feae6f306ede76e1c65e716b20fbbcba1337029f53148f1" +content-hash = "a772d56c2dd4de6d60cec3da5e4994d38f8aa130d5aa178c50573b8ee1f0e87d" diff --git a/pyproject.toml b/pyproject.toml index bd4deff9..5ecc2b71 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ python = ">=3.8,<3.12" napalm = ">=2.5.0, <5" zipp = "^3.4.0" nautobot = "^2.2.3" -nautobot-ssot = "^2.6.0" +nautobot-ssot = "^3.0.0" nautobot-plugin-nornir = "^2.0.0" jdiff = "^0.0.6" ntc-templates = "^6.0.0" @@ -52,12 +52,13 @@ Markdown = "*" # Render custom markdown for version added/changed/remove notes markdown-version-annotations = "1.0.1" # Rendering docs to HTML -mkdocs = "1.5.2" +mkdocs = "1.6.0" # Material for MkDocs theme -mkdocs-material = "9.1.15" +mkdocs-material = "9.5.32" # Automatic documentation from sources, for MkDocs -mkdocstrings = "0.22.0" -mkdocstrings-python = "1.5.2" +mkdocstrings = "0.25.2" +mkdocstrings-python = "1.10.8" +griffe = "1.1.1" towncrier = "~23.6.0" [tool.poetry.extras] diff --git a/tasks.py b/tasks.py index 37342758..12f761a6 100644 --- a/tasks.py +++ b/tasks.py @@ -13,10 +13,12 @@ """ import os +import re from pathlib import Path from time import sleep from invoke.collection import Collection +from invoke.exceptions import Exit from invoke.tasks import task as invoke_task @@ -205,17 +207,51 @@ def generate_packages(context): run_command(context, command) +def _get_docker_nautobot_version(context, nautobot_ver=None, python_ver=None): + """Extract Nautobot version from base docker image.""" + if nautobot_ver is None: + nautobot_ver = context.nautobot_device_onboarding.nautobot_ver + if python_ver is None: + python_ver = context.nautobot_device_onboarding.python_ver + dockerfile_path = os.path.join(context.nautobot_device_onboarding.compose_dir, "Dockerfile") + base_image = context.run(f"grep --max-count=1 '^FROM ' {dockerfile_path}", hide=True).stdout.strip().split(" ")[1] + base_image = base_image.replace(r"${NAUTOBOT_VER}", nautobot_ver).replace(r"${PYTHON_VER}", python_ver) + pip_nautobot_ver = context.run(f"docker run --rm --entrypoint '' {base_image} pip show nautobot", hide=True) + match_version = re.search(r"^Version: (.+)$", pip_nautobot_ver.stdout.strip(), flags=re.MULTILINE) + if match_version: + return match_version.group(1) + else: + raise Exit(f"Nautobot version not found in Docker base image {base_image}.") + + @task( help={ "check": ( "If enabled, check for outdated dependencies in the poetry.lock file, " "instead of generating a new one. (default: disabled)" - ) + ), + "constrain_nautobot_ver": ( + "Run 'poetry add nautobot@[version] --lock' to generate the lockfile, " + "where [version] is the version installed in the Dockerfile's base image. " + "Generally intended to be used in CI and not for local development. (default: disabled)" + ), + "constrain_python_ver": ( + "When using `constrain_nautobot_ver`, further constrain the nautobot version " + "to python_ver so that poetry doesn't complain about python version incompatibilities. " + "Generally intended to be used in CI and not for local development. (default: disabled)" + ), } ) -def lock(context, check=False): - """Generate poetry.lock inside the Nautobot container.""" - run_command(context, f"poetry {'check' if check else 'lock --no-update'}") +def lock(context, check=False, constrain_nautobot_ver=False, constrain_python_ver=False): + """Generate poetry.lock file.""" + if constrain_nautobot_ver: + docker_nautobot_version = _get_docker_nautobot_version(context) + command = f"poetry add --lock nautobot@{docker_nautobot_version}" + if constrain_python_ver: + command += f" --python {context.nautobot_device_onboarding.python_ver}" + else: + command = f"poetry {'check' if check else 'lock --no-update'}" + run_command(context, command) # ------------------------------------------------------------------------------ From fd8bb85dcc6290374df2ae2bec998c38f9dd370b Mon Sep 17 00:00:00 2001 From: Nautobot-Bot <79372327+nautobot-bot@users.noreply.github.com> Date: Thu, 12 Sep 2024 11:03:08 -0400 Subject: [PATCH 2/9] Cookie updated by NetworkToCode Cookie Drift Manager Tool (#231) * Cookie updated by NetworkToCode Cookie Drift Manager Tool Template: ``` { "template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", "dir": "nautobot-app", "ref": "refs/tags/nautobot-app-v2.3.2", "path": null } ``` Cookie: ``` { "remote": "https://github.com/nautobot/nautobot-app-device-onboarding.git", "path": "/tmp/tmpez7eu0wn/nautobot-app-device-onboarding", "repository_path": "/tmp/tmpez7eu0wn/nautobot-app-device-onboarding", "dir": "", "branch_prefix": "drift-manager", "context": { "codeowner_github_usernames": "@mzbroch @scetron @glennmatthews @chadell", "full_name": "Network to Code, LLC", "email": "info@networktocode.com", "github_org": "nautobot", "app_name": "nautobot_device_onboarding", "verbose_name": "Device Onboarding", "app_slug": "nautobot-device-onboarding", "project_slug": "nautobot-app-device-onboarding", "repo_url": "https://github.com/nautobot/nautobot-app-device-onboarding", "base_url": "nautobot-device-onboarding", "min_nautobot_version": "2.0.3", "max_nautobot_version": "2.9999", "camel_name": "NautobotDeviceOnboarding", "project_short_description": "Device Onboarding", "model_class_name": "None", "open_source_license": "Apache-2.0", "docs_base_url": "https://docs.nautobot.com", "docs_app_url": "https://docs.nautobot.com/projects/device-onboarding/en/latest", "_template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", "_output_dir": "/tmp/tmpez7eu0wn", "_repo_dir": "/github/home/.cookiecutters/cookiecutter-nautobot-app/nautobot-app", "_checkout": "refs/tags/nautobot-app-v2.3.2" }, "base_branch": "develop", "remote_name": "origin", "pull_request_strategy": "PullRequestStrategy.CREATE", "post_actions": [ "PostAction.BLACK" ], "baked_commit_ref": "32dbed28878e65887bfd9bd5601a0d4c5b5220e8", "draft": true } ``` CLI Arguments: ``` { "cookie_dir": "", "input": false, "json_filename": "", "output_dir": "", "push": true, "template": "", "template_dir": "", "template_ref": "refs/tags/nautobot-app-v2.3.2", "pull_request": null, "post_action": [], "disable_post_actions": false, "draft": null } ``` * fix drift manager * changelog * lockfile * pylint * fix ci * disable mysql test * Update invoke.example.yml --------- Co-authored-by: bakebot Co-authored-by: Gary Snider <75227981+gsnider2195@users.noreply.github.com> --- .cookiecutter.json | 4 +- .github/workflows/ci.yml | 8 +- changes/231.added | 1 + changes/231.housekeeping | 1 + invoke.example.yml | 21 +- mkdocs.yml | 2 +- nautobot_device_onboarding/jobs.py | 4 +- .../tests/test_transform.py | 2 +- poetry.lock | 1617 +++++++++-------- pyproject.toml | 23 +- tasks.py | 2 +- 11 files changed, 891 insertions(+), 794 deletions(-) create mode 100644 changes/231.added create mode 100644 changes/231.housekeeping diff --git a/.cookiecutter.json b/.cookiecutter.json index 21fa6220..6311567c 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -21,7 +21,7 @@ "_drift_manager": { "template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", "template_dir": "nautobot-app", - "template_ref": "refs/tags/nautobot-app-v2.3.0", + "template_ref": "refs/tags/nautobot-app-v2.3.2", "cookie_dir": "", "branch_prefix": "drift-manager", "pull_request_strategy": "create", @@ -29,7 +29,7 @@ "black" ], "draft": true, - "baked_commit_ref": "32dbed28878e65887bfd9bd5601a0d4c5b5220e8" + "baked_commit_ref": "56195cad1cb296db964271e2ee9bf643e3d4404b" } } } \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7de623a..c412425f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,14 +127,14 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.8", "3.11"] + python-version: ["3.8", "3.12"] db-backend: ["postgresql"] nautobot-version: ["stable"] include: - python-version: "3.11" db-backend: "postgresql" nautobot-version: "2.2.3" - # - python-version: "3.11" + # - python-version: "3.12" # db-backend: "mysql" # nautobot-version: "stable" runs-on: "ubuntu-22.04" @@ -205,7 +205,7 @@ jobs: - name: "Set up Python" uses: "actions/setup-python@v5" with: - python-version: "3.11" + python-version: "3.12" - name: "Install Python Packages" run: "pip install poetry" - name: "Set env" @@ -240,7 +240,7 @@ jobs: - name: "Set up Python" uses: "actions/setup-python@v5" with: - python-version: "3.11" + python-version: "3.12" - name: "Install Python Packages" run: "pip install poetry" - name: "Set env" diff --git a/changes/231.added b/changes/231.added new file mode 100644 index 00000000..c738255f --- /dev/null +++ b/changes/231.added @@ -0,0 +1 @@ +Added Python 3.12 support. diff --git a/changes/231.housekeeping b/changes/231.housekeeping new file mode 100644 index 00000000..bd272c5d --- /dev/null +++ b/changes/231.housekeeping @@ -0,0 +1 @@ +Rebaked from the cookie `nautobot-app-v2.3.2`. diff --git a/invoke.example.yml b/invoke.example.yml index 881d1d41..f8a2543a 100644 --- a/invoke.example.yml +++ b/invoke.example.yml @@ -1,12 +1,15 @@ --- nautobot_device_onboarding: - project_name: "nautobot-device-onboarding" - nautobot_ver: "2.0.3" - local: false + nautobot_ver: "2.2.3" python_ver: "3.11" - compose_dir: "development" - compose_files: - - "docker-compose.base.yml" - - "docker-compose.redis.yml" - - "docker-compose.postgres.yml" - - "docker-compose.dev.yml" + # local: false + # compose_dir: "/full/path/to/nautobot-app-device-onboarding/development" + +# The following is an example of using MySQL as the database backend +# --- +# nautobot_device_onboarding: +# compose_files: +# - "docker-compose.base.yml" +# - "docker-compose.redis.yml" +# - "docker-compose.mysql.yml" +# - "docker-compose.dev.yml" diff --git a/mkdocs.yml b/mkdocs.yml index 8381ae16..4bd10c9b 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,6 @@ --- dev_addr: "127.0.0.1:8001" -edit_uri: "edit/main/nautobot-app-device-onboarding/docs" +edit_uri: "edit/main/docs" site_dir: "nautobot_device_onboarding/static/nautobot_device_onboarding/docs" site_name: "Device Onboarding Documentation" site_url: "https://docs.nautobot.com/projects/device-onboarding/en/latest/" diff --git a/nautobot_device_onboarding/jobs.py b/nautobot_device_onboarding/jobs.py index 1edac236..6ee5f279 100755 --- a/nautobot_device_onboarding/jobs.py +++ b/nautobot_device_onboarding/jobs.py @@ -632,9 +632,9 @@ def run( if self.debug: self.logger.debug("Checking for last_network_data_sync custom field") try: - cf = CustomField.objects.get(key="last_network_data_sync") + cf = CustomField.objects.get(key="last_network_data_sync") # pylint:disable=invalid-name except ObjectDoesNotExist: - cf, _ = CustomField.objects.get_or_create( + cf, _ = CustomField.objects.get_or_create( # pylint:disable=invalid-name label="Last Network Data Sync", key="last_network_data_sync", type=CustomFieldTypeChoices.TYPE_DATE, diff --git a/nautobot_device_onboarding/tests/test_transform.py b/nautobot_device_onboarding/tests/test_transform.py index 67e620ef..efea3f5b 100755 --- a/nautobot_device_onboarding/tests/test_transform.py +++ b/nautobot_device_onboarding/tests/test_transform.py @@ -57,7 +57,7 @@ def populate_repo(self, path, url, *args, **kwargs): """Simple helper to populate a mock repo with some data.""" os.makedirs(path, exist_ok=True) os.makedirs(os.path.join(path, "onboarding_command_mappers"), exist_ok=True) - with open(os.path.join(path, "onboarding_command_mappers", "foo_bar.yml"), "w", encoding="utf-8") as fd: + with open(os.path.join(path, "onboarding_command_mappers", "foo_bar.yml"), "w", encoding="utf-8") as fd: # pylint:disable=invalid-name yaml.dump( { "sync_devices": { diff --git a/poetry.lock b/poetry.lock index b9fa256a..7b35fe71 100755 --- a/poetry.lock +++ b/poetry.lock @@ -91,17 +91,22 @@ tests = ["mypy (>=0.800)", "pytest", "pytest-asyncio"] [[package]] name = "astroid" -version = "3.2.4" +version = "2.15.8" description = "An abstract syntax tree for Python with inference support." optional = false -python-versions = ">=3.8.0" +python-versions = ">=3.7.2" files = [ - {file = "astroid-3.2.4-py3-none-any.whl", hash = "sha256:413658a61eeca6202a59231abb473f932038fbcbf1666587f66d482083413a25"}, - {file = "astroid-3.2.4.tar.gz", hash = "sha256:0e14202810b30da1b735827f78f5157be2bbd4a7a59b7707ca0bfc2fb4c0063a"}, + {file = "astroid-2.15.8-py3-none-any.whl", hash = "sha256:1aa149fc5c6589e3d0ece885b4491acd80af4f087baafa3fb5203b113e68cd3c"}, + {file = "astroid-2.15.8.tar.gz", hash = "sha256:6c107453dffee9055899705de3c9ead36e74119cee151e5a9aaf7f0b0e020a6a"}, ] [package.dependencies] +lazy-object-proxy = ">=1.4.0" typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} +wrapt = [ + {version = ">=1.11,<2", markers = "python_version < \"3.11\""}, + {version = ">=1.14,<2", markers = "python_version >= \"3.11\""}, +] [[package]] name = "asttokens" @@ -149,37 +154,37 @@ files = [ [[package]] name = "attrs" -version = "24.2.0" +version = "23.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, - {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, + {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, + {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, ] [package.extras] -benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] -tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] -tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] +tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] [[package]] name = "autopep8" -version = "2.3.1" +version = "2.0.0" description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" optional = false -python-versions = ">=3.8" +python-versions = "*" files = [ - {file = "autopep8-2.3.1-py2.py3-none-any.whl", hash = "sha256:a203fe0fcad7939987422140ab17a930f684763bf7335bdb6709991dd7ef6c2d"}, - {file = "autopep8-2.3.1.tar.gz", hash = "sha256:8d6c87eba648fdcfc83e29b788910b8643171c395d9c4bcf115ece035b9c9dda"}, + {file = "autopep8-2.0.0-py2.py3-none-any.whl", hash = "sha256:ad924b42c2e27a1ac58e432166cc4588f5b80747de02d0d35b1ecbd3e7d57207"}, + {file = "autopep8-2.0.0.tar.gz", hash = "sha256:8b1659c7f003e693199f52caffdc06585bb0716900bbc6a7442fd931d658c077"}, ] [package.dependencies] -pycodestyle = ">=2.12.0" -tomli = {version = "*", markers = "python_version < \"3.11\""} +pycodestyle = ">=2.9.1" +tomli = "*" [[package]] name = "babel" @@ -349,89 +354,89 @@ zstd = ["zstandard (==0.22.0)"] [[package]] name = "certifi" -version = "2024.8.30" +version = "2024.2.2" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, - {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, + {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, + {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, ] [[package]] name = "cffi" -version = "1.17.0" +version = "1.17.1" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" files = [ - {file = "cffi-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb"}, - {file = "cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab"}, - {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b"}, - {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206"}, - {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa"}, - {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f"}, - {file = "cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc"}, - {file = "cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2"}, - {file = "cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720"}, - {file = "cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8"}, - {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6"}, - {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91"}, - {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8"}, - {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb"}, - {file = "cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9"}, - {file = "cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0"}, - {file = "cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc"}, - {file = "cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828"}, - {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150"}, - {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a"}, - {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885"}, - {file = "cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492"}, - {file = "cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2"}, - {file = "cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118"}, - {file = "cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204"}, - {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f"}, - {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0"}, - {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4"}, - {file = "cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a"}, - {file = "cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7"}, - {file = "cffi-1.17.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:964823b2fc77b55355999ade496c54dde161c621cb1f6eac61dc30ed1b63cd4c"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:516a405f174fd3b88829eabfe4bb296ac602d6a0f68e0d64d5ac9456194a5b7e"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dec6b307ce928e8e112a6bb9921a1cb00a0e14979bf28b98e084a4b8a742bd9b"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4094c7b464cf0a858e75cd14b03509e84789abf7b79f8537e6a72152109c76e"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2404f3de742f47cb62d023f0ba7c5a916c9c653d5b368cc966382ae4e57da401"}, - {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3aa9d43b02a0c681f0bfbc12d476d47b2b2b6a3f9287f11ee42989a268a1833c"}, - {file = "cffi-1.17.0-cp38-cp38-win32.whl", hash = "sha256:0bb15e7acf8ab35ca8b24b90af52c8b391690ef5c4aec3d31f38f0d37d2cc499"}, - {file = "cffi-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:93a7350f6706b31f457c1457d3a3259ff9071a66f312ae64dc024f049055f72c"}, - {file = "cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2"}, - {file = "cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058"}, - {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932"}, - {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693"}, - {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3"}, - {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4"}, - {file = "cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb"}, - {file = "cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29"}, - {file = "cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, ] [package.dependencies] @@ -629,83 +634,63 @@ files = [ [[package]] name = "coverage" -version = "7.6.1" +version = "7.5.3" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b06079abebbc0e89e6163b8e8f0e16270124c154dc6e4a47b413dd538859af16"}, - {file = "coverage-7.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cf4b19715bccd7ee27b6b120e7e9dd56037b9c0681dcc1adc9ba9db3d417fa36"}, - {file = "coverage-7.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61c0abb4c85b095a784ef23fdd4aede7a2628478e7baba7c5e3deba61070a02"}, - {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd21f6ae3f08b41004dfb433fa895d858f3f5979e7762d052b12aef444e29afc"}, - {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f59d57baca39b32db42b83b2a7ba6f47ad9c394ec2076b084c3f029b7afca23"}, - {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a1ac0ae2b8bd743b88ed0502544847c3053d7171a3cff9228af618a068ed9c34"}, - {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e6a08c0be454c3b3beb105c0596ebdc2371fab6bb90c0c0297f4e58fd7e1012c"}, - {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f5796e664fe802da4f57a168c85359a8fbf3eab5e55cd4e4569fbacecc903959"}, - {file = "coverage-7.6.1-cp310-cp310-win32.whl", hash = "sha256:7bb65125fcbef8d989fa1dd0e8a060999497629ca5b0efbca209588a73356232"}, - {file = "coverage-7.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:3115a95daa9bdba70aea750db7b96b37259a81a709223c8448fa97727d546fe0"}, - {file = "coverage-7.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7dea0889685db8550f839fa202744652e87c60015029ce3f60e006f8c4462c93"}, - {file = "coverage-7.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed37bd3c3b063412f7620464a9ac1314d33100329f39799255fb8d3027da50d3"}, - {file = "coverage-7.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85f5e9a5f8b73e2350097c3756ef7e785f55bd71205defa0bfdaf96c31616ff"}, - {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bc572be474cafb617672c43fe989d6e48d3c83af02ce8de73fff1c6bb3c198d"}, - {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0420b573964c760df9e9e86d1a9a622d0d27f417e1a949a8a66dd7bcee7bc6"}, - {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f4aa8219db826ce6be7099d559f8ec311549bfc4046f7f9fe9b5cea5c581c56"}, - {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:fc5a77d0c516700ebad189b587de289a20a78324bc54baee03dd486f0855d234"}, - {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b48f312cca9621272ae49008c7f613337c53fadca647d6384cc129d2996d1133"}, - {file = "coverage-7.6.1-cp311-cp311-win32.whl", hash = "sha256:1125ca0e5fd475cbbba3bb67ae20bd2c23a98fac4e32412883f9bcbaa81c314c"}, - {file = "coverage-7.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:8ae539519c4c040c5ffd0632784e21b2f03fc1340752af711f33e5be83a9d6c6"}, - {file = "coverage-7.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:95cae0efeb032af8458fc27d191f85d1717b1d4e49f7cb226cf526ff28179778"}, - {file = "coverage-7.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5621a9175cf9d0b0c84c2ef2b12e9f5f5071357c4d2ea6ca1cf01814f45d2391"}, - {file = "coverage-7.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:260933720fdcd75340e7dbe9060655aff3af1f0c5d20f46b57f262ab6c86a5e8"}, - {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e2ca0ad381b91350c0ed49d52699b625aab2b44b65e1b4e02fa9df0e92ad2d"}, - {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44fee9975f04b33331cb8eb272827111efc8930cfd582e0320613263ca849ca"}, - {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877abb17e6339d96bf08e7a622d05095e72b71f8afd8a9fefc82cf30ed944163"}, - {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e0cadcf6733c09154b461f1ca72d5416635e5e4ec4e536192180d34ec160f8a"}, - {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3c02d12f837d9683e5ab2f3d9844dc57655b92c74e286c262e0fc54213c216d"}, - {file = "coverage-7.6.1-cp312-cp312-win32.whl", hash = "sha256:e05882b70b87a18d937ca6768ff33cc3f72847cbc4de4491c8e73880766718e5"}, - {file = "coverage-7.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:b5d7b556859dd85f3a541db6a4e0167b86e7273e1cdc973e5b175166bb634fdb"}, - {file = "coverage-7.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a4acd025ecc06185ba2b801f2de85546e0b8ac787cf9d3b06e7e2a69f925b106"}, - {file = "coverage-7.6.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a6d3adcf24b624a7b778533480e32434a39ad8fa30c315208f6d3e5542aeb6e9"}, - {file = "coverage-7.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0c212c49b6c10e6951362f7c6df3329f04c2b1c28499563d4035d964ab8e08c"}, - {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e81d7a3e58882450ec4186ca59a3f20a5d4440f25b1cff6f0902ad890e6748a"}, - {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b260de9790fd81e69401c2dc8b17da47c8038176a79092a89cb2b7d945d060"}, - {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a78d169acd38300060b28d600344a803628c3fd585c912cacc9ea8790fe96862"}, - {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2c09f4ce52cb99dd7505cd0fc8e0e37c77b87f46bc9c1eb03fe3bc9991085388"}, - {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6878ef48d4227aace338d88c48738a4258213cd7b74fd9a3d4d7582bb1d8a155"}, - {file = "coverage-7.6.1-cp313-cp313-win32.whl", hash = "sha256:44df346d5215a8c0e360307d46ffaabe0f5d3502c8a1cefd700b34baf31d411a"}, - {file = "coverage-7.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:8284cf8c0dd272a247bc154eb6c95548722dce90d098c17a883ed36e67cdb129"}, - {file = "coverage-7.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3296782ca4eab572a1a4eca686d8bfb00226300dcefdf43faa25b5242ab8a3e"}, - {file = "coverage-7.6.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:502753043567491d3ff6d08629270127e0c31d4184c4c8d98f92c26f65019962"}, - {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a89ecca80709d4076b95f89f308544ec8f7b4727e8a547913a35f16717856cb"}, - {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a318d68e92e80af8b00fa99609796fdbcdfef3629c77c6283566c6f02c6d6704"}, - {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13b0a73a0896988f053e4fbb7de6d93388e6dd292b0d87ee51d106f2c11b465b"}, - {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4421712dbfc5562150f7554f13dde997a2e932a6b5f352edcce948a815efee6f"}, - {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:166811d20dfea725e2e4baa71fffd6c968a958577848d2131f39b60043400223"}, - {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:225667980479a17db1048cb2bf8bfb39b8e5be8f164b8f6628b64f78a72cf9d3"}, - {file = "coverage-7.6.1-cp313-cp313t-win32.whl", hash = "sha256:170d444ab405852903b7d04ea9ae9b98f98ab6d7e63e1115e82620807519797f"}, - {file = "coverage-7.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b9f222de8cded79c49bf184bdbc06630d4c58eec9459b939b4a690c82ed05657"}, - {file = "coverage-7.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6db04803b6c7291985a761004e9060b2bca08da6d04f26a7f2294b8623a0c1a0"}, - {file = "coverage-7.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f1adfc8ac319e1a348af294106bc6a8458a0f1633cc62a1446aebc30c5fa186a"}, - {file = "coverage-7.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a95324a9de9650a729239daea117df21f4b9868ce32e63f8b650ebe6cef5595b"}, - {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b43c03669dc4618ec25270b06ecd3ee4fa94c7f9b3c14bae6571ca00ef98b0d3"}, - {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8929543a7192c13d177b770008bc4e8119f2e1f881d563fc6b6305d2d0ebe9de"}, - {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:a09ece4a69cf399510c8ab25e0950d9cf2b42f7b3cb0374f95d2e2ff594478a6"}, - {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9054a0754de38d9dbd01a46621636689124d666bad1936d76c0341f7d71bf569"}, - {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0dbde0f4aa9a16fa4d754356a8f2e36296ff4d83994b2c9d8398aa32f222f989"}, - {file = "coverage-7.6.1-cp38-cp38-win32.whl", hash = "sha256:da511e6ad4f7323ee5702e6633085fb76c2f893aaf8ce4c51a0ba4fc07580ea7"}, - {file = "coverage-7.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:3f1156e3e8f2872197af3840d8ad307a9dd18e615dc64d9ee41696f287c57ad8"}, - {file = "coverage-7.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abd5fd0db5f4dc9289408aaf34908072f805ff7792632250dcb36dc591d24255"}, - {file = "coverage-7.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:547f45fa1a93154bd82050a7f3cddbc1a7a4dd2a9bf5cb7d06f4ae29fe94eaf8"}, - {file = "coverage-7.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645786266c8f18a931b65bfcefdbf6952dd0dea98feee39bd188607a9d307ed2"}, - {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e0b2df163b8ed01d515807af24f63de04bebcecbd6c3bfeff88385789fdf75a"}, - {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:609b06f178fe8e9f89ef676532760ec0b4deea15e9969bf754b37f7c40326dbc"}, - {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:702855feff378050ae4f741045e19a32d57d19f3e0676d589df0575008ea5004"}, - {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2bdb062ea438f22d99cba0d7829c2ef0af1d768d1e4a4f528087224c90b132cb"}, - {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9c56863d44bd1c4fe2abb8a4d6f5371d197f1ac0ebdee542f07f35895fc07f36"}, - {file = "coverage-7.6.1-cp39-cp39-win32.whl", hash = "sha256:6e2cd258d7d927d09493c8df1ce9174ad01b381d4729a9d8d4e38670ca24774c"}, - {file = "coverage-7.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:06a737c882bd26d0d6ee7269b20b12f14a8704807a01056c80bb881a4b2ce6ca"}, - {file = "coverage-7.6.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:e9a6e0eb86070e8ccaedfbd9d38fec54864f3125ab95419970575b42af7541df"}, - {file = "coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d"}, + {file = "coverage-7.5.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a6519d917abb15e12380406d721e37613e2a67d166f9fb7e5a8ce0375744cd45"}, + {file = "coverage-7.5.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aea7da970f1feccf48be7335f8b2ca64baf9b589d79e05b9397a06696ce1a1ec"}, + {file = "coverage-7.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:923b7b1c717bd0f0f92d862d1ff51d9b2b55dbbd133e05680204465f454bb286"}, + {file = "coverage-7.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62bda40da1e68898186f274f832ef3e759ce929da9a9fd9fcf265956de269dbc"}, + {file = "coverage-7.5.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8b7339180d00de83e930358223c617cc343dd08e1aa5ec7b06c3a121aec4e1d"}, + {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:25a5caf742c6195e08002d3b6c2dd6947e50efc5fc2c2205f61ecb47592d2d83"}, + {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:05ac5f60faa0c704c0f7e6a5cbfd6f02101ed05e0aee4d2822637a9e672c998d"}, + {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:239a4e75e09c2b12ea478d28815acf83334d32e722e7433471fbf641c606344c"}, + {file = "coverage-7.5.3-cp310-cp310-win32.whl", hash = "sha256:a5812840d1d00eafae6585aba38021f90a705a25b8216ec7f66aebe5b619fb84"}, + {file = "coverage-7.5.3-cp310-cp310-win_amd64.whl", hash = "sha256:33ca90a0eb29225f195e30684ba4a6db05dbef03c2ccd50b9077714c48153cac"}, + {file = "coverage-7.5.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f81bc26d609bf0fbc622c7122ba6307993c83c795d2d6f6f6fd8c000a770d974"}, + {file = "coverage-7.5.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7cec2af81f9e7569280822be68bd57e51b86d42e59ea30d10ebdbb22d2cb7232"}, + {file = "coverage-7.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55f689f846661e3f26efa535071775d0483388a1ccfab899df72924805e9e7cd"}, + {file = "coverage-7.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50084d3516aa263791198913a17354bd1dc627d3c1639209640b9cac3fef5807"}, + {file = "coverage-7.5.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:341dd8f61c26337c37988345ca5c8ccabeff33093a26953a1ac72e7d0103c4fb"}, + {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ab0b028165eea880af12f66086694768f2c3139b2c31ad5e032c8edbafca6ffc"}, + {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:5bc5a8c87714b0c67cfeb4c7caa82b2d71e8864d1a46aa990b5588fa953673b8"}, + {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:38a3b98dae8a7c9057bd91fbf3415c05e700a5114c5f1b5b0ea5f8f429ba6614"}, + {file = "coverage-7.5.3-cp311-cp311-win32.whl", hash = "sha256:fcf7d1d6f5da887ca04302db8e0e0cf56ce9a5e05f202720e49b3e8157ddb9a9"}, + {file = "coverage-7.5.3-cp311-cp311-win_amd64.whl", hash = "sha256:8c836309931839cca658a78a888dab9676b5c988d0dd34ca247f5f3e679f4e7a"}, + {file = "coverage-7.5.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:296a7d9bbc598e8744c00f7a6cecf1da9b30ae9ad51c566291ff1314e6cbbed8"}, + {file = "coverage-7.5.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:34d6d21d8795a97b14d503dcaf74226ae51eb1f2bd41015d3ef332a24d0a17b3"}, + {file = "coverage-7.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e317953bb4c074c06c798a11dbdd2cf9979dbcaa8ccc0fa4701d80042d4ebf1"}, + {file = "coverage-7.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:705f3d7c2b098c40f5b81790a5fedb274113373d4d1a69e65f8b68b0cc26f6db"}, + {file = "coverage-7.5.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1196e13c45e327d6cd0b6e471530a1882f1017eb83c6229fc613cd1a11b53cd"}, + {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:015eddc5ccd5364dcb902eaecf9515636806fa1e0d5bef5769d06d0f31b54523"}, + {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:fd27d8b49e574e50caa65196d908f80e4dff64d7e592d0c59788b45aad7e8b35"}, + {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:33fc65740267222fc02975c061eb7167185fef4cc8f2770267ee8bf7d6a42f84"}, + {file = "coverage-7.5.3-cp312-cp312-win32.whl", hash = "sha256:7b2a19e13dfb5c8e145c7a6ea959485ee8e2204699903c88c7d25283584bfc08"}, + {file = "coverage-7.5.3-cp312-cp312-win_amd64.whl", hash = "sha256:0bbddc54bbacfc09b3edaec644d4ac90c08ee8ed4844b0f86227dcda2d428fcb"}, + {file = "coverage-7.5.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f78300789a708ac1f17e134593f577407d52d0417305435b134805c4fb135adb"}, + {file = "coverage-7.5.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b368e1aee1b9b75757942d44d7598dcd22a9dbb126affcbba82d15917f0cc155"}, + {file = "coverage-7.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f836c174c3a7f639bded48ec913f348c4761cbf49de4a20a956d3431a7c9cb24"}, + {file = "coverage-7.5.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:244f509f126dc71369393ce5fea17c0592c40ee44e607b6d855e9c4ac57aac98"}, + {file = "coverage-7.5.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4c2872b3c91f9baa836147ca33650dc5c172e9273c808c3c3199c75490e709d"}, + {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dd4b3355b01273a56b20c219e74e7549e14370b31a4ffe42706a8cda91f19f6d"}, + {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:f542287b1489c7a860d43a7d8883e27ca62ab84ca53c965d11dac1d3a1fab7ce"}, + {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:75e3f4e86804023e991096b29e147e635f5e2568f77883a1e6eed74512659ab0"}, + {file = "coverage-7.5.3-cp38-cp38-win32.whl", hash = "sha256:c59d2ad092dc0551d9f79d9d44d005c945ba95832a6798f98f9216ede3d5f485"}, + {file = "coverage-7.5.3-cp38-cp38-win_amd64.whl", hash = "sha256:fa21a04112c59ad54f69d80e376f7f9d0f5f9123ab87ecd18fbb9ec3a2beed56"}, + {file = "coverage-7.5.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f5102a92855d518b0996eb197772f5ac2a527c0ec617124ad5242a3af5e25f85"}, + {file = "coverage-7.5.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d1da0a2e3b37b745a2b2a678a4c796462cf753aebf94edcc87dcc6b8641eae31"}, + {file = "coverage-7.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8383a6c8cefba1b7cecc0149415046b6fc38836295bc4c84e820872eb5478b3d"}, + {file = "coverage-7.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9aad68c3f2566dfae84bf46295a79e79d904e1c21ccfc66de88cd446f8686341"}, + {file = "coverage-7.5.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e079c9ec772fedbade9d7ebc36202a1d9ef7291bc9b3a024ca395c4d52853d7"}, + {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bde997cac85fcac227b27d4fb2c7608a2c5f6558469b0eb704c5726ae49e1c52"}, + {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:990fb20b32990b2ce2c5f974c3e738c9358b2735bc05075d50a6f36721b8f303"}, + {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3d5a67f0da401e105753d474369ab034c7bae51a4c31c77d94030d59e41df5bd"}, + {file = "coverage-7.5.3-cp39-cp39-win32.whl", hash = "sha256:e08c470c2eb01977d221fd87495b44867a56d4d594f43739a8028f8646a51e0d"}, + {file = "coverage-7.5.3-cp39-cp39-win_amd64.whl", hash = "sha256:1d2a830ade66d3563bb61d1e3c77c8def97b30ed91e166c67d0632c018f380f0"}, + {file = "coverage-7.5.3-pp38.pp39.pp310-none-any.whl", hash = "sha256:3538d8fb1ee9bdd2e2692b3b18c22bb1c19ffbefd06880f5ac496e42d7bb3884"}, + {file = "coverage-7.5.3.tar.gz", hash = "sha256:04aefca5190d1dc7a53a4c1a5a7f8568811306d7a8ee231c42fb69215571944f"}, ] [package.extras] @@ -713,13 +698,13 @@ toml = ["tomli"] [[package]] name = "cron-descriptor" -version = "1.4.5" +version = "1.4.3" description = "A Python library that converts cron expressions into human readable strings." optional = false python-versions = "*" files = [ - {file = "cron_descriptor-1.4.5-py3-none-any.whl", hash = "sha256:736b3ae9d1a99bc3dbfc5b55b5e6e7c12031e7ba5de716625772f8b02dcd6013"}, - {file = "cron_descriptor-1.4.5.tar.gz", hash = "sha256:f51ce4ffc1d1f2816939add8524f206c376a42c87a5fca3091ce26725b3b1bca"}, + {file = "cron_descriptor-1.4.3-py3-none-any.whl", hash = "sha256:a67ba21804983b1427ed7f3e1ec27ee77bf24c652b0430239c268c5ddfbf9dc0"}, + {file = "cron_descriptor-1.4.3.tar.gz", hash = "sha256:7b1a00d7d25d6ae6896c0da4457e790b98cba778398a3d48e341e5e0d33f0488"}, ] [package.extras] @@ -727,38 +712,43 @@ dev = ["polib"] [[package]] name = "cryptography" -version = "43.0.0" +version = "42.0.7" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." optional = false python-versions = ">=3.7" files = [ - {file = "cryptography-43.0.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:64c3f16e2a4fc51c0d06af28441881f98c5d91009b8caaff40cf3548089e9c74"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3dcdedae5c7710b9f97ac6bba7e1052b95c7083c9d0e9df96e02a1932e777895"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d9a1eca329405219b605fac09ecfc09ac09e595d6def650a437523fcd08dd22"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ea9e57f8ea880eeea38ab5abf9fbe39f923544d7884228ec67d666abd60f5a47"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9a8d6802e0825767476f62aafed40532bd435e8a5f7d23bd8b4f5fd04cc80ecf"}, - {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cc70b4b581f28d0a254d006f26949245e3657d40d8857066c2ae22a61222ef55"}, - {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4a997df8c1c2aae1e1e5ac49c2e4f610ad037fc5a3aadc7b64e39dea42249431"}, - {file = "cryptography-43.0.0-cp37-abi3-win32.whl", hash = "sha256:6e2b11c55d260d03a8cf29ac9b5e0608d35f08077d8c087be96287f43af3ccdc"}, - {file = "cryptography-43.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:31e44a986ceccec3d0498e16f3d27b2ee5fdf69ce2ab89b52eaad1d2f33d8778"}, - {file = "cryptography-43.0.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:7b3f5fe74a5ca32d4d0f302ffe6680fcc5c28f8ef0dc0ae8f40c0f3a1b4fca66"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac1955ce000cb29ab40def14fd1bbfa7af2017cca696ee696925615cafd0dce5"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:299d3da8e00b7e2b54bb02ef58d73cd5f55fb31f33ebbf33bd00d9aa6807df7e"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ee0c405832ade84d4de74b9029bedb7b31200600fa524d218fc29bfa371e97f5"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:cb013933d4c127349b3948aa8aaf2f12c0353ad0eccd715ca789c8a0f671646f"}, - {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fdcb265de28585de5b859ae13e3846a8e805268a823a12a4da2597f1f5afc9f0"}, - {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:2905ccf93a8a2a416f3ec01b1a7911c3fe4073ef35640e7ee5296754e30b762b"}, - {file = "cryptography-43.0.0-cp39-abi3-win32.whl", hash = "sha256:47ca71115e545954e6c1d207dd13461ab81f4eccfcb1345eac874828b5e3eaaf"}, - {file = "cryptography-43.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:0663585d02f76929792470451a5ba64424acc3cd5227b03921dab0e2f27b1709"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2c6d112bf61c5ef44042c253e4859b3cbbb50df2f78fa8fae6747a7814484a70"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:844b6d608374e7d08f4f6e6f9f7b951f9256db41421917dfb2d003dde4cd6b66"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:51956cf8730665e2bdf8ddb8da0056f699c1a5715648c1b0144670c1ba00b48f"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:aae4d918f6b180a8ab8bf6511a419473d107df4dbb4225c7b48c5c9602c38c7f"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:232ce02943a579095a339ac4b390fbbe97f5b5d5d107f8a08260ea2768be8cc2"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5bcb8a5620008a8034d39bce21dc3e23735dfdb6a33a06974739bfa04f853947"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:08a24a7070b2b6804c1940ff0f910ff728932a9d0e80e7814234269f9d46d069"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:e9c5266c432a1e23738d178e51c2c7a5e2ddf790f248be939448c0ba2021f9d1"}, - {file = "cryptography-43.0.0.tar.gz", hash = "sha256:b88075ada2d51aa9f18283532c9f60e72170041bba88d7f37e49cbb10275299e"}, + {file = "cryptography-42.0.7-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477"}, + {file = "cryptography-42.0.7-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a"}, + {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604"}, + {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8"}, + {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55"}, + {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc"}, + {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2"}, + {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13"}, + {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da"}, + {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7"}, + {file = "cryptography-42.0.7-cp37-abi3-win32.whl", hash = "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b"}, + {file = "cryptography-42.0.7-cp37-abi3-win_amd64.whl", hash = "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678"}, + {file = "cryptography-42.0.7-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4"}, + {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858"}, + {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785"}, + {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda"}, + {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9"}, + {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e"}, + {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f"}, + {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1"}, + {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886"}, + {file = "cryptography-42.0.7-cp39-abi3-win32.whl", hash = "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda"}, + {file = "cryptography-42.0.7-cp39-abi3-win_amd64.whl", hash = "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b"}, + {file = "cryptography-42.0.7-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82"}, + {file = "cryptography-42.0.7-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60"}, + {file = "cryptography-42.0.7-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd"}, + {file = "cryptography-42.0.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582"}, + {file = "cryptography-42.0.7-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562"}, + {file = "cryptography-42.0.7-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14"}, + {file = "cryptography-42.0.7-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9"}, + {file = "cryptography-42.0.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68"}, + {file = "cryptography-42.0.7.tar.gz", hash = "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2"}, ] [package.dependencies] @@ -771,7 +761,7 @@ nox = ["nox"] pep8test = ["check-sdist", "click", "mypy", "ruff"] sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "cryptography-vectors (==43.0.0)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] [[package]] @@ -852,13 +842,13 @@ profile = ["gprof2dot (>=2022.7.29)"] [[package]] name = "django" -version = "4.2.15" +version = "4.2.16" description = "A high-level Python web framework that encourages rapid development and clean, pragmatic design." optional = false python-versions = ">=3.8" files = [ - {file = "Django-4.2.15-py3-none-any.whl", hash = "sha256:61ee4a130efb8c451ef3467c67ca99fdce400fedd768634efc86a68c18d80d30"}, - {file = "Django-4.2.15.tar.gz", hash = "sha256:c77f926b81129493961e19c0e02188f8d07c112a1162df69bfab178ae447f94a"}, + {file = "Django-4.2.16-py3-none-any.whl", hash = "sha256:1ddc333a16fc139fd253035a1606bb24261951bbc3a6ca256717fa06cc41a898"}, + {file = "Django-4.2.16.tar.gz", hash = "sha256:6f1616c2786c408ce86ab7e10f792b8f15742f7b7b7460243929cb371e7f1dad"}, ] [package.dependencies] @@ -964,17 +954,17 @@ Django = "*" [[package]] name = "django-debug-toolbar" -version = "4.4.6" +version = "4.3.0" description = "A configurable set of panels that display various debug information about the current request/response." optional = false python-versions = ">=3.8" files = [ - {file = "django_debug_toolbar-4.4.6-py3-none-any.whl", hash = "sha256:3beb671c9ec44ffb817fad2780667f172bd1c067dbcabad6268ce39a81335f45"}, - {file = "django_debug_toolbar-4.4.6.tar.gz", hash = "sha256:36e421cb908c2f0675e07f9f41e3d1d8618dc386392ec82d23bcfcd5d29c7044"}, + {file = "django_debug_toolbar-4.3.0-py3-none-any.whl", hash = "sha256:e09b7dcb8417b743234dfc57c95a7c1d1d87a88844abd13b4c5387f807b31bf6"}, + {file = "django_debug_toolbar-4.3.0.tar.gz", hash = "sha256:0b0dddee5ea29b9cb678593bc0d7a6d76b21d7799cb68e091a2148341a80f3c4"}, ] [package.dependencies] -django = ">=4.2.9" +django = ">=3.2.4" sqlparse = ">=0.2" [[package]] @@ -1276,13 +1266,13 @@ sidecar = ["drf-spectacular-sidecar"] [[package]] name = "drf-spectacular-sidecar" -version = "2024.7.1" +version = "2024.5.1" description = "Serve self-contained distribution builds of Swagger UI and Redoc with Django" optional = false python-versions = ">=3.6" files = [ - {file = "drf_spectacular_sidecar-2024.7.1-py3-none-any.whl", hash = "sha256:5dc8b38ad153e90b328152674c7959bf114bf86360a617a5a4516e135cb832bc"}, - {file = "drf_spectacular_sidecar-2024.7.1.tar.gz", hash = "sha256:beb992d6ece806a2d422ad626983e2472c0a5550de9647a7ed6764716a5abdfe"}, + {file = "drf_spectacular_sidecar-2024.5.1-py3-none-any.whl", hash = "sha256:089fdef46b520b7b1c8a497a398cde9336c3f20b115835baeb158dc4138d743d"}, + {file = "drf_spectacular_sidecar-2024.5.1.tar.gz", hash = "sha256:1ecfbe86174461e3cf78a9cd49f69aa8d9e0710cb5e8b35107d3f8cc0f380c21"}, ] [package.dependencies] @@ -1395,13 +1385,13 @@ test = ["coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre-commit", [[package]] name = "gprof2dot" -version = "2024.6.6" +version = "2022.7.29" description = "Generate a dot graph from the output of several profilers." optional = false -python-versions = ">=3.8" +python-versions = ">=2.7" files = [ - {file = "gprof2dot-2024.6.6-py2.py3-none-any.whl", hash = "sha256:45b14ad7ce64e299c8f526881007b9eb2c6b75505d5613e96e66ee4d5ab33696"}, - {file = "gprof2dot-2024.6.6.tar.gz", hash = "sha256:fa1420c60025a9eb7734f65225b4da02a10fc6dd741b37fa129bc6b41951e5ab"}, + {file = "gprof2dot-2022.7.29-py2.py3-none-any.whl", hash = "sha256:f165b3851d3c52ee4915eb1bd6cca571e5759823c2cd0f71a79bda93c2dc85d6"}, + {file = "gprof2dot-2022.7.29.tar.gz", hash = "sha256:45b4d298bd36608fccf9511c3fd88a773f7a1abc04d6cd39445b11ba43133ec5"}, ] [[package]] @@ -1569,13 +1559,13 @@ socks = ["socksio (==1.*)"] [[package]] name = "idna" -version = "3.8" +version = "3.7" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.6" +python-versions = ">=3.5" files = [ - {file = "idna-3.8-py3-none-any.whl", hash = "sha256:050b4e5baadcd44d760cedbd2b8e639f2ff89bbc7a5730fcc662954303377aac"}, - {file = "idna-3.8.tar.gz", hash = "sha256:d838c2c0ed6fced7693d5e8ab8e734d5f8fda53a039c0164afb0b82e771e3603"}, + {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, + {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, ] [[package]] @@ -1599,43 +1589,36 @@ testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packag [[package]] name = "importlib-resources" -version = "6.4.4" +version = "6.4.0" description = "Read resources from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_resources-6.4.4-py3-none-any.whl", hash = "sha256:dda242603d1c9cd836c3368b1174ed74cb4049ecd209e7a1a0104620c18c5c11"}, - {file = "importlib_resources-6.4.4.tar.gz", hash = "sha256:20600c8b7361938dc0bb2d5ec0297802e575df486f5a544fa414da65e13721f7"}, + {file = "importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c"}, + {file = "importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"] -type = ["pytest-mypy"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] [[package]] name = "incremental" -version = "24.7.2" -description = "A small library that versions your Python projects." +version = "22.10.0" +description = "\"A small library that versions your Python projects.\"" optional = false -python-versions = ">=3.8" +python-versions = "*" files = [ - {file = "incremental-24.7.2-py3-none-any.whl", hash = "sha256:8cb2c3431530bec48ad70513931a760f446ad6c25e8333ca5d95e24b0ed7b8fe"}, - {file = "incremental-24.7.2.tar.gz", hash = "sha256:fb4f1d47ee60efe87d4f6f0ebb5f70b9760db2b2574c59c8e8912be4ebd464c9"}, + {file = "incremental-22.10.0-py2.py3-none-any.whl", hash = "sha256:b864a1f30885ee72c5ac2835a761b8fe8aa9c28b9395cacf27286602688d3e51"}, + {file = "incremental-22.10.0.tar.gz", hash = "sha256:912feeb5e0f7e0188e6f42241d2f450002e11bbc0937c65865045854c24c0bd0"}, ] -[package.dependencies] -setuptools = ">=61.0" -tomli = {version = "*", markers = "python_version < \"3.11\""} - [package.extras] -scripts = ["click (>=6.0)"] +mypy = ["click (>=6.0)", "mypy (==0.812)", "twisted (>=16.4.0)"] +scripts = ["click (>=6.0)", "twisted (>=16.4.0)"] [[package]] name = "inflection" @@ -1776,13 +1759,13 @@ files = [ [[package]] name = "jsonschema" -version = "4.23.0" +version = "4.22.0" description = "An implementation of JSON Schema validation for Python" optional = false python-versions = ">=3.8" files = [ - {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, - {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, + {file = "jsonschema-4.22.0-py3-none-any.whl", hash = "sha256:ff4cfd6b1367a40e7bc6411caec72effadd3db0bbe5017de188f2d6108335802"}, + {file = "jsonschema-4.22.0.tar.gz", hash = "sha256:5b22d434a45935119af990552c862e5d6d564e8f6601206b305a61fdf661a2b7"}, ] [package.dependencies] @@ -1795,7 +1778,7 @@ rpds-py = ">=0.7.1" [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] -format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=24.6.0)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] [[package]] name = "jsonschema-specifications" @@ -1837,30 +1820,30 @@ yamlordereddictloader = "*" [[package]] name = "kombu" -version = "5.4.0" +version = "5.3.7" description = "Messaging library for Python." optional = false python-versions = ">=3.8" files = [ - {file = "kombu-5.4.0-py3-none-any.whl", hash = "sha256:c8dd99820467610b4febbc7a9e8a0d3d7da2d35116b67184418b51cc520ea6b6"}, - {file = "kombu-5.4.0.tar.gz", hash = "sha256:ad200a8dbdaaa2bbc5f26d2ee7d707d9a1fded353a0f4bd751ce8c7d9f449c60"}, + {file = "kombu-5.3.7-py3-none-any.whl", hash = "sha256:5634c511926309c7f9789f1433e9ed402616b56836ef9878f01bd59267b4c7a9"}, + {file = "kombu-5.3.7.tar.gz", hash = "sha256:011c4cd9a355c14a1de8d35d257314a1d2456d52b7140388561acac3cf1a97bf"}, ] [package.dependencies] amqp = ">=5.1.1,<6.0.0" "backports.zoneinfo" = {version = ">=0.2.1", extras = ["tzdata"], markers = "python_version < \"3.9\""} -typing-extensions = {version = "4.12.2", markers = "python_version < \"3.10\""} -vine = "5.1.0" +typing-extensions = {version = "*", markers = "python_version < \"3.10\""} +vine = "*" [package.extras] azureservicebus = ["azure-servicebus (>=7.10.0)"] azurestoragequeues = ["azure-identity (>=1.12.0)", "azure-storage-queue (>=12.6.0)"] confluentkafka = ["confluent-kafka (>=2.2.0)"] -consul = ["python-consul2 (==0.1.5)"] +consul = ["python-consul2"] librabbitmq = ["librabbitmq (>=2.0.0)"] mongodb = ["pymongo (>=4.1.1)"] -msgpack = ["msgpack (==1.0.8)"] -pyro = ["pyro4 (==4.82)"] +msgpack = ["msgpack"] +pyro = ["pyro4"] qpid = ["qpid-python (>=0.26)", "qpid-tools (>=0.26)"] redis = ["redis (>=4.5.2,!=4.5.5,!=5.0.2)"] slmq = ["softlayer-messaging (>=1.0.3)"] @@ -1869,6 +1852,52 @@ sqs = ["boto3 (>=1.26.143)", "pycurl (>=7.43.0.5)", "urllib3 (>=1.26.16)"] yaml = ["PyYAML (>=3.10)"] zookeeper = ["kazoo (>=2.8.0)"] +[[package]] +name = "lazy-object-proxy" +version = "1.10.0" +description = "A fast and thorough lazy object proxy." +optional = false +python-versions = ">=3.8" +files = [ + {file = "lazy-object-proxy-1.10.0.tar.gz", hash = "sha256:78247b6d45f43a52ef35c25b5581459e85117225408a4128a3daf8bf9648ac69"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:855e068b0358ab916454464a884779c7ffa312b8925c6f7401e952dcf3b89977"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab7004cf2e59f7c2e4345604a3e6ea0d92ac44e1c2375527d56492014e690c3"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc0d2fc424e54c70c4bc06787e4072c4f3b1aa2f897dfdc34ce1013cf3ceef05"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e2adb09778797da09d2b5ebdbceebf7dd32e2c96f79da9052b2e87b6ea495895"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b1f711e2c6dcd4edd372cf5dec5c5a30d23bba06ee012093267b3376c079ec83"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-win32.whl", hash = "sha256:76a095cfe6045c7d0ca77db9934e8f7b71b14645f0094ffcd842349ada5c5fb9"}, + {file = "lazy_object_proxy-1.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:b4f87d4ed9064b2628da63830986c3d2dca7501e6018347798313fcf028e2fd4"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fec03caabbc6b59ea4a638bee5fce7117be8e99a4103d9d5ad77f15d6f81020c"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02c83f957782cbbe8136bee26416686a6ae998c7b6191711a04da776dc9e47d4"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:009e6bb1f1935a62889ddc8541514b6a9e1fcf302667dcb049a0be5c8f613e56"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:75fc59fc450050b1b3c203c35020bc41bd2695ed692a392924c6ce180c6f1dc9"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:782e2c9b2aab1708ffb07d4bf377d12901d7a1d99e5e410d648d892f8967ab1f"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-win32.whl", hash = "sha256:edb45bb8278574710e68a6b021599a10ce730d156e5b254941754a9cc0b17d03"}, + {file = "lazy_object_proxy-1.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:e271058822765ad5e3bca7f05f2ace0de58a3f4e62045a8c90a0dfd2f8ad8cc6"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e98c8af98d5707dcdecc9ab0863c0ea6e88545d42ca7c3feffb6b4d1e370c7ba"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:952c81d415b9b80ea261d2372d2a4a2332a3890c2b83e0535f263ddfe43f0d43"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80b39d3a151309efc8cc48675918891b865bdf742a8616a337cb0090791a0de9"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e221060b701e2aa2ea991542900dd13907a5c90fa80e199dbf5a03359019e7a3"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:92f09ff65ecff3108e56526f9e2481b8116c0b9e1425325e13245abfd79bdb1b"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-win32.whl", hash = "sha256:3ad54b9ddbe20ae9f7c1b29e52f123120772b06dbb18ec6be9101369d63a4074"}, + {file = "lazy_object_proxy-1.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:127a789c75151db6af398b8972178afe6bda7d6f68730c057fbbc2e96b08d282"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9e4ed0518a14dd26092614412936920ad081a424bdcb54cc13349a8e2c6d106a"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ad9e6ed739285919aa9661a5bbed0aaf410aa60231373c5579c6b4801bd883c"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fc0a92c02fa1ca1e84fc60fa258458e5bf89d90a1ddaeb8ed9cc3147f417255"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0aefc7591920bbd360d57ea03c995cebc204b424524a5bd78406f6e1b8b2a5d8"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5faf03a7d8942bb4476e3b62fd0f4cf94eaf4618e304a19865abf89a35c0bbee"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-win32.whl", hash = "sha256:e333e2324307a7b5d86adfa835bb500ee70bfcd1447384a822e96495796b0ca4"}, + {file = "lazy_object_proxy-1.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:cb73507defd385b7705c599a94474b1d5222a508e502553ef94114a143ec6696"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:366c32fe5355ef5fc8a232c5436f4cc66e9d3e8967c01fb2e6302fd6627e3d94"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2297f08f08a2bb0d32a4265e98a006643cd7233fb7983032bd61ac7a02956b3b"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18dd842b49456aaa9a7cf535b04ca4571a302ff72ed8740d06b5adcd41fe0757"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:217138197c170a2a74ca0e05bddcd5f1796c735c37d0eee33e43259b192aa424"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9a3a87cf1e133e5b1994144c12ca4aa3d9698517fe1e2ca82977781b16955658"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-win32.whl", hash = "sha256:30b339b2a743c5288405aa79a69e706a06e02958eab31859f7f3c04980853b70"}, + {file = "lazy_object_proxy-1.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:a899b10e17743683b293a729d3a11f2f399e8a90c73b089e29f5d0fe3509f0dd"}, + {file = "lazy_object_proxy-1.10.0-pp310.pp311.pp312.pp38.pp39-none-any.whl", hash = "sha256:80fa48bd89c8f2f456fc0765c11c23bf5af827febacd2f523ca5bc1893fcc09d"}, +] + [[package]] name = "lxml" version = "5.3.0" @@ -2193,13 +2222,13 @@ min-versions = ["babel (==2.9.0)", "click (==7.0)", "colorama (==0.4)", "ghp-imp [[package]] name = "mkdocs-autorefs" -version = "1.1.0" +version = "1.0.1" description = "Automatically link across pages in MkDocs." optional = false python-versions = ">=3.8" files = [ - {file = "mkdocs_autorefs-1.1.0-py3-none-any.whl", hash = "sha256:492ac42f50214e81565e968f8cb0df9aba9d981542b9e7121b8f8ae9407fe6eb"}, - {file = "mkdocs_autorefs-1.1.0.tar.gz", hash = "sha256:f2fd43b11f66284bd014f9b542a05c8ecbfaad4e0d7b30b68584788217b6c656"}, + {file = "mkdocs_autorefs-1.0.1-py3-none-any.whl", hash = "sha256:aacdfae1ab197780fb7a2dac92ad8a3d8f7ca8049a9cbe56a4218cd52e8da570"}, + {file = "mkdocs_autorefs-1.0.1.tar.gz", hash = "sha256:f684edf847eced40b570b57846b15f0bf57fb93ac2c510450775dcf16accb971"}, ] [package.dependencies] @@ -2352,13 +2381,13 @@ typing-extensions = ">=4.3.0" [[package]] name = "nautobot" -version = "2.3.1" +version = "2.3.2" description = "Source of truth and network automation platform." optional = false python-versions = "<3.13,>=3.8" files = [ - {file = "nautobot-2.3.1-py3-none-any.whl", hash = "sha256:28c02e229dcc87d69dba0e75d36c3bd219fefa9328ac996471e9b39f3ec74bb3"}, - {file = "nautobot-2.3.1.tar.gz", hash = "sha256:96a3f0ee9cf73b404abca34bd2ed53a6d4494fcf85338734baa10dcd977f27f7"}, + {file = "nautobot-2.3.2-py3-none-any.whl", hash = "sha256:5318a26af1dde8919345bd242a3ed2be221bf2cc11149708fdcfdc55470b761a"}, + {file = "nautobot-2.3.2.tar.gz", hash = "sha256:03f0c7ca0224bf2a37a0a81ef978a20284c44e896a14e75bd403a0d09c2f913d"}, ] [package.dependencies] @@ -2417,13 +2446,13 @@ sso = ["social-auth-core[saml] (>=4.5.3,<4.6.0)"] [[package]] name = "nautobot-plugin-nornir" -version = "2.0.1" -description = "Nautobot Nornir plugin." +version = "2.1.0" +description = "Nautobot App that provides a shim layer to simplify using Nornir within other Nautobot Apps and Nautobot Jobs" optional = false -python-versions = ">=3.8,<3.12" +python-versions = "<3.13,>=3.8" files = [ - {file = "nautobot_plugin_nornir-2.0.1-py3-none-any.whl", hash = "sha256:a74eb904d99df599c78f47ad05075677defe0b13c79e8a60ebd51d063815dc93"}, - {file = "nautobot_plugin_nornir-2.0.1.tar.gz", hash = "sha256:4893d5cb601a760620a6991de8822cf424f2964fefee360cd8e8b86b56fddbb7"}, + {file = "nautobot_plugin_nornir-2.1.0-py3-none-any.whl", hash = "sha256:aa50882b5fc729fb95e2d03383596a582f1b09419c8ec9c6db5f12cbb6f6ffa0"}, + {file = "nautobot_plugin_nornir-2.1.0.tar.gz", hash = "sha256:ea7ead4e52d27f349846d55bcdc00d6953f1bd03813e70a094f035a66bc863e7"}, ] [package.dependencies] @@ -2433,13 +2462,13 @@ nornir-nautobot = ">=3.0.0,<4.0.0" [[package]] name = "nautobot-ssot" -version = "3.0.1" +version = "3.1.0" description = "Nautobot Single Source of Truth" optional = false -python-versions = "<3.12,>=3.8" +python-versions = "<3.13,>=3.8" files = [ - {file = "nautobot_ssot-3.0.1-py3-none-any.whl", hash = "sha256:e530a0ec78e9b85c88151e3e6fdd7e026979820dbe86a4ca047231c3c3f663a3"}, - {file = "nautobot_ssot-3.0.1.tar.gz", hash = "sha256:7dbc038cbcca04d3a07b9b1b198e9a262e99e8741a5fba125fa1810edff33cc3"}, + {file = "nautobot_ssot-3.1.0-py3-none-any.whl", hash = "sha256:984ed647ef505c31249efaca5bf7c1cad403c08b8cef48561a918e5fc64d37bb"}, + {file = "nautobot_ssot-3.1.0.tar.gz", hash = "sha256:7b8a48ad33df7ecdc9f1c43370b5d469d54b6047eb8c88ad25da2d29302a822d"}, ] [package.dependencies] @@ -2529,27 +2558,27 @@ optionals = ["jsonschema (>=4.17.3,<5.0.0)", "napalm (>=4.0.0,<5.0.0)"] [[package]] name = "nh3" -version = "0.2.18" +version = "0.2.17" description = "Python bindings to the ammonia HTML sanitization library." optional = false python-versions = "*" files = [ - {file = "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:14c5a72e9fe82aea5fe3072116ad4661af5cf8e8ff8fc5ad3450f123e4925e86"}, - {file = "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:7b7c2a3c9eb1a827d42539aa64091640bd275b81e097cd1d8d82ef91ffa2e811"}, - {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42c64511469005058cd17cc1537578eac40ae9f7200bedcfd1fc1a05f4f8c200"}, - {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0411beb0589eacb6734f28d5497ca2ed379eafab8ad8c84b31bb5c34072b7164"}, - {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:5f36b271dae35c465ef5e9090e1fdaba4a60a56f0bb0ba03e0932a66f28b9189"}, - {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34c03fa78e328c691f982b7c03d4423bdfd7da69cd707fe572f544cf74ac23ad"}, - {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19aaba96e0f795bd0a6c56291495ff59364f4300d4a39b29a0abc9cb3774a84b"}, - {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ceed6e661954871d6cd78b410213bdcb136f79aafe22aa7182e028b8c7307"}, - {file = "nh3-0.2.18-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6955369e4d9f48f41e3f238a9e60f9410645db7e07435e62c6a9ea6135a4907f"}, - {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:f0eca9ca8628dbb4e916ae2491d72957fdd35f7a5d326b7032a345f111ac07fe"}, - {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:3a157ab149e591bb638a55c8c6bcb8cdb559c8b12c13a8affaba6cedfe51713a"}, - {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:c8b3a1cebcba9b3669ed1a84cc65bf005728d2f0bc1ed2a6594a992e817f3a50"}, - {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:36c95d4b70530b320b365659bb5034341316e6a9b30f0b25fa9c9eff4c27a204"}, - {file = "nh3-0.2.18-cp37-abi3-win32.whl", hash = "sha256:a7f1b5b2c15866f2db413a3649a8fe4fd7b428ae58be2c0f6bca5eefd53ca2be"}, - {file = "nh3-0.2.18-cp37-abi3-win_amd64.whl", hash = "sha256:8ce0f819d2f1933953fca255db2471ad58184a60508f03e6285e5114b6254844"}, - {file = "nh3-0.2.18.tar.gz", hash = "sha256:94a166927e53972a9698af9542ace4e38b9de50c34352b962f4d9a7d4c927af4"}, + {file = "nh3-0.2.17-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:551672fd71d06cd828e282abdb810d1be24e1abb7ae2543a8fa36a71c1006fe9"}, + {file = "nh3-0.2.17-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:c551eb2a3876e8ff2ac63dff1585236ed5dfec5ffd82216a7a174f7c5082a78a"}, + {file = "nh3-0.2.17-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:66f17d78826096291bd264f260213d2b3905e3c7fae6dfc5337d49429f1dc9f3"}, + {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0316c25b76289cf23be6b66c77d3608a4fdf537b35426280032f432f14291b9a"}, + {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:22c26e20acbb253a5bdd33d432a326d18508a910e4dcf9a3316179860d53345a"}, + {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:85cdbcca8ef10733bd31f931956f7fbb85145a4d11ab9e6742bbf44d88b7e351"}, + {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:40015514022af31975c0b3bca4014634fa13cb5dc4dbcbc00570acc781316dcc"}, + {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ba73a2f8d3a1b966e9cdba7b211779ad8a2561d2dba9674b8a19ed817923f65f"}, + {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c21bac1a7245cbd88c0b0e4a420221b7bfa838a2814ee5bb924e9c2f10a1120b"}, + {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:d7a25fd8c86657f5d9d576268e3b3767c5cd4f42867c9383618be8517f0f022a"}, + {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:c790769152308421283679a142dbdb3d1c46c79c823008ecea8e8141db1a2062"}, + {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:b4427ef0d2dfdec10b641ed0bdaf17957eb625b2ec0ea9329b3d28806c153d71"}, + {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a3f55fabe29164ba6026b5ad5c3151c314d136fd67415a17660b4aaddacf1b10"}, + {file = "nh3-0.2.17-cp37-abi3-win32.whl", hash = "sha256:1a814dd7bba1cb0aba5bcb9bebcc88fd801b63e21e2450ae6c52d3b3336bc911"}, + {file = "nh3-0.2.17-cp37-abi3-win_amd64.whl", hash = "sha256:1aa52a7def528297f256de0844e8dd680ee279e79583c76d6fa73a978186ddfb"}, + {file = "nh3-0.2.17.tar.gz", hash = "sha256:40d0741a19c3d645e54efba71cb0d8c475b59135c1e3c580f879ad5514cbf028"}, ] [[package]] @@ -2939,13 +2968,13 @@ test = ["coveralls", "futures", "mock", "pytest (>=2.7.3)", "pytest-benchmark", [[package]] name = "prompt-toolkit" -version = "3.0.47" +version = "3.0.45" description = "Library for building powerful interactive command lines in Python" optional = false python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.47-py3-none-any.whl", hash = "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10"}, - {file = "prompt_toolkit-3.0.47.tar.gz", hash = "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360"}, + {file = "prompt_toolkit-3.0.45-py3-none-any.whl", hash = "sha256:a29b89160e494e3ea8622b09fa5897610b437884dcdcd054fdc1308883326c2a"}, + {file = "prompt_toolkit-3.0.45.tar.gz", hash = "sha256:07c60ee4ab7b7e90824b61afa840c8f5aad2d46b3e2e10acc33d8ecc94a49089"}, ] [package.dependencies] @@ -3045,13 +3074,13 @@ files = [ [[package]] name = "pure-eval" -version = "0.2.3" +version = "0.2.2" description = "Safely evaluate AST nodes without side effects" optional = false python-versions = "*" files = [ - {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"}, - {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"}, + {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, + {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, ] [package.extras] @@ -3070,13 +3099,13 @@ files = [ [[package]] name = "pycodestyle" -version = "2.12.1" +version = "2.9.1" description = "Python style guide checker" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6" files = [ - {file = "pycodestyle-2.12.1-py2.py3-none-any.whl", hash = "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3"}, - {file = "pycodestyle-2.12.1.tar.gz", hash = "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521"}, + {file = "pycodestyle-2.9.1-py2.py3-none-any.whl", hash = "sha256:d1735fc58b418fd7c5f658d28d943854f8a849b01a5d0a1e6f3f3fdd0166804b"}, + {file = "pycodestyle-2.9.1.tar.gz", hash = "sha256:2c9607871d58c76354b697b42f5d57e1ada7d261c261efac224b664affdc5785"}, ] [[package]] @@ -3092,119 +3121,120 @@ files = [ [[package]] name = "pydantic" -version = "2.8.2" +version = "2.9.1" description = "Data validation using Python type hints" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic-2.8.2-py3-none-any.whl", hash = "sha256:73ee9fddd406dc318b885c7a2eab8a6472b68b8fb5ba8150949fc3db939f23c8"}, - {file = "pydantic-2.8.2.tar.gz", hash = "sha256:6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a"}, + {file = "pydantic-2.9.1-py3-none-any.whl", hash = "sha256:7aff4db5fdf3cf573d4b3c30926a510a10e19a0774d38fc4967f78beb6deb612"}, + {file = "pydantic-2.9.1.tar.gz", hash = "sha256:1363c7d975c7036df0db2b4a61f2e062fbc0aa5ab5f2772e0ffc7191a4f4bce2"}, ] [package.dependencies] -annotated-types = ">=0.4.0" -pydantic-core = "2.20.1" +annotated-types = ">=0.6.0" +pydantic-core = "2.23.3" typing-extensions = {version = ">=4.6.1", markers = "python_version < \"3.13\""} [package.extras] email = ["email-validator (>=2.0.0)"] +timezone = ["tzdata"] [[package]] name = "pydantic-core" -version = "2.20.1" +version = "2.23.3" description = "Core functionality for Pydantic validation and serialization" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3"}, - {file = "pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98"}, - {file = "pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a"}, - {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a"}, - {file = "pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840"}, - {file = "pydantic_core-2.20.1-cp310-none-win32.whl", hash = "sha256:5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250"}, - {file = "pydantic_core-2.20.1-cp310-none-win_amd64.whl", hash = "sha256:512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c"}, - {file = "pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312"}, - {file = "pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1"}, - {file = "pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b"}, - {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27"}, - {file = "pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b"}, - {file = "pydantic_core-2.20.1-cp311-none-win32.whl", hash = "sha256:fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a"}, - {file = "pydantic_core-2.20.1-cp311-none-win_amd64.whl", hash = "sha256:40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2"}, - {file = "pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231"}, - {file = "pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e"}, - {file = "pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24"}, - {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1"}, - {file = "pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd"}, - {file = "pydantic_core-2.20.1-cp312-none-win32.whl", hash = "sha256:469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688"}, - {file = "pydantic_core-2.20.1-cp312-none-win_amd64.whl", hash = "sha256:035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d"}, - {file = "pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686"}, - {file = "pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c"}, - {file = "pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83"}, - {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203"}, - {file = "pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0"}, - {file = "pydantic_core-2.20.1-cp313-none-win32.whl", hash = "sha256:b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e"}, - {file = "pydantic_core-2.20.1-cp313-none-win_amd64.whl", hash = "sha256:65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20"}, - {file = "pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:4745f4ac52cc6686390c40eaa01d48b18997cb130833154801a442323cc78f91"}, - {file = "pydantic_core-2.20.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a8ad4c766d3f33ba8fd692f9aa297c9058970530a32c728a2c4bfd2616d3358b"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41e81317dd6a0127cabce83c0c9c3fbecceae981c8391e6f1dec88a77c8a569a"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04024d270cf63f586ad41fff13fde4311c4fc13ea74676962c876d9577bcc78f"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eaad4ff2de1c3823fddf82f41121bdf453d922e9a238642b1dedb33c4e4f98ad"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:26ab812fa0c845df815e506be30337e2df27e88399b985d0bb4e3ecfe72df31c"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c5ebac750d9d5f2706654c638c041635c385596caf68f81342011ddfa1e5598"}, - {file = "pydantic_core-2.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2aafc5a503855ea5885559eae883978c9b6d8c8993d67766ee73d82e841300dd"}, - {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:4868f6bd7c9d98904b748a2653031fc9c2f85b6237009d475b1008bfaeb0a5aa"}, - {file = "pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa2f457b4af386254372dfa78a2eda2563680d982422641a85f271c859df1987"}, - {file = "pydantic_core-2.20.1-cp38-none-win32.whl", hash = "sha256:225b67a1f6d602de0ce7f6c1c3ae89a4aa25d3de9be857999e9124f15dab486a"}, - {file = "pydantic_core-2.20.1-cp38-none-win_amd64.whl", hash = "sha256:6b507132dcfc0dea440cce23ee2182c0ce7aba7054576efc65634f080dbe9434"}, - {file = "pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c"}, - {file = "pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006"}, - {file = "pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1"}, - {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09"}, - {file = "pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab"}, - {file = "pydantic_core-2.20.1-cp39-none-win32.whl", hash = "sha256:784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2"}, - {file = "pydantic_core-2.20.1-cp39-none-win_amd64.whl", hash = "sha256:d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99"}, - {file = "pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a"}, - {file = "pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7"}, - {file = "pydantic_core-2.20.1.tar.gz", hash = "sha256:26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4"}, + {file = "pydantic_core-2.23.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:7f10a5d1b9281392f1bf507d16ac720e78285dfd635b05737c3911637601bae6"}, + {file = "pydantic_core-2.23.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3c09a7885dd33ee8c65266e5aa7fb7e2f23d49d8043f089989726391dd7350c5"}, + {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6470b5a1ec4d1c2e9afe928c6cb37eb33381cab99292a708b8cb9aa89e62429b"}, + {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9172d2088e27d9a185ea0a6c8cebe227a9139fd90295221d7d495944d2367700"}, + {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86fc6c762ca7ac8fbbdff80d61b2c59fb6b7d144aa46e2d54d9e1b7b0e780e01"}, + {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0cb80fd5c2df4898693aa841425ea1727b1b6d2167448253077d2a49003e0ed"}, + {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03667cec5daf43ac4995cefa8aaf58f99de036204a37b889c24a80927b629cec"}, + {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:047531242f8e9c2db733599f1c612925de095e93c9cc0e599e96cf536aaf56ba"}, + {file = "pydantic_core-2.23.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5499798317fff7f25dbef9347f4451b91ac2a4330c6669821c8202fd354c7bee"}, + {file = "pydantic_core-2.23.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bbb5e45eab7624440516ee3722a3044b83fff4c0372efe183fd6ba678ff681fe"}, + {file = "pydantic_core-2.23.3-cp310-none-win32.whl", hash = "sha256:8b5b3ed73abb147704a6e9f556d8c5cb078f8c095be4588e669d315e0d11893b"}, + {file = "pydantic_core-2.23.3-cp310-none-win_amd64.whl", hash = "sha256:2b603cde285322758a0279995b5796d64b63060bfbe214b50a3ca23b5cee3e83"}, + {file = "pydantic_core-2.23.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:c889fd87e1f1bbeb877c2ee56b63bb297de4636661cc9bbfcf4b34e5e925bc27"}, + {file = "pydantic_core-2.23.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ea85bda3189fb27503af4c45273735bcde3dd31c1ab17d11f37b04877859ef45"}, + {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7f7f72f721223f33d3dc98a791666ebc6a91fa023ce63733709f4894a7dc611"}, + {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2b2b55b0448e9da68f56b696f313949cda1039e8ec7b5d294285335b53104b61"}, + {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c24574c7e92e2c56379706b9a3f07c1e0c7f2f87a41b6ee86653100c4ce343e5"}, + {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2b05e6ccbee333a8f4b8f4d7c244fdb7a979e90977ad9c51ea31261e2085ce0"}, + {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2c409ce1c219c091e47cb03feb3c4ed8c2b8e004efc940da0166aaee8f9d6c8"}, + {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d965e8b325f443ed3196db890d85dfebbb09f7384486a77461347f4adb1fa7f8"}, + {file = "pydantic_core-2.23.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f56af3a420fb1ffaf43ece3ea09c2d27c444e7c40dcb7c6e7cf57aae764f2b48"}, + {file = "pydantic_core-2.23.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5b01a078dd4f9a52494370af21aa52964e0a96d4862ac64ff7cea06e0f12d2c5"}, + {file = "pydantic_core-2.23.3-cp311-none-win32.whl", hash = "sha256:560e32f0df04ac69b3dd818f71339983f6d1f70eb99d4d1f8e9705fb6c34a5c1"}, + {file = "pydantic_core-2.23.3-cp311-none-win_amd64.whl", hash = "sha256:c744fa100fdea0d000d8bcddee95213d2de2e95b9c12be083370b2072333a0fa"}, + {file = "pydantic_core-2.23.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:e0ec50663feedf64d21bad0809f5857bac1ce91deded203efc4a84b31b2e4305"}, + {file = "pydantic_core-2.23.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:db6e6afcb95edbe6b357786684b71008499836e91f2a4a1e55b840955b341dbb"}, + {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98ccd69edcf49f0875d86942f4418a4e83eb3047f20eb897bffa62a5d419c8fa"}, + {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a678c1ac5c5ec5685af0133262103defb427114e62eafeda12f1357a12140162"}, + {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:01491d8b4d8db9f3391d93b0df60701e644ff0894352947f31fff3e52bd5c801"}, + {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fcf31facf2796a2d3b7fe338fe8640aa0166e4e55b4cb108dbfd1058049bf4cb"}, + {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7200fd561fb3be06827340da066df4311d0b6b8eb0c2116a110be5245dceb326"}, + {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dc1636770a809dee2bd44dd74b89cc80eb41172bcad8af75dd0bc182c2666d4c"}, + {file = "pydantic_core-2.23.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:67a5def279309f2e23014b608c4150b0c2d323bd7bccd27ff07b001c12c2415c"}, + {file = "pydantic_core-2.23.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:748bdf985014c6dd3e1e4cc3db90f1c3ecc7246ff5a3cd4ddab20c768b2f1dab"}, + {file = "pydantic_core-2.23.3-cp312-none-win32.whl", hash = "sha256:255ec6dcb899c115f1e2a64bc9ebc24cc0e3ab097775755244f77360d1f3c06c"}, + {file = "pydantic_core-2.23.3-cp312-none-win_amd64.whl", hash = "sha256:40b8441be16c1e940abebed83cd006ddb9e3737a279e339dbd6d31578b802f7b"}, + {file = "pydantic_core-2.23.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:6daaf5b1ba1369a22c8b050b643250e3e5efc6a78366d323294aee54953a4d5f"}, + {file = "pydantic_core-2.23.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d015e63b985a78a3d4ccffd3bdf22b7c20b3bbd4b8227809b3e8e75bc37f9cb2"}, + {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3fc572d9b5b5cfe13f8e8a6e26271d5d13f80173724b738557a8c7f3a8a3791"}, + {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f6bd91345b5163ee7448bee201ed7dd601ca24f43f439109b0212e296eb5b423"}, + {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc379c73fd66606628b866f661e8785088afe2adaba78e6bbe80796baf708a63"}, + {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbdce4b47592f9e296e19ac31667daed8753c8367ebb34b9a9bd89dacaa299c9"}, + {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc3cf31edf405a161a0adad83246568647c54404739b614b1ff43dad2b02e6d5"}, + {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8e22b477bf90db71c156f89a55bfe4d25177b81fce4aa09294d9e805eec13855"}, + {file = "pydantic_core-2.23.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:0a0137ddf462575d9bce863c4c95bac3493ba8e22f8c28ca94634b4a1d3e2bb4"}, + {file = "pydantic_core-2.23.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:203171e48946c3164fe7691fc349c79241ff8f28306abd4cad5f4f75ed80bc8d"}, + {file = "pydantic_core-2.23.3-cp313-none-win32.whl", hash = "sha256:76bdab0de4acb3f119c2a4bff740e0c7dc2e6de7692774620f7452ce11ca76c8"}, + {file = "pydantic_core-2.23.3-cp313-none-win_amd64.whl", hash = "sha256:37ba321ac2a46100c578a92e9a6aa33afe9ec99ffa084424291d84e456f490c1"}, + {file = "pydantic_core-2.23.3-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d063c6b9fed7d992bcbebfc9133f4c24b7a7f215d6b102f3e082b1117cddb72c"}, + {file = "pydantic_core-2.23.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6cb968da9a0746a0cf521b2b5ef25fc5a0bee9b9a1a8214e0a1cfaea5be7e8a4"}, + {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edbefe079a520c5984e30e1f1f29325054b59534729c25b874a16a5048028d16"}, + {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cbaaf2ef20d282659093913da9d402108203f7cb5955020bd8d1ae5a2325d1c4"}, + {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fb539d7e5dc4aac345846f290cf504d2fd3c1be26ac4e8b5e4c2b688069ff4cf"}, + {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e6f33503c5495059148cc486867e1d24ca35df5fc064686e631e314d959ad5b"}, + {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04b07490bc2f6f2717b10c3969e1b830f5720b632f8ae2f3b8b1542394c47a8e"}, + {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:03795b9e8a5d7fda05f3873efc3f59105e2dcff14231680296b87b80bb327295"}, + {file = "pydantic_core-2.23.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c483dab0f14b8d3f0df0c6c18d70b21b086f74c87ab03c59250dbf6d3c89baba"}, + {file = "pydantic_core-2.23.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8b2682038e255e94baf2c473dca914a7460069171ff5cdd4080be18ab8a7fd6e"}, + {file = "pydantic_core-2.23.3-cp38-none-win32.whl", hash = "sha256:f4a57db8966b3a1d1a350012839c6a0099f0898c56512dfade8a1fe5fb278710"}, + {file = "pydantic_core-2.23.3-cp38-none-win_amd64.whl", hash = "sha256:13dd45ba2561603681a2676ca56006d6dee94493f03d5cadc055d2055615c3ea"}, + {file = "pydantic_core-2.23.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:82da2f4703894134a9f000e24965df73cc103e31e8c31906cc1ee89fde72cbd8"}, + {file = "pydantic_core-2.23.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dd9be0a42de08f4b58a3cc73a123f124f65c24698b95a54c1543065baca8cf0e"}, + {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89b731f25c80830c76fdb13705c68fef6a2b6dc494402987c7ea9584fe189f5d"}, + {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6de1ec30c4bb94f3a69c9f5f2182baeda5b809f806676675e9ef6b8dc936f28"}, + {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bb68b41c3fa64587412b104294b9cbb027509dc2f6958446c502638d481525ef"}, + {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c3980f2843de5184656aab58698011b42763ccba11c4a8c35936c8dd6c7068c"}, + {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94f85614f2cba13f62c3c6481716e4adeae48e1eaa7e8bac379b9d177d93947a"}, + {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:510b7fb0a86dc8f10a8bb43bd2f97beb63cffad1203071dc434dac26453955cd"}, + {file = "pydantic_core-2.23.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1eba2f7ce3e30ee2170410e2171867ea73dbd692433b81a93758ab2de6c64835"}, + {file = "pydantic_core-2.23.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4b259fd8409ab84b4041b7b3f24dcc41e4696f180b775961ca8142b5b21d0e70"}, + {file = "pydantic_core-2.23.3-cp39-none-win32.whl", hash = "sha256:40d9bd259538dba2f40963286009bf7caf18b5112b19d2b55b09c14dde6db6a7"}, + {file = "pydantic_core-2.23.3-cp39-none-win_amd64.whl", hash = "sha256:5a8cd3074a98ee70173a8633ad3c10e00dcb991ecec57263aacb4095c5efb958"}, + {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f399e8657c67313476a121a6944311fab377085ca7f490648c9af97fc732732d"}, + {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:6b5547d098c76e1694ba85f05b595720d7c60d342f24d5aad32c3049131fa5c4"}, + {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0dda0290a6f608504882d9f7650975b4651ff91c85673341789a476b1159f211"}, + {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65b6e5da855e9c55a0c67f4db8a492bf13d8d3316a59999cfbaf98cc6e401961"}, + {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:09e926397f392059ce0afdcac920df29d9c833256354d0c55f1584b0b70cf07e"}, + {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:87cfa0ed6b8c5bd6ae8b66de941cece179281239d482f363814d2b986b79cedc"}, + {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e61328920154b6a44d98cabcb709f10e8b74276bc709c9a513a8c37a18786cc4"}, + {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ce3317d155628301d649fe5e16a99528d5680af4ec7aa70b90b8dacd2d725c9b"}, + {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e89513f014c6be0d17b00a9a7c81b1c426f4eb9224b15433f3d98c1a071f8433"}, + {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:4f62c1c953d7ee375df5eb2e44ad50ce2f5aff931723b398b8bc6f0ac159791a"}, + {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2718443bc671c7ac331de4eef9b673063b10af32a0bb385019ad61dcf2cc8f6c"}, + {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0d90e08b2727c5d01af1b5ef4121d2f0c99fbee692c762f4d9d0409c9da6541"}, + {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b676583fc459c64146debea14ba3af54e540b61762dfc0613dc4e98c3f66eeb"}, + {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:50e4661f3337977740fdbfbae084ae5693e505ca2b3130a6d4eb0f2281dc43b8"}, + {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:68f4cf373f0de6abfe599a38307f4417c1c867ca381c03df27c873a9069cda25"}, + {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:59d52cf01854cb26c46958552a21acb10dd78a52aa34c86f284e66b209db8cab"}, + {file = "pydantic_core-2.23.3.tar.gz", hash = "sha256:3cb0f65d8b4121c1b015c60104a685feb929a29d7cf204387c7f2688c7974690"}, ] [package.dependencies] @@ -3243,40 +3273,40 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyjwt" -version = "2.9.0" +version = "2.8.0" description = "JSON Web Token implementation in Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, - {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, + {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, + {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, ] [package.extras] crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] name = "pylint" -version = "3.2.6" +version = "2.17.7" description = "python code static checker" optional = false -python-versions = ">=3.8.0" +python-versions = ">=3.7.2" files = [ - {file = "pylint-3.2.6-py3-none-any.whl", hash = "sha256:03c8e3baa1d9fb995b12c1dbe00aa6c4bcef210c2a2634374aedeb22fb4a8f8f"}, - {file = "pylint-3.2.6.tar.gz", hash = "sha256:a5d01678349454806cff6d886fb072294f56a58c4761278c97fb557d708e1eb3"}, + {file = "pylint-2.17.7-py3-none-any.whl", hash = "sha256:27a8d4c7ddc8c2f8c18aa0050148f89ffc09838142193fdbe98f172781a3ff87"}, + {file = "pylint-2.17.7.tar.gz", hash = "sha256:f4fcac7ae74cfe36bc8451e931d8438e4a476c20314b1101c458ad0f05191fad"}, ] [package.dependencies] -astroid = ">=3.2.4,<=3.3.0-dev0" +astroid = ">=2.15.8,<=2.17.0-dev0" colorama = {version = ">=0.4.5", markers = "sys_platform == \"win32\""} dill = [ {version = ">=0.2", markers = "python_version < \"3.11\""}, {version = ">=0.3.6", markers = "python_version >= \"3.11\""}, ] -isort = ">=4.2.5,<5.13.0 || >5.13.0,<6" +isort = ">=4.2.5,<6" mccabe = ">=0.6,<0.8" platformdirs = ">=2.2.0" tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} @@ -3307,18 +3337,18 @@ with-django = ["Django (>=2.2)"] [[package]] name = "pylint-nautobot" -version = "0.3.0" +version = "0.3.1" description = "Custom Pylint Rules for Nautobot" optional = false -python-versions = ">=3.8,<3.12" +python-versions = "<4.0,>=3.8" files = [ - {file = "pylint_nautobot-0.3.0-py3-none-any.whl", hash = "sha256:91fed48d9a9f565c6aa46c679b930d64b06d014061f6e7e802e6de8b6b8e3f87"}, - {file = "pylint_nautobot-0.3.0.tar.gz", hash = "sha256:387a1d73b49186a7b325b6c1a3634e2c57ec0f2350e93494304c47073400099b"}, + {file = "pylint_nautobot-0.3.1-py3-none-any.whl", hash = "sha256:097bb85405aabe766395a9d09dc474e39c8d9d23700d0e64e21f3855b4188466"}, + {file = "pylint_nautobot-0.3.1.tar.gz", hash = "sha256:3a637f03dccf29db47d6fdfa348f6fbcd97e9471ade5c8eca7efd0921740dd94"}, ] [package.dependencies] importlib-resources = ">=5.12.0" -pylint = ">=2.17.5" +pylint = ">=2.17,<3.0" pyyaml = ">=6.0.1" toml = ">=0.10.2" @@ -3338,17 +3368,17 @@ pylint = ">=1.7" [[package]] name = "pymdown-extensions" -version = "10.9" +version = "10.7.1" description = "Extension pack for Python Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "pymdown_extensions-10.9-py3-none-any.whl", hash = "sha256:d323f7e90d83c86113ee78f3fe62fc9dee5f56b54d912660703ea1816fed5626"}, - {file = "pymdown_extensions-10.9.tar.gz", hash = "sha256:6ff740bcd99ec4172a938970d42b96128bdc9d4b9bcad72494f29921dc69b753"}, + {file = "pymdown_extensions-10.7.1-py3-none-any.whl", hash = "sha256:f5cc7000d7ff0d1ce9395d216017fa4df3dde800afb1fb72d1c7d3fd35e710f4"}, + {file = "pymdown_extensions-10.7.1.tar.gz", hash = "sha256:c70e146bdd83c744ffc766b4671999796aba18842b268510a329f7f64700d584"}, ] [package.dependencies] -markdown = ">=3.6" +markdown = ">=3.5" pyyaml = "*" [package.extras] @@ -3426,13 +3456,12 @@ cp2110 = ["hidapi"] [[package]] name = "python-crontab" -version = "3.2.0" +version = "3.1.0" description = "Python Crontab API" optional = false python-versions = "*" files = [ - {file = "python_crontab-3.2.0-py3-none-any.whl", hash = "sha256:82cb9b6a312d41ff66fd3caf3eed7115c28c195bfb50711bc2b4b9592feb9fe5"}, - {file = "python_crontab-3.2.0.tar.gz", hash = "sha256:40067d1dd39ade3460b2ad8557c7651514cd3851deffff61c5c60e1227c5c36b"}, + {file = "python-crontab-3.1.0.tar.gz", hash = "sha256:f4ea1605d24533b67fa7a634ef26cb59a5f2e7954f6e677d2d7a2229959a2fc8"}, ] [package.dependencies] @@ -3518,120 +3547,114 @@ files = [ [[package]] name = "pyuwsgi" -version = "2.0.26" +version = "2.0.23.post0" description = "The uWSGI server" optional = false python-versions = "*" files = [ - {file = "pyuwsgi-2.0.26-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5fe6149521f6545548452ae66d670be7ece962045952d07af7fdd156409771d4"}, - {file = "pyuwsgi-2.0.26-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:03ce17f4a114e0ca53686748e7a4556e62c7a0edc8a6033e076eb3bc4db5489f"}, - {file = "pyuwsgi-2.0.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:244c81e050e240ebc8a1c455db8aefc6b5c9f4582551b34905092da0e03415a3"}, - {file = "pyuwsgi-2.0.26-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:596c55b36b72fbb04b6e024578e8f9867185b6b07f50fcead75e71b6534154e7"}, - {file = "pyuwsgi-2.0.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a9e82434e640eb5c7ce0845c3cfd6711088cff3b0265d98e6a34216972eec07"}, - {file = "pyuwsgi-2.0.26-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:df91af8b7dfd573683ccecfa646d447e4a23be7dc84329c0633e70faa9431ba8"}, - {file = "pyuwsgi-2.0.26-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:ffa63939802f29873a8b92e437fd9e17fccde0a80004260a2abe8ad71b42bd1d"}, - {file = "pyuwsgi-2.0.26-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:910642f91877e8dac6d0286c79688543d0d573e43e78d030d998faee8ca49bdb"}, - {file = "pyuwsgi-2.0.26-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b20664df152f225d56f6ba810347d47efa126d9ce751e6e5fbad07a12d7cdae2"}, - {file = "pyuwsgi-2.0.26-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:35aeca4b60e883796f0c2fa4b78fa34e5f31947b317b7d63526aa68a31036467"}, - {file = "pyuwsgi-2.0.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46f95c39b8713121536e5f0c4292eab30adcb8dabd088641fd34b5641d4fd81d"}, - {file = "pyuwsgi-2.0.26-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:85f8a3b09b41177496e5ed84aa9e0e3f815ac53422d37f72eec7933609f742e9"}, - {file = "pyuwsgi-2.0.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9b9bed61cf18002ed7e9cef81c42e6b825c01b7c8d983f2cff223f905987e64"}, - {file = "pyuwsgi-2.0.26-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a0bc7cb23a35b7da5ead97b2e9ea2894a74c96d9864782789526e66fdfcf5f91"}, - {file = "pyuwsgi-2.0.26-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bb69885e3f02a7538137197a8618766cda7e29bd7da005fce699e6385215a786"}, - {file = "pyuwsgi-2.0.26-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c7bb17f907f7e165d45b676939c9641dbf4d7c8c532caaa704006c6be69c3b60"}, - {file = "pyuwsgi-2.0.26-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:01aac38118cd35adb141a7ddbd721845c3b895a18d6cfddca3a237e0da5e5fc7"}, - {file = "pyuwsgi-2.0.26-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ead0863e90397be562ca9816b2e0704f8e59e734ab158eb467db333814af704e"}, - {file = "pyuwsgi-2.0.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf4e2828ca8c213f91673ff960a29ebbc037d743e57b2758ea5a76dd13c0b01c"}, - {file = "pyuwsgi-2.0.26-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d48accc82c82d637be27ebb153c17a2773758df582602d7f8c1702e9dcf8ea3a"}, - {file = "pyuwsgi-2.0.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c87bd20906bceebf0bfb3fc4f25b12ca3943aafeaf0dc289df9144d4ee41f9c5"}, - {file = "pyuwsgi-2.0.26-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e5f14b676f8aacd79a2106695657c212b4469cd98f1624dc0473e1e0e695bcc9"}, - {file = "pyuwsgi-2.0.26-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:70aec45ba640742df86e0f1a0baa01964b162d11f24ee70d56146bd6331462f9"}, - {file = "pyuwsgi-2.0.26-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c8ded279e1c4da7273f25d658979071520ae97712650f70ea50715618cb51910"}, - {file = "pyuwsgi-2.0.26-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:288f34589e7d76e70f4ebaccfeb34b76cefa661f41302b38722f305a22310e1f"}, - {file = "pyuwsgi-2.0.26-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:524c5620aff07c72f9ef6526712f92a06ff9741c0c3ea7b46284045de1b8db40"}, - {file = "pyuwsgi-2.0.26-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e9f5f0c377d9efc04d12937e79567628c4c1f72c0991f45c6dbb76541ca1b683"}, - {file = "pyuwsgi-2.0.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db26c9ca688fb19e1716c7ab8e09811a9bd431576432ca626d89e9ebbef96fc1"}, - {file = "pyuwsgi-2.0.26-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:489ff6e77fcbe14ca7a853916388ddb4bd4e087dd243abef0b7a4732563401ba"}, - {file = "pyuwsgi-2.0.26-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:3d07829faf43b5981487130a929eb8521aefdf39dd723c50e2e168362dafafdc"}, - {file = "pyuwsgi-2.0.26-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:d9e21e147f851a77ab893a27466a166a52450558c88ce885974c2e63f6e3c298"}, - {file = "pyuwsgi-2.0.26-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7cfa8b9524bccca9052c6fd2682ec2fc744a9397eaf5febde8e60334fac4313a"}, - {file = "pyuwsgi-2.0.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a13acc603cca50510dd2b0772f398bad1bcfaa5c418069becba016edac22ac4"}, - {file = "pyuwsgi-2.0.26-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:544e2f791912dc5f38cb1159eae8ba037cdd472b40e2fcfc0ea7fb973aaebaaa"}, - {file = "pyuwsgi-2.0.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c807ae36058dd7ae2653451081536c10886c74fc06aa1bf7a28cc2f0c815307"}, - {file = "pyuwsgi-2.0.26-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:af04d0ff93a89c65369c8b0b10d07394046e7d78694fad998b316aa7f8ca3e1d"}, - {file = "pyuwsgi-2.0.26-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:fb1ba584cd07339f2adad5eb33ab51854330748426a63fbd58cb39031ffb7498"}, - {file = "pyuwsgi-2.0.26-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:709d3704dcb9e85576a31a1c04782fe17df6a577a6eaf07dd2b7c34982ca905f"}, - {file = "pyuwsgi-2.0.26-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4a81548e59852276af18d4404512cfcbaf20c40f38f345bb80b1a87f1dc7285c"}, - {file = "pyuwsgi-2.0.26-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bb840399ff19b3e2308e33b2cd37143bc55b1666e99b38370660b95127b081aa"}, - {file = "pyuwsgi-2.0.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:115cf76fe6358a7863e4f28d9dfd2fa51f1f198a7259ee5fec2e7cb52d0060bf"}, - {file = "pyuwsgi-2.0.26-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fd517e4336ebae0493063a031da0e6a53ff436dc5cd551b57f387d38459085c"}, - {file = "pyuwsgi-2.0.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14769dd0c41bc531dba7fc8fe202a11d984d93f251896ffcc74daa0476eda966"}, - {file = "pyuwsgi-2.0.26-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:312575bcc9513dfd7d76d993b7753d18b9a36e54cffca6b72ad2e1397636c7fd"}, - {file = "pyuwsgi-2.0.26-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3d839d584276784f660168b89209c28ce9a1cb14f8911322f21d919c2566e49d"}, - {file = "pyuwsgi-2.0.26-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ea8e3e197f54902b34c5648880bc3c111ad4f677a7350203d1052606cc04119b"}, - {file = "pyuwsgi-2.0.26.tar.gz", hash = "sha256:c7f167545939764a1c6fcd0f861023f641ca09f9806f1f4b7e48b9ea2682db8e"}, + {file = "pyuwsgi-2.0.23.post0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49dfe43726f4a71d3440f7a36eb3ba5b361e04807164d34ececda138e2dc2375"}, + {file = "pyuwsgi-2.0.23.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65420b185003dd5b66f41a6d1aa03d63d953a18e818bd4a013fc8e9d580f11cb"}, + {file = "pyuwsgi-2.0.23.post0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7bc7c60d8e1242b3a638754d2487c505112c642010c460442993be85f3ca9ec7"}, + {file = "pyuwsgi-2.0.23.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1ae2abaa47cb9c0018c790935897aec8001fb709dfac54286a37ab2e0b88dca"}, + {file = "pyuwsgi-2.0.23.post0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:af376cafca1501b2d4b8184c427c55b32c1a3dcb6070dc27115ca552898c7ff8"}, + {file = "pyuwsgi-2.0.23.post0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f56a729808ed7aa1d7973d6f900a75bc36b976b7ab6c8867064f36e34cdafd4e"}, + {file = "pyuwsgi-2.0.23.post0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4270e68bb2633b0fc132aad6d415e4e0cde67093a97e64dd84bd186264a8c083"}, + {file = "pyuwsgi-2.0.23.post0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:97c940a69242dc45658dba3330e64d809f34e33d9631547b6928fd20075b4bb9"}, + {file = "pyuwsgi-2.0.23.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cac396c2e8e0d199bde9bb8fc90538c82207d0c3d722d08b9a63619b41945d6"}, + {file = "pyuwsgi-2.0.23.post0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:59d6a718ad42be54b2b80c8c236b728b8b83fb93438786e95f63fc259229ccd7"}, + {file = "pyuwsgi-2.0.23.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c38b5bb59e1bf59030f2d43a3e67aa18e6089c8e7f43e9c5f2099567466d35f4"}, + {file = "pyuwsgi-2.0.23.post0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7199009447770812056a5b417c4847bd44db1b0230d4bb64c48a4ffacd4e96f0"}, + {file = "pyuwsgi-2.0.23.post0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f361d168cf175796fe36ab6a88dee079245a2f08e587e8190a38bd1b33238fa8"}, + {file = "pyuwsgi-2.0.23.post0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:52a45e98fe746ae9c9437c5b6f0cdb6117f979c8800f09c8e4dae2997786affd"}, + {file = "pyuwsgi-2.0.23.post0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f7455976abfa1dd43b5f3376f7f04a925c16babba1c3fc6edcdd81f5c0f24383"}, + {file = "pyuwsgi-2.0.23.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508f5d84cd677cecc640d0e321badc61080c40c61843cd130b32f356729a599f"}, + {file = "pyuwsgi-2.0.23.post0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dcf93afec49f5cf29b0a68f4d2fb3e44a3ad1f205704ab2f41f9db47dacb8e13"}, + {file = "pyuwsgi-2.0.23.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a19ab0d5c43bc179a70cb079feb7804e39be6326bf98ec38808fcea5e7d44bd0"}, + {file = "pyuwsgi-2.0.23.post0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8c5283e38c4fd3130cd7384d57535d60435c63b81a41a6463f26f340efeda9de"}, + {file = "pyuwsgi-2.0.23.post0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:0d9dfb79bffa552e5985385bc114ecec1d4079b95ce24796f577ef0df727da06"}, + {file = "pyuwsgi-2.0.23.post0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b531ac80155b6c839215d05f95569b34e614e97aab055072c74112b1d2a45546"}, + {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:eae183104f3fa26f3d9c28fe75f2ad914e3a365103a6a66e329c0f59f9e461d4"}, + {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a34ab2863ff0120c6e0e75c63c9ced462bfb4777e6b8237e4e1df60fb34af51"}, + {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc18481f336be63e80fc983aaa1a040e7c69c25c3145edcf93f0e6de2f1ad0d6"}, + {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:245da016b424c261d148bbb83d2407aac77e6d5793cbd4e23a17f7e3a8aa061f"}, + {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:8de1d975be958cff9122ecc82bf393bf7f41fff6f1047e76ed972047763bbd31"}, + {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d75859311605a510a6050ec622ec4beb9f2f8cce5f090e5cea70a1ff74133f8b"}, + {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d3ad00212ffbb208b7146744ad3710b908734f844b5e2bf533fb09fc44726f37"}, + {file = "pyuwsgi-2.0.23.post0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:374142b106de187c4572b4441a367fa3466d9ea5aaabe475da42bb9f2202a690"}, + {file = "pyuwsgi-2.0.23.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:137db348bd5f585e8e5a609046d3ac9ef58483bba93de1e3c568c1a860c31b9c"}, + {file = "pyuwsgi-2.0.23.post0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:52b7a837dbc8702b245481514a32c88418a42df7b5ee68d45695eba457abd3ee"}, + {file = "pyuwsgi-2.0.23.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfcfeb1eaca5f4dd0e6ed9194e7ec98dcb3a8ac108e8f0414ed7c28d608517ef"}, + {file = "pyuwsgi-2.0.23.post0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7887c2acc8262223ff9cdce974851da0917818c12ef3ec0f49ec11a9943731fe"}, + {file = "pyuwsgi-2.0.23.post0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:bae72689ddf8e0bdd1a974a364ed052dd19d7897f1d5c3efcf8d9010c60f56ef"}, + {file = "pyuwsgi-2.0.23.post0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:9565569474f9e9f02f6fa490d96d8c5c7e3004829c01c0446cdb74c618b6a433"}, + {file = "pyuwsgi-2.0.23.post0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6ba86c6aa815635eefe7728b9b219af281a4e956bab240c5871db6c151c300a8"}, + {file = "pyuwsgi-2.0.23.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29ab8a02e812fbc34026ddb79f274a574c96fc488f384f320d3af37bd7edf932"}, + {file = "pyuwsgi-2.0.23.post0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4f9c0694a11d8dfbbe2814b8b242a7c4dfa143b63e01447fabce9966a90fa60"}, + {file = "pyuwsgi-2.0.23.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f75e45e14462cbb94fc32242378eef7bda97173de57a68a5d46e4053677a7547"}, + {file = "pyuwsgi-2.0.23.post0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e7140fc3548cd9d0f02c4511b679ba47d26593d2cceb249d2d147c9901d90022"}, + {file = "pyuwsgi-2.0.23.post0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ed348cc4c5a4964c8e8fa61ab0ef50c00f7676179a6c0cb0f55f0122db1db1c2"}, + {file = "pyuwsgi-2.0.23.post0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17a8818ec98f92e7935cf0ff56ed4f02a069362e10554df969f70fcdf78d9199"}, + {file = "pyuwsgi-2.0.23.post0.tar.gz", hash = "sha256:04ec79c4a3acad21002ebf1479050c3208605d27cc6659008df51092951eeb8e"}, ] [[package]] name = "pyyaml" -version = "6.0.2" +version = "6.0.1" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.8" +python-versions = ">=3.6" files = [ - {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, - {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, - {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, - {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, - {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, - {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, - {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, - {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, - {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, - {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, - {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, - {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, - {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, - {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, - {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, - {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, - {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, - {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, - {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, - {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, - {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, - {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, - {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, - {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, - {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, - {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, - {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, - {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, - {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, - {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, - {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, - {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, ] [[package]] @@ -3650,20 +3673,20 @@ pyyaml = "*" [[package]] name = "redis" -version = "5.0.8" +version = "5.0.4" description = "Python client for Redis database and key-value store" optional = false python-versions = ">=3.7" files = [ - {file = "redis-5.0.8-py3-none-any.whl", hash = "sha256:56134ee08ea909106090934adc36f65c9bcbbaecea5b21ba704ba6fb561f8eb4"}, - {file = "redis-5.0.8.tar.gz", hash = "sha256:0c5b10d387568dfe0698c6fad6615750c24170e548ca2deac10c649d463e9870"}, + {file = "redis-5.0.4-py3-none-any.whl", hash = "sha256:7adc2835c7a9b5033b7ad8f8918d09b7344188228809c98df07af226d39dec91"}, + {file = "redis-5.0.4.tar.gz", hash = "sha256:ec31f2ed9675cc54c21ba854cfe0462e6faf1d83c8ce5944709db8a4700b9c61"}, ] [package.dependencies] async-timeout = {version = ">=4.0.3", markers = "python_full_version < \"3.11.3\""} [package.extras] -hiredis = ["hiredis (>1.0.0)"] +hiredis = ["hiredis (>=1.0.0)"] ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==20.0.1)", "requests (>=2.26.0)"] [[package]] @@ -3683,90 +3706,90 @@ rpds-py = ">=0.7.0" [[package]] name = "regex" -version = "2024.7.24" +version = "2024.5.15" description = "Alternative regular expression module, to replace re." optional = false python-versions = ">=3.8" files = [ - {file = "regex-2024.7.24-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b0d3f567fafa0633aee87f08b9276c7062da9616931382993c03808bb68ce"}, - {file = "regex-2024.7.24-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3426de3b91d1bc73249042742f45c2148803c111d1175b283270177fdf669024"}, - {file = "regex-2024.7.24-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f273674b445bcb6e4409bf8d1be67bc4b58e8b46fd0d560055d515b8830063cd"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23acc72f0f4e1a9e6e9843d6328177ae3074b4182167e34119ec7233dfeccf53"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65fd3d2e228cae024c411c5ccdffae4c315271eee4a8b839291f84f796b34eca"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c414cbda77dbf13c3bc88b073a1a9f375c7b0cb5e115e15d4b73ec3a2fbc6f59"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf7a89eef64b5455835f5ed30254ec19bf41f7541cd94f266ab7cbd463f00c41"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19c65b00d42804e3fbea9708f0937d157e53429a39b7c61253ff15670ff62cb5"}, - {file = "regex-2024.7.24-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7a5486ca56c8869070a966321d5ab416ff0f83f30e0e2da1ab48815c8d165d46"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6f51f9556785e5a203713f5efd9c085b4a45aecd2a42573e2b5041881b588d1f"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a4997716674d36a82eab3e86f8fa77080a5d8d96a389a61ea1d0e3a94a582cf7"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c0abb5e4e8ce71a61d9446040c1e86d4e6d23f9097275c5bd49ed978755ff0fe"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:18300a1d78cf1290fa583cd8b7cde26ecb73e9f5916690cf9d42de569c89b1ce"}, - {file = "regex-2024.7.24-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:416c0e4f56308f34cdb18c3f59849479dde5b19febdcd6e6fa4d04b6c31c9faa"}, - {file = "regex-2024.7.24-cp310-cp310-win32.whl", hash = "sha256:fb168b5924bef397b5ba13aabd8cf5df7d3d93f10218d7b925e360d436863f66"}, - {file = "regex-2024.7.24-cp310-cp310-win_amd64.whl", hash = "sha256:6b9fc7e9cc983e75e2518496ba1afc524227c163e43d706688a6bb9eca41617e"}, - {file = "regex-2024.7.24-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:382281306e3adaaa7b8b9ebbb3ffb43358a7bbf585fa93821300a418bb975281"}, - {file = "regex-2024.7.24-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4fdd1384619f406ad9037fe6b6eaa3de2749e2e12084abc80169e8e075377d3b"}, - {file = "regex-2024.7.24-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3d974d24edb231446f708c455fd08f94c41c1ff4f04bcf06e5f36df5ef50b95a"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2ec4419a3fe6cf8a4795752596dfe0adb4aea40d3683a132bae9c30b81e8d73"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb563dd3aea54c797adf513eeec819c4213d7dbfc311874eb4fd28d10f2ff0f2"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45104baae8b9f67569f0f1dca5e1f1ed77a54ae1cd8b0b07aba89272710db61e"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:994448ee01864501912abf2bad9203bffc34158e80fe8bfb5b031f4f8e16da51"}, - {file = "regex-2024.7.24-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fac296f99283ac232d8125be932c5cd7644084a30748fda013028c815ba3364"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7e37e809b9303ec3a179085415cb5f418ecf65ec98cdfe34f6a078b46ef823ee"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:01b689e887f612610c869421241e075c02f2e3d1ae93a037cb14f88ab6a8934c"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f6442f0f0ff81775eaa5b05af8a0ffa1dda36e9cf6ec1e0d3d245e8564b684ce"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:871e3ab2838fbcb4e0865a6e01233975df3a15e6fce93b6f99d75cacbd9862d1"}, - {file = "regex-2024.7.24-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c918b7a1e26b4ab40409820ddccc5d49871a82329640f5005f73572d5eaa9b5e"}, - {file = "regex-2024.7.24-cp311-cp311-win32.whl", hash = "sha256:2dfbb8baf8ba2c2b9aa2807f44ed272f0913eeeba002478c4577b8d29cde215c"}, - {file = "regex-2024.7.24-cp311-cp311-win_amd64.whl", hash = "sha256:538d30cd96ed7d1416d3956f94d54e426a8daf7c14527f6e0d6d425fcb4cca52"}, - {file = "regex-2024.7.24-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:fe4ebef608553aff8deb845c7f4f1d0740ff76fa672c011cc0bacb2a00fbde86"}, - {file = "regex-2024.7.24-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:74007a5b25b7a678459f06559504f1eec2f0f17bca218c9d56f6a0a12bfffdad"}, - {file = "regex-2024.7.24-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7df9ea48641da022c2a3c9c641650cd09f0cd15e8908bf931ad538f5ca7919c9"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a1141a1dcc32904c47f6846b040275c6e5de0bf73f17d7a409035d55b76f289"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80c811cfcb5c331237d9bad3bea2c391114588cf4131707e84d9493064d267f9"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7214477bf9bd195894cf24005b1e7b496f46833337b5dedb7b2a6e33f66d962c"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d55588cba7553f0b6ec33130bc3e114b355570b45785cebdc9daed8c637dd440"}, - {file = "regex-2024.7.24-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:558a57cfc32adcf19d3f791f62b5ff564922942e389e3cfdb538a23d65a6b610"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a512eed9dfd4117110b1881ba9a59b31433caed0c4101b361f768e7bcbaf93c5"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:86b17ba823ea76256b1885652e3a141a99a5c4422f4a869189db328321b73799"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5eefee9bfe23f6df09ffb6dfb23809f4d74a78acef004aa904dc7c88b9944b05"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:731fcd76bbdbf225e2eb85b7c38da9633ad3073822f5ab32379381e8c3c12e94"}, - {file = "regex-2024.7.24-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eaef80eac3b4cfbdd6de53c6e108b4c534c21ae055d1dbea2de6b3b8ff3def38"}, - {file = "regex-2024.7.24-cp312-cp312-win32.whl", hash = "sha256:185e029368d6f89f36e526764cf12bf8d6f0e3a2a7737da625a76f594bdfcbfc"}, - {file = "regex-2024.7.24-cp312-cp312-win_amd64.whl", hash = "sha256:2f1baff13cc2521bea83ab2528e7a80cbe0ebb2c6f0bfad15be7da3aed443908"}, - {file = "regex-2024.7.24-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:66b4c0731a5c81921e938dcf1a88e978264e26e6ac4ec96a4d21ae0354581ae0"}, - {file = "regex-2024.7.24-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:88ecc3afd7e776967fa16c80f974cb79399ee8dc6c96423321d6f7d4b881c92b"}, - {file = "regex-2024.7.24-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:64bd50cf16bcc54b274e20235bf8edbb64184a30e1e53873ff8d444e7ac656b2"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb462f0e346fcf41a901a126b50f8781e9a474d3927930f3490f38a6e73b6950"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a82465ebbc9b1c5c50738536fdfa7cab639a261a99b469c9d4c7dcbb2b3f1e57"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:68a8f8c046c6466ac61a36b65bb2395c74451df2ffb8458492ef49900efed293"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac8e84fff5d27420f3c1e879ce9929108e873667ec87e0c8eeb413a5311adfe"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba2537ef2163db9e6ccdbeb6f6424282ae4dea43177402152c67ef869cf3978b"}, - {file = "regex-2024.7.24-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:43affe33137fcd679bdae93fb25924979517e011f9dea99163f80b82eadc7e53"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:c9bb87fdf2ab2370f21e4d5636e5317775e5d51ff32ebff2cf389f71b9b13750"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:945352286a541406f99b2655c973852da7911b3f4264e010218bbc1cc73168f2"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:8bc593dcce679206b60a538c302d03c29b18e3d862609317cb560e18b66d10cf"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:3f3b6ca8eae6d6c75a6cff525c8530c60e909a71a15e1b731723233331de4169"}, - {file = "regex-2024.7.24-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:c51edc3541e11fbe83f0c4d9412ef6c79f664a3745fab261457e84465ec9d5a8"}, - {file = "regex-2024.7.24-cp38-cp38-win32.whl", hash = "sha256:d0a07763776188b4db4c9c7fb1b8c494049f84659bb387b71c73bbc07f189e96"}, - {file = "regex-2024.7.24-cp38-cp38-win_amd64.whl", hash = "sha256:8fd5afd101dcf86a270d254364e0e8dddedebe6bd1ab9d5f732f274fa00499a5"}, - {file = "regex-2024.7.24-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0ffe3f9d430cd37d8fa5632ff6fb36d5b24818c5c986893063b4e5bdb84cdf24"}, - {file = "regex-2024.7.24-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:25419b70ba00a16abc90ee5fce061228206173231f004437730b67ac77323f0d"}, - {file = "regex-2024.7.24-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:33e2614a7ce627f0cdf2ad104797d1f68342d967de3695678c0cb84f530709f8"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d33a0021893ede5969876052796165bab6006559ab845fd7b515a30abdd990dc"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04ce29e2c5fedf296b1a1b0acc1724ba93a36fb14031f3abfb7abda2806c1535"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b16582783f44fbca6fcf46f61347340c787d7530d88b4d590a397a47583f31dd"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:836d3cc225b3e8a943d0b02633fb2f28a66e281290302a79df0e1eaa984ff7c1"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:438d9f0f4bc64e8dea78274caa5af971ceff0f8771e1a2333620969936ba10be"}, - {file = "regex-2024.7.24-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:973335b1624859cb0e52f96062a28aa18f3a5fc77a96e4a3d6d76e29811a0e6e"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c5e69fd3eb0b409432b537fe3c6f44ac089c458ab6b78dcec14478422879ec5f"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:fbf8c2f00904eaf63ff37718eb13acf8e178cb940520e47b2f05027f5bb34ce3"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2757ace61bc4061b69af19e4689fa4416e1a04840f33b441034202b5cd02d4"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:44fc61b99035fd9b3b9453f1713234e5a7c92a04f3577252b45feefe1b327759"}, - {file = "regex-2024.7.24-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:84c312cdf839e8b579f504afcd7b65f35d60b6285d892b19adea16355e8343c9"}, - {file = "regex-2024.7.24-cp39-cp39-win32.whl", hash = "sha256:ca5b2028c2f7af4e13fb9fc29b28d0ce767c38c7facdf64f6c2cd040413055f1"}, - {file = "regex-2024.7.24-cp39-cp39-win_amd64.whl", hash = "sha256:7c479f5ae937ec9985ecaf42e2e10631551d909f203e31308c12d703922742f9"}, - {file = "regex-2024.7.24.tar.gz", hash = "sha256:9cfd009eed1a46b27c14039ad5bbc5e71b6367c5b2e6d5f5da0ea91600817506"}, + {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a81e3cfbae20378d75185171587cbf756015ccb14840702944f014e0d93ea09f"}, + {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7b59138b219ffa8979013be7bc85bb60c6f7b7575df3d56dc1e403a438c7a3f6"}, + {file = "regex-2024.5.15-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0bd000c6e266927cb7a1bc39d55be95c4b4f65c5be53e659537537e019232b1"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5eaa7ddaf517aa095fa8da0b5015c44d03da83f5bd49c87961e3c997daed0de7"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba68168daedb2c0bab7fd7e00ced5ba90aebf91024dea3c88ad5063c2a562cca"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6e8d717bca3a6e2064fc3a08df5cbe366369f4b052dcd21b7416e6d71620dca1"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1337b7dbef9b2f71121cdbf1e97e40de33ff114801263b275aafd75303bd62b5"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9ebd0a36102fcad2f03696e8af4ae682793a5d30b46c647eaf280d6cfb32796"}, + {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9efa1a32ad3a3ea112224897cdaeb6aa00381627f567179c0314f7b65d354c62"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1595f2d10dff3d805e054ebdc41c124753631b6a471b976963c7b28543cf13b0"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b802512f3e1f480f41ab5f2cfc0e2f761f08a1f41092d6718868082fc0d27143"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:a0981022dccabca811e8171f913de05720590c915b033b7e601f35ce4ea7019f"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:19068a6a79cf99a19ccefa44610491e9ca02c2be3305c7760d3831d38a467a6f"}, + {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1b5269484f6126eee5e687785e83c6b60aad7663dafe842b34691157e5083e53"}, + {file = "regex-2024.5.15-cp310-cp310-win32.whl", hash = "sha256:ada150c5adfa8fbcbf321c30c751dc67d2f12f15bd183ffe4ec7cde351d945b3"}, + {file = "regex-2024.5.15-cp310-cp310-win_amd64.whl", hash = "sha256:ac394ff680fc46b97487941f5e6ae49a9f30ea41c6c6804832063f14b2a5a145"}, + {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f5b1dff3ad008dccf18e652283f5e5339d70bf8ba7c98bf848ac33db10f7bc7a"}, + {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c6a2b494a76983df8e3d3feea9b9ffdd558b247e60b92f877f93a1ff43d26656"}, + {file = "regex-2024.5.15-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a32b96f15c8ab2e7d27655969a23895eb799de3665fa94349f3b2fbfd547236f"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10002e86e6068d9e1c91eae8295ef690f02f913c57db120b58fdd35a6bb1af35"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec54d5afa89c19c6dd8541a133be51ee1017a38b412b1321ccb8d6ddbeb4cf7d"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10e4ce0dca9ae7a66e6089bb29355d4432caed736acae36fef0fdd7879f0b0cb"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e507ff1e74373c4d3038195fdd2af30d297b4f0950eeda6f515ae3d84a1770f"}, + {file = "regex-2024.5.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d1f059a4d795e646e1c37665b9d06062c62d0e8cc3c511fe01315973a6542e40"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0721931ad5fe0dda45d07f9820b90b2148ccdd8e45bb9e9b42a146cb4f695649"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:833616ddc75ad595dee848ad984d067f2f31be645d603e4d158bba656bbf516c"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:287eb7f54fc81546346207c533ad3c2c51a8d61075127d7f6d79aaf96cdee890"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:19dfb1c504781a136a80ecd1fff9f16dddf5bb43cec6871778c8a907a085bb3d"}, + {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:119af6e56dce35e8dfb5222573b50c89e5508d94d55713c75126b753f834de68"}, + {file = "regex-2024.5.15-cp311-cp311-win32.whl", hash = "sha256:1c1c174d6ec38d6c8a7504087358ce9213d4332f6293a94fbf5249992ba54efa"}, + {file = "regex-2024.5.15-cp311-cp311-win_amd64.whl", hash = "sha256:9e717956dcfd656f5055cc70996ee2cc82ac5149517fc8e1b60261b907740201"}, + {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:632b01153e5248c134007209b5c6348a544ce96c46005d8456de1d552455b014"}, + {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e64198f6b856d48192bf921421fdd8ad8eb35e179086e99e99f711957ffedd6e"}, + {file = "regex-2024.5.15-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68811ab14087b2f6e0fc0c2bae9ad689ea3584cad6917fc57be6a48bbd012c49"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8ec0c2fea1e886a19c3bee0cd19d862b3aa75dcdfb42ebe8ed30708df64687a"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d0c0c0003c10f54a591d220997dd27d953cd9ccc1a7294b40a4be5312be8797b"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2431b9e263af1953c55abbd3e2efca67ca80a3de8a0437cb58e2421f8184717a"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a605586358893b483976cffc1723fb0f83e526e8f14c6e6614e75919d9862cf"}, + {file = "regex-2024.5.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:391d7f7f1e409d192dba8bcd42d3e4cf9e598f3979cdaed6ab11288da88cb9f2"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9ff11639a8d98969c863d4617595eb5425fd12f7c5ef6621a4b74b71ed8726d5"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4eee78a04e6c67e8391edd4dad3279828dd66ac4b79570ec998e2155d2e59fd5"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8fe45aa3f4aa57faabbc9cb46a93363edd6197cbc43523daea044e9ff2fea83e"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:d0a3d8d6acf0c78a1fff0e210d224b821081330b8524e3e2bc5a68ef6ab5803d"}, + {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c486b4106066d502495b3025a0a7251bf37ea9540433940a23419461ab9f2a80"}, + {file = "regex-2024.5.15-cp312-cp312-win32.whl", hash = "sha256:c49e15eac7c149f3670b3e27f1f28a2c1ddeccd3a2812cba953e01be2ab9b5fe"}, + {file = "regex-2024.5.15-cp312-cp312-win_amd64.whl", hash = "sha256:673b5a6da4557b975c6c90198588181029c60793835ce02f497ea817ff647cb2"}, + {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:87e2a9c29e672fc65523fb47a90d429b70ef72b901b4e4b1bd42387caf0d6835"}, + {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c3bea0ba8b73b71b37ac833a7f3fd53825924165da6a924aec78c13032f20850"}, + {file = "regex-2024.5.15-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bfc4f82cabe54f1e7f206fd3d30fda143f84a63fe7d64a81558d6e5f2e5aaba9"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5bb9425fe881d578aeca0b2b4b3d314ec88738706f66f219c194d67179337cb"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64c65783e96e563103d641760664125e91bd85d8e49566ee560ded4da0d3e704"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf2430df4148b08fb4324b848672514b1385ae3807651f3567871f130a728cc3"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5397de3219a8b08ae9540c48f602996aa6b0b65d5a61683e233af8605c42b0f2"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:455705d34b4154a80ead722f4f185b04c4237e8e8e33f265cd0798d0e44825fa"}, + {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2b6f1b3bb6f640c1a92be3bbfbcb18657b125b99ecf141fb3310b5282c7d4ed"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:3ad070b823ca5890cab606c940522d05d3d22395d432f4aaaf9d5b1653e47ced"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5b5467acbfc153847d5adb21e21e29847bcb5870e65c94c9206d20eb4e99a384"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:e6662686aeb633ad65be2a42b4cb00178b3fbf7b91878f9446075c404ada552f"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:2b4c884767504c0e2401babe8b5b7aea9148680d2e157fa28f01529d1f7fcf67"}, + {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3cd7874d57f13bf70078f1ff02b8b0aa48d5b9ed25fc48547516c6aba36f5741"}, + {file = "regex-2024.5.15-cp38-cp38-win32.whl", hash = "sha256:e4682f5ba31f475d58884045c1a97a860a007d44938c4c0895f41d64481edbc9"}, + {file = "regex-2024.5.15-cp38-cp38-win_amd64.whl", hash = "sha256:d99ceffa25ac45d150e30bd9ed14ec6039f2aad0ffa6bb87a5936f5782fc1569"}, + {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:13cdaf31bed30a1e1c2453ef6015aa0983e1366fad2667657dbcac7b02f67133"}, + {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cac27dcaa821ca271855a32188aa61d12decb6fe45ffe3e722401fe61e323cd1"}, + {file = "regex-2024.5.15-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7dbe2467273b875ea2de38ded4eba86cbcbc9a1a6d0aa11dcf7bd2e67859c435"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64f18a9a3513a99c4bef0e3efd4c4a5b11228b48aa80743be822b71e132ae4f5"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d347a741ea871c2e278fde6c48f85136c96b8659b632fb57a7d1ce1872547600"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1878b8301ed011704aea4c806a3cadbd76f84dece1ec09cc9e4dc934cfa5d4da"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4babf07ad476aaf7830d77000874d7611704a7fcf68c9c2ad151f5d94ae4bfc4"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35cb514e137cb3488bce23352af3e12fb0dbedd1ee6e60da053c69fb1b29cc6c"}, + {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cdd09d47c0b2efee9378679f8510ee6955d329424c659ab3c5e3a6edea696294"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:72d7a99cd6b8f958e85fc6ca5b37c4303294954eac1376535b03c2a43eb72629"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:a094801d379ab20c2135529948cb84d417a2169b9bdceda2a36f5f10977ebc16"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c0c18345010870e58238790a6779a1219b4d97bd2e77e1140e8ee5d14df071aa"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:16093f563098448ff6b1fa68170e4acbef94e6b6a4e25e10eae8598bb1694b5d"}, + {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e38a7d4e8f633a33b4c7350fbd8bad3b70bf81439ac67ac38916c4a86b465456"}, + {file = "regex-2024.5.15-cp39-cp39-win32.whl", hash = "sha256:71a455a3c584a88f654b64feccc1e25876066c4f5ef26cd6dd711308aa538694"}, + {file = "regex-2024.5.15-cp39-cp39-win_amd64.whl", hash = "sha256:cab12877a9bdafde5500206d1020a584355a97884dfd388af3699e9137bf7388"}, + {file = "regex-2024.5.15.tar.gz", hash = "sha256:d3ee02d9e5f482cc8309134a91eeaacbdd2261ba111b0fef3748eeb4913e6a2c"}, ] [[package]] @@ -3825,114 +3848,110 @@ py = ">=1.4.26,<2.0.0" [[package]] name = "rpds-py" -version = "0.20.0" +version = "0.18.1" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, - {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, - {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, - {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, - {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, - {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, - {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, - {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, - {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, - {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, - {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, - {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, - {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, - {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, - {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, - {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, - {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, - {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, - {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, - {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, - {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, - {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, - {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, - {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, - {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, - {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, - {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, - {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, - {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, - {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, - {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, - {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, - {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, - {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, + {file = "rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:d31dea506d718693b6b2cffc0648a8929bdc51c70a311b2770f09611caa10d53"}, + {file = "rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:732672fbc449bab754e0b15356c077cc31566df874964d4801ab14f71951ea80"}, + {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a98a1f0552b5f227a3d6422dbd61bc6f30db170939bd87ed14f3c339aa6c7c9"}, + {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f1944ce16401aad1e3f7d312247b3d5de7981f634dc9dfe90da72b87d37887d"}, + {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38e14fb4e370885c4ecd734f093a2225ee52dc384b86fa55fe3f74638b2cfb09"}, + {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08d74b184f9ab6289b87b19fe6a6d1a97fbfea84b8a3e745e87a5de3029bf944"}, + {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d70129cef4a8d979caa37e7fe957202e7eee8ea02c5e16455bc9808a59c6b2f0"}, + {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ce0bb20e3a11bd04461324a6a798af34d503f8d6f1aa3d2aa8901ceaf039176d"}, + {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:81c5196a790032e0fc2464c0b4ab95f8610f96f1f2fa3d4deacce6a79852da60"}, + {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:f3027be483868c99b4985fda802a57a67fdf30c5d9a50338d9db646d590198da"}, + {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d44607f98caa2961bab4fa3c4309724b185b464cdc3ba6f3d7340bac3ec97cc1"}, + {file = "rpds_py-0.18.1-cp310-none-win32.whl", hash = "sha256:c273e795e7a0f1fddd46e1e3cb8be15634c29ae8ff31c196debb620e1edb9333"}, + {file = "rpds_py-0.18.1-cp310-none-win_amd64.whl", hash = "sha256:8352f48d511de5f973e4f2f9412736d7dea76c69faa6d36bcf885b50c758ab9a"}, + {file = "rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6b5ff7e1d63a8281654b5e2896d7f08799378e594f09cf3674e832ecaf396ce8"}, + {file = "rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8927638a4d4137a289e41d0fd631551e89fa346d6dbcfc31ad627557d03ceb6d"}, + {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:154bf5c93d79558b44e5b50cc354aa0459e518e83677791e6adb0b039b7aa6a7"}, + {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07f2139741e5deb2c5154a7b9629bc5aa48c766b643c1a6750d16f865a82c5fc"}, + {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8c7672e9fba7425f79019db9945b16e308ed8bc89348c23d955c8c0540da0a07"}, + {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:489bdfe1abd0406eba6b3bb4fdc87c7fa40f1031de073d0cfb744634cc8fa261"}, + {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c20f05e8e3d4fc76875fc9cb8cf24b90a63f5a1b4c5b9273f0e8225e169b100"}, + {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:967342e045564cef76dfcf1edb700b1e20838d83b1aa02ab313e6a497cf923b8"}, + {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2cc7c1a47f3a63282ab0f422d90ddac4aa3034e39fc66a559ab93041e6505da7"}, + {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f7afbfee1157e0f9376c00bb232e80a60e59ed716e3211a80cb8506550671e6e"}, + {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e6934d70dc50f9f8ea47081ceafdec09245fd9f6032669c3b45705dea096b88"}, + {file = "rpds_py-0.18.1-cp311-none-win32.whl", hash = "sha256:c69882964516dc143083d3795cb508e806b09fc3800fd0d4cddc1df6c36e76bb"}, + {file = "rpds_py-0.18.1-cp311-none-win_amd64.whl", hash = "sha256:70a838f7754483bcdc830444952fd89645569e7452e3226de4a613a4c1793fb2"}, + {file = "rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3dd3cd86e1db5aadd334e011eba4e29d37a104b403e8ca24dcd6703c68ca55b3"}, + {file = "rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:05f3d615099bd9b13ecf2fc9cf2d839ad3f20239c678f461c753e93755d629ee"}, + {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35b2b771b13eee8729a5049c976197ff58a27a3829c018a04341bcf1ae409b2b"}, + {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ee17cd26b97d537af8f33635ef38be873073d516fd425e80559f4585a7b90c43"}, + {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b646bf655b135ccf4522ed43d6902af37d3f5dbcf0da66c769a2b3938b9d8184"}, + {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19ba472b9606c36716062c023afa2484d1e4220548751bda14f725a7de17b4f6"}, + {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e30ac5e329098903262dc5bdd7e2086e0256aa762cc8b744f9e7bf2a427d3f8"}, + {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d58ad6317d188c43750cb76e9deacf6051d0f884d87dc6518e0280438648a9ac"}, + {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e1735502458621921cee039c47318cb90b51d532c2766593be6207eec53e5c4c"}, + {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f5bab211605d91db0e2995a17b5c6ee5edec1270e46223e513eaa20da20076ac"}, + {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2fc24a329a717f9e2448f8cd1f960f9dac4e45b6224d60734edeb67499bab03a"}, + {file = "rpds_py-0.18.1-cp312-none-win32.whl", hash = "sha256:1805d5901779662d599d0e2e4159d8a82c0b05faa86ef9222bf974572286b2b6"}, + {file = "rpds_py-0.18.1-cp312-none-win_amd64.whl", hash = "sha256:720edcb916df872d80f80a1cc5ea9058300b97721efda8651efcd938a9c70a72"}, + {file = "rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:c827576e2fa017a081346dce87d532a5310241648eb3700af9a571a6e9fc7e74"}, + {file = "rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aa3679e751408d75a0b4d8d26d6647b6d9326f5e35c00a7ccd82b78ef64f65f8"}, + {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0abeee75434e2ee2d142d650d1e54ac1f8b01e6e6abdde8ffd6eeac6e9c38e20"}, + {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed402d6153c5d519a0faf1bb69898e97fb31613b49da27a84a13935ea9164dfc"}, + {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:338dee44b0cef8b70fd2ef54b4e09bb1b97fc6c3a58fea5db6cc083fd9fc2724"}, + {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7750569d9526199c5b97e5a9f8d96a13300950d910cf04a861d96f4273d5b104"}, + {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:607345bd5912aacc0c5a63d45a1f73fef29e697884f7e861094e443187c02be5"}, + {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:207c82978115baa1fd8d706d720b4a4d2b0913df1c78c85ba73fe6c5804505f0"}, + {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6d1e42d2735d437e7e80bab4d78eb2e459af48c0a46e686ea35f690b93db792d"}, + {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5463c47c08630007dc0fe99fb480ea4f34a89712410592380425a9b4e1611d8e"}, + {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:06d218939e1bf2ca50e6b0ec700ffe755e5216a8230ab3e87c059ebb4ea06afc"}, + {file = "rpds_py-0.18.1-cp38-none-win32.whl", hash = "sha256:312fe69b4fe1ffbe76520a7676b1e5ac06ddf7826d764cc10265c3b53f96dbe9"}, + {file = "rpds_py-0.18.1-cp38-none-win_amd64.whl", hash = "sha256:9437ca26784120a279f3137ee080b0e717012c42921eb07861b412340f85bae2"}, + {file = "rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:19e515b78c3fc1039dd7da0a33c28c3154458f947f4dc198d3c72db2b6b5dc93"}, + {file = "rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a7b28c5b066bca9a4eb4e2f2663012debe680f097979d880657f00e1c30875a0"}, + {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:673fdbbf668dd958eff750e500495ef3f611e2ecc209464f661bc82e9838991e"}, + {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d960de62227635d2e61068f42a6cb6aae91a7fe00fca0e3aeed17667c8a34611"}, + {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:352a88dc7892f1da66b6027af06a2e7e5d53fe05924cc2cfc56495b586a10b72"}, + {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e0ee01ad8260184db21468a6e1c37afa0529acc12c3a697ee498d3c2c4dcaf3"}, + {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4c39ad2f512b4041343ea3c7894339e4ca7839ac38ca83d68a832fc8b3748ab"}, + {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aaa71ee43a703c321906813bb252f69524f02aa05bf4eec85f0c41d5d62d0f4c"}, + {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6cd8098517c64a85e790657e7b1e509b9fe07487fd358e19431cb120f7d96338"}, + {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:4adec039b8e2928983f885c53b7cc4cda8965b62b6596501a0308d2703f8af1b"}, + {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:32b7daaa3e9389db3695964ce8e566e3413b0c43e3394c05e4b243a4cd7bef26"}, + {file = "rpds_py-0.18.1-cp39-none-win32.whl", hash = "sha256:2625f03b105328729f9450c8badda34d5243231eef6535f80064d57035738360"}, + {file = "rpds_py-0.18.1-cp39-none-win_amd64.whl", hash = "sha256:bf18932d0003c8c4d51a39f244231986ab23ee057d235a12b2684ea26a353590"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cbfbea39ba64f5e53ae2915de36f130588bba71245b418060ec3330ebf85678e"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:a3d456ff2a6a4d2adcdf3c1c960a36f4fd2fec6e3b4902a42a384d17cf4e7a65"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7700936ef9d006b7ef605dc53aa364da2de5a3aa65516a1f3ce73bf82ecfc7ae"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51584acc5916212e1bf45edd17f3a6b05fe0cbb40482d25e619f824dccb679de"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:942695a206a58d2575033ff1e42b12b2aece98d6003c6bc739fbf33d1773b12f"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b906b5f58892813e5ba5c6056d6a5ad08f358ba49f046d910ad992196ea61397"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6f8e3fecca256fefc91bb6765a693d96692459d7d4c644660a9fff32e517843"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7732770412bab81c5a9f6d20aeb60ae943a9b36dcd990d876a773526468e7163"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bd1105b50ede37461c1d51b9698c4f4be6e13e69a908ab7751e3807985fc0346"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:618916f5535784960f3ecf8111581f4ad31d347c3de66d02e728de460a46303c"}, + {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:17c6d2155e2423f7e79e3bb18151c686d40db42d8645e7977442170c360194d4"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c4c4c3f878df21faf5fac86eda32671c27889e13570645a9eea0a1abdd50922"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:fab6ce90574645a0d6c58890e9bcaac8d94dff54fb51c69e5522a7358b80ab64"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:531796fb842b53f2695e94dc338929e9f9dbf473b64710c28af5a160b2a8927d"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:740884bc62a5e2bbb31e584f5d23b32320fd75d79f916f15a788d527a5e83644"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:998125738de0158f088aef3cb264a34251908dd2e5d9966774fdab7402edfab7"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2be6e9dd4111d5b31ba3b74d17da54a8319d8168890fbaea4b9e5c3de630ae5"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0cee71bc618cd93716f3c1bf56653740d2d13ddbd47673efa8bf41435a60daa"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2c3caec4ec5cd1d18e5dd6ae5194d24ed12785212a90b37f5f7f06b8bedd7139"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:27bba383e8c5231cd559affe169ca0b96ec78d39909ffd817f28b166d7ddd4d8"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:a888e8bdb45916234b99da2d859566f1e8a1d2275a801bb8e4a9644e3c7e7909"}, + {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6031b25fb1b06327b43d841f33842b383beba399884f8228a6bb3df3088485ff"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48c2faaa8adfacefcbfdb5f2e2e7bdad081e5ace8d182e5f4ade971f128e6bb3"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d85164315bd68c0806768dc6bb0429c6f95c354f87485ee3593c4f6b14def2bd"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6afd80f6c79893cfc0574956f78a0add8c76e3696f2d6a15bca2c66c415cf2d4"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fa242ac1ff583e4ec7771141606aafc92b361cd90a05c30d93e343a0c2d82a89"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d21be4770ff4e08698e1e8e0bce06edb6ea0626e7c8f560bc08222880aca6a6f"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c45a639e93a0c5d4b788b2613bd637468edd62f8f95ebc6fcc303d58ab3f0a8"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910e71711d1055b2768181efa0a17537b2622afeb0424116619817007f8a2b10"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b9bb1f182a97880f6078283b3505a707057c42bf55d8fca604f70dedfdc0772a"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d54f74f40b1f7aaa595a02ff42ef38ca654b1469bef7d52867da474243cc633"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8d2e182c9ee01135e11e9676e9a62dfad791a7a467738f06726872374a83db49"}, + {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:636a15acc588f70fda1661234761f9ed9ad79ebed3f2125d44be0862708b666e"}, + {file = "rpds_py-0.18.1.tar.gz", hash = "sha256:dc48b479d540770c811fbd1eb9ba2bb66951863e448efec2e2c102625328e92f"}, ] [[package]] @@ -4065,13 +4084,13 @@ paramiko = "*" [[package]] name = "setuptools" -version = "74.0.0" +version = "74.1.2" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-74.0.0-py3-none-any.whl", hash = "sha256:0274581a0037b638b9fc1c6883cc71c0210865aaa76073f7882376b641b84e8f"}, - {file = "setuptools-74.0.0.tar.gz", hash = "sha256:a85e96b8be2b906f3e3e789adec6a9323abf79758ecfa3065bd740d81158b11e"}, + {file = "setuptools-74.1.2-py3-none-any.whl", hash = "sha256:5f4c08aa4d3ebcb57a50c33b1b07e94315d7fc7230f7115e47fc99776c8ce308"}, + {file = "setuptools-74.1.2.tar.gz", hash = "sha256:95b40ed940a1c67eb70fc099094bd6e99c6ee7c23aa2306f4d2697ba7916f9c6"}, ] [package.extras] @@ -4174,13 +4193,13 @@ saml = ["python3-saml (>=1.5.0)"] [[package]] name = "sqlparse" -version = "0.5.1" +version = "0.5.0" description = "A non-validating SQL parser." optional = false python-versions = ">=3.8" files = [ - {file = "sqlparse-0.5.1-py3-none-any.whl", hash = "sha256:773dcbf9a5ab44a090f3441e2180efe2560220203dc2f8c0b0fa141e18b505e4"}, - {file = "sqlparse-0.5.1.tar.gz", hash = "sha256:bb6b4df465655ef332548e24f08e205afc81b9ab86cb1c45657a7ff173a3a00e"}, + {file = "sqlparse-0.5.0-py3-none-any.whl", hash = "sha256:c204494cd97479d0e39f28c93d46c0b2d5959c7b9ab904762ea6c7af211c8663"}, + {file = "sqlparse-0.5.0.tar.gz", hash = "sha256:714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93"}, ] [package.extras] @@ -4284,13 +4303,13 @@ files = [ [[package]] name = "tomlkit" -version = "0.13.2" +version = "0.12.5" description = "Style preserving TOML library" optional = false -python-versions = ">=3.8" +python-versions = ">=3.7" files = [ - {file = "tomlkit-0.13.2-py3-none-any.whl", hash = "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde"}, - {file = "tomlkit-0.13.2.tar.gz", hash = "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79"}, + {file = "tomlkit-0.12.5-py3-none-any.whl", hash = "sha256:af914f5a9c59ed9d0762c7b64d3b5d5df007448eb9cd2edc8a46b1eafead172f"}, + {file = "tomlkit-0.12.5.tar.gz", hash = "sha256:eef34fba39834d4d6b73c9ba7f3e4d1c417a4e56f89a7e96e090dd0d24b8fb3c"}, ] [[package]] @@ -4382,13 +4401,13 @@ docs = ["mkdocs (==1.2.4)", "mkdocs-material (==7.2.2)", "mkdocs-material-extens [[package]] name = "typing-extensions" -version = "4.12.2" +version = "4.12.0" description = "Backported and Experimental Type Hints for Python 3.8+" optional = false python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, - {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, + {file = "typing_extensions-4.12.0-py3-none-any.whl", hash = "sha256:b349c66bea9016ac22978d800cfff206d5f9816951f12a7d0ec5578b0a819594"}, + {file = "typing_extensions-4.12.0.tar.gz", hash = "sha256:8cbcdc8606ebcb0d95453ad7dc5065e6237b6aa230a31e81d0f440c30fed5fd8"}, ] [[package]] @@ -4415,13 +4434,13 @@ files = [ [[package]] name = "urllib3" -version = "1.26.20" +version = "1.26.18" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" files = [ - {file = "urllib3-1.26.20-py2.py3-none-any.whl", hash = "sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e"}, - {file = "urllib3-1.26.20.tar.gz", hash = "sha256:40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32"}, + {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, + {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, ] [package.extras] @@ -4442,46 +4461,43 @@ files = [ [[package]] name = "watchdog" -version = "4.0.2" +version = "4.0.1" description = "Filesystem events monitoring" optional = false python-versions = ">=3.8" files = [ - {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ede7f010f2239b97cc79e6cb3c249e72962404ae3865860855d5cbe708b0fd22"}, - {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a2cffa171445b0efa0726c561eca9a27d00a1f2b83846dbd5a4f639c4f8ca8e1"}, - {file = "watchdog-4.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c50f148b31b03fbadd6d0b5980e38b558046b127dc483e5e4505fcef250f9503"}, - {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7c7d4bf585ad501c5f6c980e7be9c4f15604c7cc150e942d82083b31a7548930"}, - {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:914285126ad0b6eb2258bbbcb7b288d9dfd655ae88fa28945be05a7b475a800b"}, - {file = "watchdog-4.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:984306dc4720da5498b16fc037b36ac443816125a3705dfde4fd90652d8028ef"}, - {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1cdcfd8142f604630deef34722d695fb455d04ab7cfe9963055df1fc69e6727a"}, - {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7ab624ff2f663f98cd03c8b7eedc09375a911794dfea6bf2a359fcc266bff29"}, - {file = "watchdog-4.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:132937547a716027bd5714383dfc40dc66c26769f1ce8a72a859d6a48f371f3a"}, - {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:cd67c7df93eb58f360c43802acc945fa8da70c675b6fa37a241e17ca698ca49b"}, - {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcfd02377be80ef3b6bc4ce481ef3959640458d6feaae0bd43dd90a43da90a7d"}, - {file = "watchdog-4.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:980b71510f59c884d684b3663d46e7a14b457c9611c481e5cef08f4dd022eed7"}, - {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:aa160781cafff2719b663c8a506156e9289d111d80f3387cf3af49cedee1f040"}, - {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f6ee8dedd255087bc7fe82adf046f0b75479b989185fb0bdf9a98b612170eac7"}, - {file = "watchdog-4.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0b4359067d30d5b864e09c8597b112fe0a0a59321a0f331498b013fb097406b4"}, - {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:770eef5372f146997638d737c9a3c597a3b41037cfbc5c41538fc27c09c3a3f9"}, - {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eeea812f38536a0aa859972d50c76e37f4456474b02bd93674d1947cf1e39578"}, - {file = "watchdog-4.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b2c45f6e1e57ebb4687690c05bc3a2c1fb6ab260550c4290b8abb1335e0fd08b"}, - {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:10b6683df70d340ac3279eff0b2766813f00f35a1d37515d2c99959ada8f05fa"}, - {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:f7c739888c20f99824f7aa9d31ac8a97353e22d0c0e54703a547a218f6637eb3"}, - {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c100d09ac72a8a08ddbf0629ddfa0b8ee41740f9051429baa8e31bb903ad7508"}, - {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f5315a8c8dd6dd9425b974515081fc0aadca1d1d61e078d2246509fd756141ee"}, - {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:2d468028a77b42cc685ed694a7a550a8d1771bb05193ba7b24006b8241a571a1"}, - {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f15edcae3830ff20e55d1f4e743e92970c847bcddc8b7509bcd172aa04de506e"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:936acba76d636f70db8f3c66e76aa6cb5136a936fc2a5088b9ce1c7a3508fc83"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_armv7l.whl", hash = "sha256:e252f8ca942a870f38cf785aef420285431311652d871409a64e2a0a52a2174c"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_i686.whl", hash = "sha256:0e83619a2d5d436a7e58a1aea957a3c1ccbf9782c43c0b4fed80580e5e4acd1a"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64.whl", hash = "sha256:88456d65f207b39f1981bf772e473799fcdc10801062c36fd5ad9f9d1d463a73"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:32be97f3b75693a93c683787a87a0dc8db98bb84701539954eef991fb35f5fbc"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_s390x.whl", hash = "sha256:c82253cfc9be68e3e49282831afad2c1f6593af80c0daf1287f6a92657986757"}, - {file = "watchdog-4.0.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:c0b14488bd336c5b1845cee83d3e631a1f8b4e9c5091ec539406e4a324f882d8"}, - {file = "watchdog-4.0.2-py3-none-win32.whl", hash = "sha256:0d8a7e523ef03757a5aa29f591437d64d0d894635f8a50f370fe37f913ce4e19"}, - {file = "watchdog-4.0.2-py3-none-win_amd64.whl", hash = "sha256:c344453ef3bf875a535b0488e3ad28e341adbd5a9ffb0f7d62cefacc8824ef2b"}, - {file = "watchdog-4.0.2-py3-none-win_ia64.whl", hash = "sha256:baececaa8edff42cd16558a639a9b0ddf425f93d892e8392a56bf904f5eff22c"}, - {file = "watchdog-4.0.2.tar.gz", hash = "sha256:b4dfbb6c49221be4535623ea4474a4d6ee0a9cef4a80b20c28db4d858b64e270"}, + {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:da2dfdaa8006eb6a71051795856bedd97e5b03e57da96f98e375682c48850645"}, + {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e93f451f2dfa433d97765ca2634628b789b49ba8b504fdde5837cdcf25fdb53b"}, + {file = "watchdog-4.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ef0107bbb6a55f5be727cfc2ef945d5676b97bffb8425650dadbb184be9f9a2b"}, + {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5"}, + {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767"}, + {file = "watchdog-4.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459"}, + {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175"}, + {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7"}, + {file = "watchdog-4.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28"}, + {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d4925e4bf7b9bddd1c3de13c9b8a2cdb89a468f640e66fbfabaf735bd85b3e35"}, + {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cad0bbd66cd59fc474b4a4376bc5ac3fc698723510cbb64091c2a793b18654db"}, + {file = "watchdog-4.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a3c2c317a8fb53e5b3d25790553796105501a235343f5d2bf23bb8649c2c8709"}, + {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c9904904b6564d4ee8a1ed820db76185a3c96e05560c776c79a6ce5ab71888ba"}, + {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:667f3c579e813fcbad1b784db7a1aaa96524bed53437e119f6a2f5de4db04235"}, + {file = "watchdog-4.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d10a681c9a1d5a77e75c48a3b8e1a9f2ae2928eda463e8d33660437705659682"}, + {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0144c0ea9997b92615af1d94afc0c217e07ce2c14912c7b1a5731776329fcfc7"}, + {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:998d2be6976a0ee3a81fb8e2777900c28641fb5bfbd0c84717d89bca0addcdc5"}, + {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e7921319fe4430b11278d924ef66d4daa469fafb1da679a2e48c935fa27af193"}, + {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f0de0f284248ab40188f23380b03b59126d1479cd59940f2a34f8852db710625"}, + {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bca36be5707e81b9e6ce3208d92d95540d4ca244c006b61511753583c81c70dd"}, + {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:ab998f567ebdf6b1da7dc1e5accfaa7c6992244629c0fdaef062f43249bd8dee"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_i686.whl", hash = "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5"}, + {file = "watchdog-4.0.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84"}, + {file = "watchdog-4.0.1-py3-none-win32.whl", hash = "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429"}, + {file = "watchdog-4.0.1-py3-none-win_amd64.whl", hash = "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a"}, + {file = "watchdog-4.0.1-py3-none-win_ia64.whl", hash = "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d"}, + {file = "watchdog-4.0.1.tar.gz", hash = "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44"}, ] [package.extras] @@ -4500,18 +4516,97 @@ files = [ [[package]] name = "wheel" -version = "0.44.0" +version = "0.43.0" description = "A built-package format for Python" optional = false python-versions = ">=3.8" files = [ - {file = "wheel-0.44.0-py3-none-any.whl", hash = "sha256:2376a90c98cc337d18623527a97c31797bd02bad0033d41547043a1cbfbe448f"}, - {file = "wheel-0.44.0.tar.gz", hash = "sha256:a29c3f2817e95ab89aa4660681ad547c0e9547f20e75b0562fe7723c9a2a9d49"}, + {file = "wheel-0.43.0-py3-none-any.whl", hash = "sha256:55c570405f142630c6b9f72fe09d9b67cf1477fcf543ae5b8dcb1f5b7377da81"}, + {file = "wheel-0.43.0.tar.gz", hash = "sha256:465ef92c69fa5c5da2d1cf8ac40559a8c940886afcef87dcf14b9470862f1d85"}, ] [package.extras] test = ["pytest (>=6.0.0)", "setuptools (>=65)"] +[[package]] +name = "wrapt" +version = "1.16.0" +description = "Module for decorators, wrappers and monkey patching." +optional = false +python-versions = ">=3.6" +files = [ + {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, + {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, + {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440"}, + {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487"}, + {file = "wrapt-1.16.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf"}, + {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72"}, + {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0"}, + {file = "wrapt-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136"}, + {file = "wrapt-1.16.0-cp310-cp310-win32.whl", hash = "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d"}, + {file = "wrapt-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2"}, + {file = "wrapt-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09"}, + {file = "wrapt-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d"}, + {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389"}, + {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060"}, + {file = "wrapt-1.16.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1"}, + {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3"}, + {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956"}, + {file = "wrapt-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d"}, + {file = "wrapt-1.16.0-cp311-cp311-win32.whl", hash = "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362"}, + {file = "wrapt-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89"}, + {file = "wrapt-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b"}, + {file = "wrapt-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36"}, + {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73"}, + {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809"}, + {file = "wrapt-1.16.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b"}, + {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81"}, + {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9"}, + {file = "wrapt-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c"}, + {file = "wrapt-1.16.0-cp312-cp312-win32.whl", hash = "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc"}, + {file = "wrapt-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8"}, + {file = "wrapt-1.16.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8"}, + {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39"}, + {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c"}, + {file = "wrapt-1.16.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40"}, + {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc"}, + {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e"}, + {file = "wrapt-1.16.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465"}, + {file = "wrapt-1.16.0-cp36-cp36m-win32.whl", hash = "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e"}, + {file = "wrapt-1.16.0-cp36-cp36m-win_amd64.whl", hash = "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966"}, + {file = "wrapt-1.16.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593"}, + {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292"}, + {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5"}, + {file = "wrapt-1.16.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf"}, + {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228"}, + {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f"}, + {file = "wrapt-1.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c"}, + {file = "wrapt-1.16.0-cp37-cp37m-win32.whl", hash = "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c"}, + {file = "wrapt-1.16.0-cp37-cp37m-win_amd64.whl", hash = "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00"}, + {file = "wrapt-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0"}, + {file = "wrapt-1.16.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202"}, + {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0"}, + {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e"}, + {file = "wrapt-1.16.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f"}, + {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267"}, + {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca"}, + {file = "wrapt-1.16.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6"}, + {file = "wrapt-1.16.0-cp38-cp38-win32.whl", hash = "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b"}, + {file = "wrapt-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41"}, + {file = "wrapt-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2"}, + {file = "wrapt-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb"}, + {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8"}, + {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c"}, + {file = "wrapt-1.16.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a"}, + {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664"}, + {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f"}, + {file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"}, + {file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"}, + {file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"}, + {file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"}, + {file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"}, +] + [[package]] name = "yamllint" version = "1.35.1" @@ -4546,27 +4641,23 @@ pyyaml = "*" [[package]] name = "zipp" -version = "3.20.1" +version = "3.19.0" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.20.1-py3-none-any.whl", hash = "sha256:9960cd8967c8f85a56f920d5d507274e74f9ff813a0ab8889a5b5be2daf44064"}, - {file = "zipp-3.20.1.tar.gz", hash = "sha256:c22b14cc4763c5a5b04134207736c107db42e9d3ef2d9779d465f5f1bcba572b"}, + {file = "zipp-3.19.0-py3-none-any.whl", hash = "sha256:96dc6ad62f1441bcaccef23b274ec471518daf4fbbc580341204936a5a3dddec"}, + {file = "zipp-3.19.0.tar.gz", hash = "sha256:952df858fb3164426c976d9338d3961e8e8b3758e2e059e0f754b8c4262625ee"}, ] [package.extras] -check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] -cover = ["pytest-cov"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -enabler = ["pytest-enabler (>=2.2)"] -test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] -type = ["pytest-mypy"] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["big-O", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"] [extras] all = [] [metadata] lock-version = "2.0" -python-versions = ">=3.8,<3.12" -content-hash = "a772d56c2dd4de6d60cec3da5e4994d38f8aa130d5aa178c50573b8ee1f0e87d" +python-versions = ">=3.8,<3.13" +content-hash = "9547ef388031cb272ac8172e9f4309324d0a0f79a598913cbf2de4ad69173c1f" diff --git a/pyproject.toml b/pyproject.toml index 5ecc2b71..2e2198b8 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] packages = [ { include = "nautobot_device_onboarding" }, @@ -26,7 +27,7 @@ include = [ ] [tool.poetry.dependencies] -python = ">=3.8,<3.12" +python = ">=3.8,<3.13" napalm = ">=2.5.0, <5" zipp = "^3.4.0" nautobot = "^2.2.3" @@ -67,12 +68,12 @@ all = [ [tool.pylint.master] # Include the pylint_django plugin to avoid spurious warnings about Django patterns -load-plugins="pylint_django, pylint_nautobot" -ignore=".venv" +load-plugins = "pylint_django, pylint_nautobot" +ignore = ".venv" [tool.pylint.basic] # No docstrings required for private methods (Pylint default), or for test_ functions, or for inner Meta classes. -no-docstring-rgx="^(_|test_|Meta$)" +no-docstring-rgx = "^(_|test_|Meta$)" [tool.pylint.messages_control] disable = """, @@ -117,21 +118,21 @@ select = [ ] ignore = [ # warning: `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible. - "D203", # 1 blank line required before class docstring + "D203", # 1 blank line required before class docstring # D212 is enabled by default in google convention, and complains if we have a docstring like: # """ # My docstring is on the line after the opening quotes instead of on the same line as them. # """ # We've discussed and concluded that we consider this to be a valid style choice. - "D212", # Multi-line docstring summary should start at the first line - "D213", # Multi-line docstring summary should start at the second line + "D212", # Multi-line docstring summary should start at the first line + "D213", # Multi-line docstring summary should start at the second line # Produces a lot of issues in the current codebase. - "D401", # First line of docstring should be in imperative mood - "D407", # Missing dashed underline after section - "D416", # Section name ends in colon - "E501", # Line too long + "D401", # First line of docstring should be in imperative mood + "D407", # Missing dashed underline after section + "D416", # Section name ends in colon + "E501", # Line too long ] [tool.ruff.lint.pydocstyle] diff --git a/tasks.py b/tasks.py index 12f761a6..b0dc753e 100644 --- a/tasks.py +++ b/tasks.py @@ -50,7 +50,7 @@ def is_truthy(arg): namespace.configure( { "nautobot_device_onboarding": { - "nautobot_ver": "2.2.3", + "nautobot_ver": "2.3.1", "project_name": "nautobot-device-onboarding", "python_ver": "3.11", "local": False, From 80f2f6420106b446ddffe65c18cda69dc82026da Mon Sep 17 00:00:00 2001 From: Jeff Kala <48843785+jeffkala@users.noreply.github.com> Date: Fri, 11 Oct 2024 10:17:18 -0600 Subject: [PATCH 3/9] multi-RE junos fix (#240) * multi-RE junos fix * junos jpath updates, new unittest for junos EX device * fix incorrect changes * fix file permission * add srx test * more revamps for juniper to not caputure hidden internal interfaces * update more test * fixed 241 --- changes/241.fixed | 1 + docs/user/faq.md | 7 + .../command_mappers/juniper_junos.yml | 32 +- nautobot_device_onboarding/jinja_filters.py | 12 + .../nornir_plays/formatter.py | 2 +- .../command_getter_result_1.json | 117926 ++++++++++++--- .../command_getter_result_2.json | 26716 ++++ .../command_getter_result_3.json | 26088 ++++ .../command_getter_result_4.json | 17541 +++ .../command_getter_result_5.json | 42855 ++++++ .../command_getter_result_6.json | 26918 ++++ .../command_getter_result_7.json | 59676 ++++++++ .../sync_devices/expected_result_1.json | 6 +- .../sync_devices/expected_result_2.json | 7 + .../sync_devices/expected_result_3.json | 7 + .../sync_devices/expected_result_4.json | 7 + .../sync_devices/expected_result_5.json | 7 + .../sync_devices/expected_result_6.json | 7 + .../sync_devices/expected_result_7.json | 7 + .../expected_result_2.json | 1 + .../expected_result_3.json | 1 + .../expected_result_4.json | 1 + .../expected_result_5.json | 1 + .../expected_result_6.json | 1 + .../expected_result_7.json | 1 + .../expected_result_1.json | 1666 +- .../expected_result_2.json | 430 + .../expected_result_3.json | 470 + .../expected_result_4.json | 280 + .../expected_result_5.json | 820 + .../expected_result_6.json | 510 + .../expected_result_7.json | 2170 + .../expected_result_1.json | 1784 +- .../expected_result_2.json | 496 + .../expected_result_3.json | 552 + .../expected_result_4.json | 332 + .../expected_result_5.json | 964 + .../expected_result_6.json | 600 + .../expected_result_7.json | 2600 + .../expected_result_1.json | 3578 +- .../expected_result_2.json | 501 + .../expected_result_3.json | 533 + .../expected_result_4.json | 312 + .../expected_result_5.json | 930 + .../expected_result_6.json | 581 + .../expected_result_7.json | 2585 + 46 files changed, 321497 insertions(+), 19025 deletions(-) create mode 100755 changes/241.fixed create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_2.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_3.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_4.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_5.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_6.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_7.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_2.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_3.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_4.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_5.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_6.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_7.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_2.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_3.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_4.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_5.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_6.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_7.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_2.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_3.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_4.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_5.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_6.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_7.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_2.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_3.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_4.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_5.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_6.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_7.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_2.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_3.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_4.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_5.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_6.json create mode 100755 nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_7.json diff --git a/changes/241.fixed b/changes/241.fixed new file mode 100755 index 00000000..561cc8c0 --- /dev/null +++ b/changes/241.fixed @@ -0,0 +1 @@ +Fixed Multiple RE support to Juniper parsing logic. diff --git a/docs/user/faq.md b/docs/user/faq.md index 6e9af9ba..8ed8a741 100644 --- a/docs/user/faq.md +++ b/docs/user/faq.md @@ -74,3 +74,10 @@ Optional arguments are often used to define a `secret` for Cisco devices and oth ## Why don't I see a webhook generated when a new device is onboarded successfully? It's expected that any changes done asynchronously in Nautobot currently (within a worker) will not generate a webhook. + +## Why should I limit as much as possible the initial job? + +- No access to "all" data, such as config context. +- Several assumptions made for Nornir inventory that would be different in all other Nornir inventory jobs. +- An inventory created for each device. + - Causes additional SQL connections which may benefit from the use of `serial` runner. diff --git a/nautobot_device_onboarding/command_mappers/juniper_junos.yml b/nautobot_device_onboarding/command_mappers/juniper_junos.yml index 74e79ef9..b146f5f3 100755 --- a/nautobot_device_onboarding/command_mappers/juniper_junos.yml +++ b/nautobot_device_onboarding/command_mappers/juniper_junos.yml @@ -2,19 +2,22 @@ sync_devices: hostname: commands: - - command: "show version | display json" + - command: "show system information | display json" parser: "none" - jpath: '"software-information"[]."host-name"[].data' # yamllint disable-line rule:quoted-strings + jpath: '"system-information"[]."host-name"[].data' # yamllint disable-line rule:quoted-strings + post_processor: "{{ obj | unique | first }}" serial: commands: - - command: "show chassis hardware | display json" + - command: "show system information | display json" parser: "none" - jpath: '"chassis-inventory"[]."chassis"[]."serial-number"[].data' # yamllint disable-line rule:quoted-strings + jpath: '"system-information"[]."serial-number"[].data' # yamllint disable-line rule:quoted-strings + post_processor: "{{ obj | unique | first }}" device_type: commands: - - command: "show chassis hardware | display json" + - command: "show system information | display json" parser: "none" - jpath: '"chassis-inventory"[]."chassis"[]."description"[].data' # yamllint disable-line rule:quoted-strings + jpath: '"system-information"[]."hardware-model"[].data' # yamllint disable-line rule:quoted-strings + post_processor: "{{ obj | unique | first | upper }}" mgmt_interface: commands: - command: "show interfaces terse | display json" @@ -23,25 +26,26 @@ sync_devices: post_processor: "{% for entry in obj %}{% if entry['ip'] %}{% for ipaddr in entry['ip'] %}{% if original_host in ipaddr %}{{ entry['name'] | first }}{% endif %}{% endfor %}{% endif %}{% endfor %}" mask_length: commands: - - command: "show route protocol direct | display json" + - command: "show configuration interfaces | display json" parser: "none" - jpath: '"route-information"[]."route-table"[]."rt"[]."rt-destination"[].data' # yamllint disable-line rule:quoted-strings - post_processor: "{% set mask = [] %}{% for ip_route in obj %}{% if ip_route | is_network %}{% if ip_route | ipaddress_network('version') == 4 %}{% if original_host | is_ip_within(ip_route) %}{% set _=mask.append(ip_route.split('/')[1]) %}{% endif %}{% endif %}{% endif %}{% endfor %}{{ mask | unique | first}}" + jpath: "configuration.interfaces.interface[].unit[?family.inet.address[?contains(name, `{{ obj }}`)]][].family.*.address[][].name" + post_processor: "{{ obj[0].split('/')[1] }}" iterable_type: "int" sync_network_data: serial: commands: - - command: "show chassis hardware | display json" + - command: "show system information | display json" parser: "none" - jpath: '"chassis-inventory"[]."chassis"[]."serial-number"[].data' # yamllint disable-line rule:quoted-strings + jpath: '"system-information"[]."serial-number"[].data' # yamllint disable-line rule:quoted-strings + post_processor: "{{ obj | unique | first }}" interfaces: root_key: true commands: - - command: "show interfaces | display json" + - command: "show configuration interfaces | display json" parser: "none" # when root_key=true this extracted value is what becomes interable in keys using __ under `current_key`. - jpath: '"interface-information"[]."physical-interface"[].[name[].data, "logical-interface"[].name[].data][][]' # yamllint disable-line rule:quoted-strings - post_processor: "{% set result={} %}{% for interface in obj %}{{ result.update({interface: {}}) or '' }}{% endfor %}{{ result | tojson }}" + jpath: 'configuration.interfaces.interface[].{name: name, units:unit[].name}' # yamllint disable-line rule:quoted-strings + post_processor: "{{ obj | junos_get_valid_interfaces | tojson }}" interfaces__type: commands: - command: "show interfaces | display json" diff --git a/nautobot_device_onboarding/jinja_filters.py b/nautobot_device_onboarding/jinja_filters.py index 0ffa37ac..17792c8e 100755 --- a/nautobot_device_onboarding/jinja_filters.py +++ b/nautobot_device_onboarding/jinja_filters.py @@ -186,3 +186,15 @@ def parse_junos_ip_address(item): def remove_fqdn(hostname): """Remove the FQDN from the hostname.""" return hostname.split(".")[0] + + +@library.filter +def junos_get_valid_interfaces(interfaces): + """Get valid interfaces from Junos.""" + result = {} + for interface in interfaces: + result[interface['name']] = {} + if interface['units']: + for unit in interface['units']: + result[f"{interface['name']}.{unit}"] = {} + return result diff --git a/nautobot_device_onboarding/nornir_plays/formatter.py b/nautobot_device_onboarding/nornir_plays/formatter.py index c33a6590..d62620e5 100755 --- a/nautobot_device_onboarding/nornir_plays/formatter.py +++ b/nautobot_device_onboarding/nornir_plays/formatter.py @@ -175,7 +175,7 @@ def perform_data_extraction(host, command_info_dict, command_outputs_dict, job_d if len(field_nesting) > 1: # Means there is "anticipated" data nesting `interfaces__mtu` means final data would be # {"Ethernet1/1": {"mtu": }} - for current_key in root_key_pre: + for current_key in root_key_post: # current_key is a single iteration from the root_key extracted value. Typically we want this to be # a list of data that we want to become our nested key. E.g. current_key "Ethernet1/1" # These get passed into the render context for the template render to allow nested jpaths to use diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_1.json b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_1.json index 55674c28..0e33f280 100755 --- a/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_1.json +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_1.json @@ -1,1285 +1,3208 @@ { - "show interfaces routing-instance all terse | display json": {}, - "show version | display json": { - "software-information": [ - { - "host-name": [ - { - "data": "JUNOS-PE1" - } - ], - "product-model": [ - { - "data": "mx10-t" - } - ], - "product-name": [ + "show configuration interfaces | display json": { + "configuration": { + "@": { + "junos:commit-seconds": "1727953847", + "junos:commit-localtime": "2024-10-03 11:10:47 UTC", + "junos:commit-user": "svc-junospace" + }, + "interfaces": { + "interface": [ { - "data": "mx10-t" - } - ], - "junos-version": [ - { - "data": "20.4R3.8" - } - ], - "package-information": [ - { - "name": [ - { - "data": "junos" - } - ], - "comment": [ - { - "data": "JUNOS Base OS boot [20.4R3.8]" + "name": "xe-0/0/0", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae25" } - ] + } }, { - "name": [ - { - "data": "jbase" + "name": "xe-0/0/1", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae19" } + } + }, + { + "name": "xe-0/0/2", + "apply-groups": [ + "ABC-L3VPN" + ], + "flexible-vlan-tagging": [ + null ], - "comment": [ + "unit": [ + { + "name": 2004, + "description": "", + "vlan-id": 2004, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.155.53/30" + } + ] + } + } + }, + { + "name": 2005, + "description": "", + "bandwidth": "150m", + "vlan-id": 2005, + "layer2-policer": { + "output-policer": "POLICE-O-xe-0/0/2.2005" + }, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.155.69/30" + } + ] + } + } + }, + { + "name": 2006, + "description": "", + "bandwidth": "100m", + "vlan-id": 2006, + "layer2-policer": { + "@": { + "inactive": true + }, + "output-policer": "POLICE-O-xe-0/0/2.2006" + }, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.155.73/30" + } + ] + } + } + }, + { + "name": 2007, + "description": "", + "bandwidth": "100m", + "vlan-id": 2007, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.19.97/30" + } + ] + } + } + }, + { + "name": 2008, + "description": "", + "vlan-id": 2008, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.155.45/30" + } + ] + } + } + }, + { + "name": 2011, + "disable": [ + null + ], + "description": "", + "bandwidth": "100m", + "vlan-id": 2011, + "layer2-policer": { + "output-policer": "POLICE-O-xe-0/0/2.2011" + }, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.156.57/30" + } + ] + } + } + }, + { + "name": 2012, + "description": "", + "bandwidth": "100m", + "vlan-id": 2012, + "layer2-policer": { + "output-policer": "POLICE-O-xe-0/0/2.2012" + }, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.156.85/30" + } + ] + } + } + }, + { + "name": 3010, + "description": "", + "vlan-id": 3010, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.18.17/30" + } + ] + } + } + }, + { + "name": 3030, + "description": "", + "vlan-id": 3030, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.19.105/30" + } + ] + } + } + }, + { + "name": 3031, + "description": "", + "vlan-id": 3031, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.36.249/30" + } + ] + } + } + }, { - "data": "JUNOS Base OS Software Suite [20.4R3.8]" + "name": 3032, + "description": "", + "vlan-id": 3032, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.9/30" + } + ] + } + } } ] }, { - "name": [ - { - "data": "jcrypto" + "name": "xe-0/0/3", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae99" } - ], - "comment": [ - { - "data": "JUNOS Crypto Software Suite [20.4R3.8]" - } - ] + } }, { - "name": [ - { - "data": "jpfe" + "name": "xe-0/0/4", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae99" } - ], - "comment": [ + } + }, + { + "name": "xe-0/0/5", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3200, + "description": "", + "vlan-id": 3200, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.32.209/30" + } + ] + } + } + }, { - "data": "JUNOS Packet Forwarding Engine Support (MX80) [20.4R3.8]" + "name": 3201, + "description": "", + "vlan-id": 3201, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-ETC" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.32.217/30" + } + ] + } + } } ] }, { - "name": [ - { - "data": "jdocs" - } - ], - "comment": [ - { - "data": "JUNOS Online Documentation [20.4R3.8]" + "name": "xe-0/0/6", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae8" } - ] + } }, { - "name": [ - { - "data": "jsdn-powerpc" + "name": "xe-0/0/7", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae17" } - ], - "comment": [ - { - "data": "JUNOS SDN Software Suite [20.4R3.8]" + } + }, + { + "name": "xe-0/0/8", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" } - ] + } }, { - "name": [ - { - "data": "jservices-alg" + "name": "xe-0/0/9", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" } - ], - "comment": [ - { - "data": "JUNOS Services Application Level Gateways [20.4R3.8]" + } + }, + { + "name": "xe-1/0/0", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "unit": [ + { + "name": 0, + "description": "", + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.35.113/30" + } + ] + } + } } ] }, { - "name": [ - { - "data": "jservices-cos" - } + "name": "xe-1/0/1", + "apply-groups": [ + "ABC-L3VPN" ], - "comment": [ - { - "data": "JUNOS Services COS [20.4R3.8]" - } + "disable": [ + null ] }, { - "name": [ - { - "data": "jservices-jflow" - } - ], - "comment": [ - { - "data": "JUNOS Services Jflow Container package [20.4R3.8]" + "name": "xe-1/0/2", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae7" } + } + }, + { + "name": "xe-1/0/3", + "disable": [ + null ] }, { - "name": [ - { - "data": "jservices-sfw" - } - ], - "comment": [ - { - "data": "JUNOS Services Stateful Firewall [20.4R3.8]" + "name": "xe-1/0/4", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae5" } - ] + } }, { - "name": [ - { - "data": "jservices-nat" + "name": "xe-1/0/5", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae15" } - ], - "comment": [ - { - "data": "JUNOS Services NAT [20.4R3.8]" + } + }, + { + "name": "xe-1/0/6", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae19" } - ] + } }, { - "name": [ - { - "data": "jservices-rpm" + "name": "xe-1/0/7", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae18" } - ], - "comment": [ - { - "data": "JUNOS Services RPM [20.4R3.8]" + } + }, + { + "name": "xe-1/0/8", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" } - ] + } }, { - "name": [ - { - "data": "jservices-softwire" + "name": "xe-1/0/9", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" } - ], - "comment": [ - { - "data": "JUNOS Services SOFTWIRE [20.4R3.8]" + } + }, + { + "name": "et-2/1/0", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae2" } + } + }, + { + "name": "et-2/3/0", + "disable": [ + null ] }, { - "name": [ - { - "data": "jservices-cpcd" - } - ], - "comment": [ - { - "data": "JUNOS Services Captive Portal and Content Delivery Container package [20.4R3.8]" + "name": "xe-10/0/0", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3001, + "description": "", + "vlan-id": 3001, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.20.57/30" + } + ] + } + } } ] }, { - "name": [ - { - "data": "jmacsec" - } - ], - "comment": [ - { - "data": "JUNOS Macsec Software Suite [20.4R3.8]" + "name": "xe-10/0/1", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3004, + "description": "", + "vlan-id": 3004, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-EXTRANET-IC" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.20.73/30" + } + ] + } + } } ] }, { - "name": [ - { - "data": "jservices-crypto-base" - } - ], - "comment": [ - { - "data": "JUNOS Services Crypto [20.4R3.8]" + "name": "xe-10/0/2", + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 1, + "vlan-id": 1, + "family": { + "inet": [ + null + ] + } } ] }, { - "name": [ - { - "data": "jservices-ipsec" - } + "name": "xe-10/0/3", + "apply-groups": [ + "ABC-L3VPN" ], - "comment": [ - { - "data": "JUNOS Services IPSec [20.4R3.8]" - } + "disable": [ + null ] }, { - "name": [ - { - "data": "jservices-rtcom" - } - ], - "comment": [ - { - "data": "JUNOS Services RTCOM [20.4R3.8]" + "name": "xe-10/0/4", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "mtu": 1522, + "unit": [ + { + "name": 2000, + "description": "", + "vlan-id": 2000, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-INTERNET" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.5.68/31" + } + ] + } + } } ] }, { - "name": [ - { - "data": "jservices-ssl" + "name": "xe-10/0/5", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae25" } - ], - "comment": [ - { - "data": "JUNOS Services SSL [20.4R3.8]" - } - ] + } }, { - "name": [ + "name": "xe-10/0/6", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3200, + "description": "", + "vlan-id": 3200, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.35.121/30" + } + ] + } + } + }, { - "data": "jservices-tcp-log" - } - ], - "comment": [ + "name": 3201, + "description": "", + "vlan-id": 3201, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.35.125/30" + } + ] + } + } + }, + { + "name": 3202, + "description": "", + "vlan-id": 3202, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.35.129/30" + } + ] + } + } + }, + { + "name": 3203, + "description": "", + "vlan-id": 3203, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.35.133/30" + } + ] + } + } + }, + { + "name": 3204, + "description": "", + "vlan-id": 3204, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.35.137/30" + } + ] + } + } + }, + { + "name": 3205, + "description": "", + "vlan-id": 3205, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.35.141/30" + } + ] + } + } + }, + { + "name": 3206, + "description": "", + "vlan-id": 3206, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.38.177/30" + } + ] + } + } + }, { - "data": "JUNOS Services TCP-LOG [20.4R3.8]" + "name": 3207, + "description": "", + "vlan-id": 3207, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.41.1/30" + } + ] + } + } } ] }, { - "name": [ - { - "data": "jcrypto-dp-support" + "name": "xe-10/0/7", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae17" } + } + }, + { + "name": "xe-10/0/8", + "apply-groups": [ + "ABC-L3VPN" ], - "comment": [ - { - "data": "JUNOS DP Crypto Software Software Suite [20.4R3.8]" - } + "disable": [ + null ] }, { - "name": [ - { - "data": "py-base-powerpc" - } + "name": "xe-10/0/9", + "apply-groups": [ + "ABC-L3VPN" ], - "comment": [ - { - "data": "JUNOS py-base-powerpc [20.4R3.8]" - } + "disable": [ + null ] }, { - "name": [ - { - "data": "py-base2-powerpc" - } - ], - "comment": [ - { - "data": "JUNOS py-base2-powerpc [20.4R3.8]" + "name": "xe-10/2/0", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3002, + "description": "", + "vlan-id": 3002, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.20.65/30" + } + ] + } + } } ] }, { - "name": [ + "name": "xe-10/2/1", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3003, + "description": "", + "vlan-id": 3003, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-RTSN" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.20.81/30" + } + ] + } + } + }, { - "data": "py-extensions-powerpc" - } - ], - "comment": [ + "name": 3005, + "description": "", + "vlan-id": 3005, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-GUEST" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.19.249/30" + } + ] + } + } + }, { - "data": "JUNOS py-extensions-powerpc [20.4R3.8]" + "name": 3006, + "description": "", + "vlan-id": 3006, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-IND" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.20.21/30" + } + ] + } + } } ] }, { - "name": [ - { - "data": "py-extensions2-powerpc" - } - ], - "comment": [ - { - "data": "JUNOS py-extensions2-powerpc [20.4R3.8]" + "name": "xe-10/2/2", + "description": "" + }, + { + "name": "xe-10/2/3", + "description": "" + }, + { + "name": "xe-10/2/5", + "description": "", + "mtu": 1522, + "encapsulation": "ethernet-vpls", + "unit": [ + { + "name": 0, + "description": "", + "family": { + "vpls": { + "filter": { + "input": { + "filter-name": "filter_in_xe-10/2/5" + } + } + } + } } ] }, { - "name": [ - { - "data": "jsd" - } + "name": "xe-10/2/6", + "apply-groups": [ + "ABC-L3VPN" ], - "comment": [ + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ { - "data": "JUNOS jsd [powerpc-20.4R3.8-jet-1]" + "name": 3111, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "", + "vlan-id": 3111, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.41.242/29", + "vrrp-group": [ + { + "name": 1, + "virtual-address": [ + "123.65.41.241" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } } ] }, { - "name": [ - { - "data": "jkernel" - } - ], - "comment": [ - { - "data": "JUNOS Kernel Software Suite [20.4R3.8]" + "name": "xe-10/2/7", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae18" } + } + }, + { + "name": "xe-10/2/8", + "disable": [ + null ] }, { - "name": [ - { - "data": "jroute" - } - ], - "comment": [ - { - "data": "JUNOS Routing Software Suite [20.4R3.8]" + "name": "xe-10/2/9", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "mtu": 1522, + "unit": [ + { + "name": 2003, + "description": "", + "vlan-id": 2003, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-INTERNET" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.5.74/31" + } + ] + } + } } ] - } - ] - } - ] - }, - "show chassis hardware | display json": { - "chassis-inventory": [ - { - "attributes": { - "xmlns": "http://xml.juniper.net/junos/20.4R0/junos-chassis" - }, - "chassis": [ + }, { - "attributes": { - "junos:style": "inventory" - }, - "name": [ + "name": "ge-11/0/0", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 2950, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "", + "vlan-id": 2950, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-NETMGMT" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.212.2/26", + "vrrp-group": [ + { + "name": 1, + "virtual-address": [ + "123.65.212.1" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } + }, { - "data": "Chassis" - } - ], - "serial-number": [ + "name": 2951, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "", + "vlan-id": 2951, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "134.248.215.66/28", + "vrrp-group": [ + { + "name": 2, + "virtual-address": [ + "134.248.215.65" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } + }, { - "data": "T9958" - } - ], - "description": [ - { - "data": "MX10-T" - } - ], - "chassis-module": [ - { - "name": [ - { - "data": "Midplane" - } - ], - "version": [ - { - "data": "REV 11" - } - ], - "part-number": [ - { - "data": "711-038213" - } - ], - "serial-number": [ - { - "data": "ABCH3315" - } - ], - "description": [ - { - "data": "MX10-T" - } - ], - "clei-code": [ - { - "data": "IPM8T10BRA" + "name": 2952, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "", + "vlan-id": 2952, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-NETMGMT" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.0.194/29", + "vrrp-group": [ + { + "name": 2, + "virtual-address": [ + "123.65.0.193" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] } + } + }, + { + "name": 2953, + "apply-groups": [ + "PROTO-VRRP" ], - "model-number": [ - { - "data": "CHAS-MX10-T-S" + "description": "", + "vlan-id": 2953, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.132.11/29", + "vrrp-group": [ + { + "name": 4, + "virtual-address": [ + "123.65.132.9" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] } - ] + } }, { - "name": [ - { - "data": "PEM 0" + "name": 2960, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "", + "vlan-id": 2960, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-EXTMGMT" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "124.46.189.130/26", + "vrrp-group": [ + { + "name": 3, + "virtual-address": [ + "124.46.189.129" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] } - ], - "version": [ - { - "data": "Rev 05" + } + } + ] + }, + { + "name": "ge-11/0/1", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae6" + } + } + }, + { + "name": "ge-11/0/2", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "speed": "1g", + "gigether-options": { + "no-auto-negotiation": [ + null + ] + }, + "unit": [ + { + "name": 3001, + "description": "", + "vlan-id": 3001, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.19.82/30" + } + ] } - ], - "part-number": [ - { - "data": "740-028288" + } + } + ] + }, + { + "name": "ge-11/0/3", + "apply-groups": [ + "ABC-L3VPN" + ], + "disable": [ + null + ], + "speed": "1g", + "link-mode": "full-duplex", + "gigether-options": { + "no-auto-negotiation": [ + null + ] + } + }, + { + "name": "ge-11/0/4", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "mtu": 1522, + "unit": [ + { + "name": 900, + "description": "", + "vlan-id": 900, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-PC-ABC" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.21.241/30" + } + ] } - ], - "serial-number": [ - { - "data": "XH07209" + } + }, + { + "name": 902, + "description": "", + "vlan-id": 902, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-PC-DEF" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.22.41/30" + } + ] } - ], - "description": [ - { - "data": "AC Power Entry Module" + } + } + ] + }, + { + "name": "ge-11/0/5", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae10" + } + } + }, + { + "name": "ge-11/0/6", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "speed": "1g", + "link-mode": "full-duplex", + "gigether-options": { + "no-auto-negotiation": [ + null + ] + }, + "unit": [ + { + "name": 2000, + "description": "", + "bandwidth": "180m", + "vlan-id": 2000, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3EXT-SIP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.8.2/30" + } + ] } - ], - "clei-code": [ - { - "data": "COUPAFAEAB" + } + } + ] + }, + { + "name": "ge-11/0/7", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 2000, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "", + "vlan-id": 2000, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3EXT-SIP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "124.22.0.2/28", + "vrrp-group": [ + { + "name": 1, + "virtual-address": [ + "124.22.0.1" + ], + "priority": 128, + "fast-interval": 300, + "accept-data": [ + null + ] + } + ] + } + ] } - ], - "model-number": [ - { - "data": "PWR-MX80-AC-S" + } + } + ] + }, + { + "name": "ge-11/0/8", + "description": "", + "speed": "1g", + "link-mode": "full-duplex" + }, + { + "name": "ge-11/0/9", + "apply-groups": [ + "ABC-L3VPN" + ], + "disable": [ + null + ] + }, + { + "name": "ge-11/1/0", + "gigether-options": { + "no-auto-negotiation": [ + null + ] + } + }, + { + "name": "ge-11/1/1", + "description": "", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae3" + } + } + }, + { + "name": "ge-11/1/2", + "disable": [ + null + ] + }, + { + "name": "ge-11/1/3", + "disable": [ + null + ] + }, + { + "name": "ge-11/1/4", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "speed": "1g", + "gigether-options": { + "no-auto-negotiation": [ + null + ] + }, + "unit": [ + { + "name": 2901, + "description": "", + "vlan-id": 2901, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-PC-ABC" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.19.202/30" + } + ] } - ] + } }, { - "name": [ - { - "data": "PEM 1" - } - ], - "version": [ - { - "data": "Rev 05" + "name": 2902, + "description": "", + "vlan-id": 2902, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-MGMT-MCBU" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.19.210/30" + } + ] } - ], - "part-number": [ - { - "data": "740-028288" + } + }, + { + "name": 3005, + "description": "", + "vlan-id": 3005, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.19.86/30" + } + ] } - ], - "serial-number": [ - { - "data": "1GA74320781" + } + } + ] + }, + { + "name": "ge-11/1/5", + "apply-groups": [ + "ABC-L3VPN" + ], + "disable": [ + null + ] + }, + { + "name": "ge-11/1/6", + "apply-groups": [ + "ABC-L3VPN" + ], + "flexible-vlan-tagging": [ + null + ], + "gigether-options": { + "no-auto-negotiation": [ + null + ] + }, + "unit": [ + { + "name": 3007, + "description": "", + "vlan-id": 3007, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.8.77/30" + } + ] } - ], - "description": [ - { - "data": "AC Power Entry Module" + } + } + ] + }, + { + "name": "ge-11/1/7", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3000, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "", + "vlan-id": 3000, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "124.34.0.2/28", + "vrrp-group": [ + { + "name": 1, + "virtual-address": [ + "124.34.0.1" + ], + "priority": 128, + "fast-interval": 300, + "accept-data": [ + null + ] + } + ] + } + ] } - ], - "clei-code": [ - { - "data": "COUPAFAEAB" + } + } + ] + }, + { + "name": "ge-11/1/8", + "disable": [ + null + ] + }, + { + "name": "ge-11/1/9", + "apply-groups": [ + "ABC-L3VPN" + ], + "disable": [ + null + ] + }, + { + "name": "ae0", + "apply-groups": [ + "MPLS" + ], + "description": "", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.5/31" + } + ] + }, + "mpls": [ + null + ] + } + } + ] + }, + { + "name": "ae1", + "disable": [ + null + ] + }, + { + "name": "ae2", + "apply-groups": [ + "MPLS" + ], + "description": "", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.167/31" + } + ] + }, + "mpls": [ + null + ] + } + } + ] + }, + { + "name": "ae3", + "apply-groups": [ + "MPLS" + ], + "description": "", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "", + "bandwidth": "1g", + "family": { + "inet": { + "address": [ + { + "name": "123.65.228.27/31" + } + ] } - ], - "model-number": [ - { - "data": "PWR-MX80-AC-S" + } + } + ] + }, + { + "name": "ae5", + "apply-groups": [ + "MPLS" + ], + "description": "", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.127/31" + } + ] + }, + "mpls": [ + null + ] + } + } + ] + }, + { + "name": "ae6", + "apply-groups": [ + "MPLS" + ], + "description": "", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "", + "bandwidth": "200m", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.229/31" + } + ] } + } + } + ] + }, + { + "name": "ae7", + "apply-groups": [ + "MPLS" + ], + "description": "", + "aggregated-ether-options": { + "lacp": { + "active": [ + null ] - }, + } + }, + "unit": [ { - "name": [ - { - "data": "Routing Engine" - } - ], - "part-number": [ - { - "data": "BUILTIN" + "name": 0, + "description": "", + "family": { + "inet": { + "address": [ + { + "name": "123.65.229.236/31" + } + ] } - ], - "serial-number": [ - { - "data": "BUILTIN" + } + } + ] + }, + { + "name": "ae8", + "apply-groups": [ + "MPLS" + ], + "description": "", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.123/31" + } + ] } - ], - "description": [ - { - "data": "Routing Engine" + } + } + ] + }, + { + "name": "ae9", + "disable": [ + null + ] + }, + { + "name": "ae10", + "apply-groups": [ + "MPLS" + ], + "description": "", + "aggregated-ether-options": { + "@": { + "comment": "/* \"Layer 2 protocols not supported by carrier\" */", + "inactive": true + }, + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "", + "bandwidth": "100m", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.57/31" + } + ] } + } + } + ] + }, + { + "name": "ae15", + "description": "", + "per-unit-scheduler": [ + null + ], + "flexible-vlan-tagging": [ + null + ], + "mtu": 1610, + "aggregated-ether-options": { + "lacp": { + "active": [ + null ] + } + }, + "unit": [ + { + "name": 4000, + "description": "", + "bandwidth": "1g", + "vlan-id": 4000, + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.196/31" + } + ] + }, + "iso": [ + null + ], + "mpls": [ + null + ] + } }, { - "name": [ - { - "data": "TFEB 0" - } - ], - "part-number": [ - { - "data": "BUILTIN" - } - ], - "serial-number": [ - { - "data": "BUILTIN" - } - ], - "description": [ - { - "data": "Forwarding Engine Processor" - } - ], - "chassis-sub-module": [ - { - "name": [ + "name": 4002, + "description": "", + "bandwidth": "200m", + "vlan-id": 4002, + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "QXM 0" + "name": "123.65.229.200/31" } + ] + }, + "iso": [ + null + ], + "mpls": [ + null + ] + } + } + ] + }, + { + "name": "ae17", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 2100, + "description": "", + "vlan-id": 2100, + "family": { + "inet": { + "no-redirects": [ + null ], - "version": [ + "filter": { + "input-list": [ + "ABC-INTERNET" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "REV 07" + "name": "123.65.5.210/29" } + ] + }, + "inet6": { + "no-redirects": [ + null ], - "part-number": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "711-028408" + "name": "2620:16d:ff00:4106::6:5457:1/64" } + ] + } + } + } + ] + }, + { + "name": "ae18", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 3100, + "description": "", + "vlan-id": 3100, + "family": { + "inet": { + "no-redirects": [ + null ], - "serial-number": [ + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "ABCT6963" + "name": "123.65.27.233/29" } + ] + }, + "inet6": { + "no-redirects": [ + null ], - "description": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "MPC QXM" + "name": "2620:16d:ff00:1010::6:5456:1/64" } ] } - ] + } }, { - "name": [ - { - "data": "FPC 0" - } - ], - "part-number": [ - { - "data": "BUILTIN" - } - ], - "serial-number": [ - { - "data": "BUILTIN" - } - ], - "description": [ - { - "data": "MPC BUILTIN" + "name": 3101, + "description": "", + "vlan-id": 3101, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.27.241/29" + } + ] + }, + "inet6": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "2620:16d:ff00:1011::6:5456:1/64" + } + ] } - ], - "chassis-sub-module": [ - { - "name": [ + } + }, + { + "name": 3102, + "description": "", + "vlan-id": 3102, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-IND" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "MIC 0" + "name": "123.65.27.249/29" } + ] + }, + "inet6": { + "no-redirects": [ + null ], - "part-number": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "BUILTIN" + "name": "2620:16d:ff00:1012::6:5456:1/64" } + ] + } + } + }, + { + "name": 3103, + "description": "", + "vlan-id": 3103, + "family": { + "inet": { + "no-redirects": [ + null ], - "serial-number": [ + "filter": { + "input-list": [ + "ABC-L3ACME-USER" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "BUILTIN" + "name": "123.65.28.1/29" } + ] + }, + "inet6": { + "no-redirects": [ + null ], - "description": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "4x 10GE XFP" + "name": "2620:16d:ff00:1013::6:5456:1/64" } + ] + } + } + }, + { + "name": 3104, + "description": "", + "vlan-id": 3104, + "family": { + "inet": { + "no-redirects": [ + null ], - "chassis-sub-sub-module": [ + "filter": { + "input-list": [ + "ABC-L3ACME-DEVICES" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "name": [ - { - "data": "PIC 0" - } - ], - "part-number": [ - { - "data": "BUILTIN" - } - ], - "serial-number": [ - { - "data": "BUILTIN" - } - ], - "description": [ - { - "data": "4x 10GE XFP" - } - ], - "chassis-sub-sub-sub-module": [ - { - "name": [ - { - "data": "Xcvr 0" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-033777" - } - ], - "serial-number": [ - { - "data": "US106VG" - } - ], - "description": [ - { - "data": "XFP-10G-SR" - } - ] - }, - { - "name": [ - { - "data": "Xcvr 1" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-031833" - } - ], - "serial-number": [ - { - "data": "USC13PJ" - } - ], - "description": [ - { - "data": "XFP-10G-LR" - } - ] - }, - { - "name": [ - { - "data": "Xcvr 2" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-033777" - } - ], - "serial-number": [ - { - "data": "US106YC" - } - ], - "description": [ - { - "data": "XFP-10G-SR" - } - ] - }, - { - "name": [ - { - "data": "Xcvr 3" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-033777" - } - ], - "serial-number": [ - { - "data": "US80D22" - } - ], - "description": [ - { - "data": "XFP-10G-SR" - } - ] - } - ] + "name": "123.65.28.9/29" + } + ] + }, + "inet6": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "2620:16d:ff00:1014::6:5456:1/64" } ] } - ] + } }, { - "name": [ - { - "data": "FPC 1" - } - ], - "part-number": [ - { - "data": "BUILTIN" - } - ], - "serial-number": [ - { - "data": "BUILTIN" - } - ], - "description": [ - { - "data": "MPC BUILTIN" - } - ], - "chassis-sub-module": [ - { - "name": [ - { - "data": "MIC 0" - } + "name": 3105, + "description": "", + "vlan-id": 3105, + "family": { + "inet": { + "no-redirects": [ + null ], - "version": [ + "filter": { + "input-list": [ + "ABC-L3ACME-RED" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "REV 30" + "name": "123.65.28.17/29" } + ] + }, + "inet6": { + "no-redirects": [ + null ], - "part-number": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "750-028392" + "name": "2620:16d:ff00:1015::6:5456:1/64" } + ] + } + } + }, + { + "name": 3600, + "description": "", + "vlan-id": 3600, + "family": { + "inet": { + "no-redirects": [ + null ], - "serial-number": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "ABCV8313" + "name": "123.65.17.193/30" } - ], - "description": [ + ] + } + } + } + ] + }, + { + "name": "ae19", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "", + "flexible-vlan-tagging": [ + null + ], + "mtu": 1522, + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 2000, + "description": "", + "vlan-id": 2000, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-INTERNET" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "3D 20x 1GE(LAN) SFP" + "name": "123.65.4.0/31" } + ] + }, + "inet6": { + "no-redirects": [ + null ], - "clei-code": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "COUIBCRBAA" + "name": "2620:16d:ff00:40b0::6:5457:1/64" } - ], - "model-number": [ + ] + } + } + }, + { + "name": 2001, + "description": "", + "vlan-id": 2001, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-INTERNET" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "MIC-3D-20GE-SFP" + "name": "123.65.4.4/31" } + ] + }, + "inet6": { + "no-redirects": [ + null ], - "chassis-sub-sub-module": [ - { - "name": [ - { - "data": "PIC 0" - } - ], - "part-number": [ - { - "data": "BUILTIN" - } - ], - "serial-number": [ - { - "data": "BUILTIN" - } - ], - "description": [ - { - "data": "10x 1GE(LAN) SFP" - } - ], - "chassis-sub-sub-sub-module": [ - { - "name": [ - { - "data": "Xcvr 0" - } - ], - "version": [ - { - "data": "REV 02" - } - ], - "part-number": [ - { - "data": "740-013111" - } - ], - "serial-number": [ - { - "data": "C350184" - } - ], - "description": [ - { - "data": "SFP-T" - } - ] - }, - { - "name": [ - { - "data": "Xcvr 9" - } - ], - "version": [ - { - "data": "REV 02" - } - ], - "part-number": [ - { - "data": "740-013111" - } - ], - "serial-number": [ - { - "data": "C411975" - } - ], - "description": [ - { - "data": "SFP-T" - } - ] - } - ] - }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "name": [ - { - "data": "PIC 1" - } - ], - "part-number": [ - { - "data": "BUILTIN" - } - ], - "serial-number": [ - { - "data": "BUILTIN" - } - ], - "description": [ - { - "data": "10x 1GE(LAN) SFP" - } - ], - "chassis-sub-sub-sub-module": [ - { - "name": [ - { - "data": "Xcvr 0" - } - ], - "version": [ - { - "data": "REV 02" - } - ], - "part-number": [ - { - "data": "740-013111" - } - ], - "serial-number": [ - { - "data": "C350850" - } - ], - "description": [ - { - "data": "SFP-T" - } - ] - }, - { - "name": [ - { - "data": "Xcvr 6" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-031850" - } - ], - "serial-number": [ - { - "data": "NS63YB1" - } - ], - "description": [ - { - "data": "SFP-LX10" - } - ] - }, - { - "name": [ - { - "data": "Xcvr 7" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-031850" - } - ], - "serial-number": [ - { - "data": "NS639CT" - } - ], - "description": [ - { - "data": "SFP-LX10" - } - ] - }, - { - "name": [ - { - "data": "Xcvr 8" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-031850" - } - ], - "serial-number": [ - { - "data": "NS63YFV" - } - ], - "description": [ - { - "data": "SFP-LX10" - } - ] - }, - { - "name": [ - { - "data": "Xcvr 9" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-031850" - } - ], - "serial-number": [ - { - "data": "NS639EF" - } - ], - "description": [ - { - "data": "SFP-LX10" - } - ] - } - ] + "name": "2620:16d:ff00:40b1::6:5457:1/64" } ] - }, - { - "name": [ + } + } + }, + { + "name": 2003, + "description": "", + "vlan-id": 2003, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-INTERNET" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "MIC 1" + "name": "123.65.4.96/31" } + ] + }, + "inet6": { + "no-redirects": [ + null ], - "version": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "REV 25" + "name": "2620:16d:ff00:40b2::6:5457:1/64" } + ] + } + } + } + ] + }, + { + "name": "ae25", + "apply-groups": [ + "ABC-L3VPN" + ], + "flexible-vlan-tagging": [ + null + ], + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 2001, + "description": "", + "vlan-id": 2001, + "family": { + "inet": { + "no-redirects": [ + null ], - "part-number": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "750-028380" + "name": "123.65.6.73/29" } + ] + } + } + }, + { + "name": 2002, + "description": "", + "vlan-id": 2002, + "family": { + "inet": { + "no-redirects": [ + null ], - "serial-number": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "ABCY2259" + "name": "123.65.6.161/29" } + ] + } + } + }, + { + "name": 2011, + "description": "", + "vlan-id": 2011, + "family": { + "inet": { + "no-redirects": [ + null ], - "description": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "3D 2x 10GE XFP" + "name": "123.65.6.97/30" } + ] + } + } + }, + { + "name": 3001, + "description": "", + "vlan-id": 3001, + "family": { + "inet": { + "no-redirects": [ + null ], - "clei-code": [ + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "COUIBDXBAA" + "name": "123.65.21.121/30" } + ] + } + } + }, + { + "name": 3007, + "description": "", + "vlan-id": 3007, + "family": { + "inet": { + "no-redirects": [ + null ], - "model-number": [ + "filter": { + "input-list": [ + "ABC-L3ACME-IND" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "MIC-3D-2XGE-XFP" + "name": "123.65.22.229/30" } + ] + } + } + }, + { + "name": 3011, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "", + "vlan-id": 3011, + "family": { + "inet": { + "no-redirects": [ + null ], - "chassis-sub-sub-module": [ + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "name": [ - { - "data": "PIC 2" - } - ], - "part-number": [ - { - "data": "BUILTIN" - } - ], - "serial-number": [ - { - "data": "BUILTIN" - } - ], - "description": [ - { - "data": "1x 10GE XFP" - } - ], - "chassis-sub-sub-sub-module": [ + "name": "123.65.37.250/29", + "vrrp-group": [ { - "name": [ - { - "data": "Xcvr 0" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-031833" - } - ], - "serial-number": [ - { - "data": "USC13CF" - } + "name": 1, + "virtual-address": [ + "123.65.37.249" ], - "description": [ - { - "data": "XFP-10G-LR" - } + "priority": 128, + "accept-data": [ + null ] } ] - }, + } + ] + } + } + }, + { + "name": 3015, + "description": "", + "vlan-id": 3015, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "name": [ - { - "data": "PIC 3" - } - ], - "part-number": [ - { - "data": "BUILTIN" - } - ], - "serial-number": [ - { - "data": "BUILTIN" - } - ], - "description": [ - { - "data": "1x 10GE XFP" - } - ], - "chassis-sub-sub-sub-module": [ - { - "name": [ - { - "data": "Xcvr 0" - } - ], - "version": [ - { - "data": "REV 01" - } - ], - "part-number": [ - { - "data": "740-033777" - } - ], - "serial-number": [ - { - "data": "US80D2Y" - } - ], - "description": [ - { - "data": "XFP-10G-SR" - } - ] - } - ] + "name": "123.65.35.65/30" } ] } - ] + } }, { - "name": [ - { - "data": "Fan Tray" + "name": 3016, + "description": "", + "vlan-id": 3016, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.36.169/30" + } + ] } - ], - "description": [ - { - "data": "Fan Tray" + } + }, + { + "name": 3017, + "description": "", + "vlan-id": 3017, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.28.25/29" + } + ] } - ], - "model-number": [ - { - "data": "FANTRAY-MX80-S" + } + }, + { + "name": 3019, + "description": "", + "vlan-id": 3019, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.40.241/29" + } + ] } - ] + } + }, + { + "name": 3050, + "description": "", + "bandwidth": "300m", + "vlan-id": 3050, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.16.74/30" + } + ] + } + } } ] - } - ] - } - ] - }, - "show interfaces terse | display json": { - "interface-information": [ - { - "attributes": { - "xmlns": "http://xml.juniper.net/junos/20.4R0/junos-interface", - "junos:style": "terse" - }, - "physical-interface": [ + }, { - "name": [ - { - "data": "lc-0/0/0" - } + "name": "ae99", + "description": "", + "per-unit-scheduler": [ + null ], - "admin-status": [ - { - "data": "up" - } + "flexible-vlan-tagging": [ + null ], - "oper-status": [ - { - "data": "up" + "mtu": 1610, + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] } - ], - "logical-interface": [ - { - "name": [ - { - "data": "lc-0/0/0.32769" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "filter-information": [ - {} - ], - "address-family": [ - { - "address-family-name": [ + }, + "unit": [ + { + "name": 4006, + "description": "", + "bandwidth": "1g", + "vlan-id": 4006, + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ { - "data": "vpls" + "name": "123.65.229.59/31" } ] - } - ] + }, + "iso": [ + null + ], + "mpls": [ + null + ] + } } ] }, { - "name": [ - { - "data": "pfe-0/0/0" - } + "name": "irb", + "apply-groups": [ + "ABC-L3VPN" + ], + "unit": [ + { + "name": 222, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.132.43/29" + } + ] + } + } + } + ] + }, + { + "name": "lo0", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "filter": { + "input": { + "filter-name": "ACME-FW-CPP-01" + } + }, + "address": [ + { + "name": "198.51.100.1/32" + } + ] + }, + "iso": { + "address": [ + { + "name": "49.0123.0065.0224.0011.00" + } + ] + }, + "inet6": { + "filter": { + "input": { + "filter-name": "ACME-FW6-CPP-01" + } + } + } + } + } + ] + } + ] + } + } + }, + "show system information | display json": { + "system-information": [ + { + "hardware-model": [ + { + "data": "mx960" + } + ], + "os-name": [ + { + "data": "junos" + } + ], + "os-version": [ + { + "data": "20.4R3.8" + } + ], + "serial-number": [ + { + "data": "JN122E628AFA" + } + ], + "host-name": [ + { + "data": "JUNOS-MX960" + } + ] + } + ] + }, + "show interfaces terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/20.4R0/junos-interface", + "junos:style": "terse" + }, + "physical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } ], "admin-status": [ { @@ -1427,7 +3350,7 @@ { "name": [ { - "data": "xe-0/0/0.0" + "data": "xe-0/0/0.2001" } ], "admin-status": [ @@ -1452,35 +3375,16 @@ ], "ae-bundle-name": [ { - "data": "ae0.0" + "data": "ae25.2001" } ] } ] - } - ] - }, - { - "name": [ - { - "data": "xe-0/0/1" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "logical-interface": [ + }, { "name": [ { - "data": "xe-0/0/1.0" + "data": "xe-0/0/0.2002" } ], "admin-status": [ @@ -1505,35 +3409,16 @@ ], "ae-bundle-name": [ { - "data": "ae14.0" + "data": "ae25.2002" } ] } ] - } - ] - }, - { - "name": [ - { - "data": "xe-0/0/2" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "logical-interface": [ + }, { "name": [ { - "data": "xe-0/0/2.3100" + "data": "xe-0/0/0.2011" } ], "admin-status": [ @@ -1553,26 +3438,12 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } ], - "interface-address": [ - { - "ifa-local": [ - { - "data": "13.65.98.49/30", - "attributes": { - "junos:emit": "emit" - } - } - ] - } - ] - }, - { - "address-family-name": [ + "ae-bundle-name": [ { - "data": "multiservice" + "data": "ae25.2011" } ] } @@ -1581,7 +3452,7 @@ { "name": [ { - "data": "xe-0/0/2.3101" + "data": "xe-0/0/0.3001" } ], "admin-status": [ @@ -1601,26 +3472,46 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } ], - "interface-address": [ + "ae-bundle-name": [ { - "ifa-local": [ - { - "data": "13.65.106.245/30", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "ae25.3001" } ] - }, + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0.3007" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "multiservice" + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3007" } ] } @@ -1629,7 +3520,7 @@ { "name": [ { - "data": "xe-0/0/2.3102" + "data": "xe-0/0/0.3011" } ], "admin-status": [ @@ -1649,26 +3540,46 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } ], - "interface-address": [ + "ae-bundle-name": [ { - "ifa-local": [ - { - "data": "13.65.104.1/30", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "ae25.3011" } ] - }, + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0.3015" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "multiservice" + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3015" } ] } @@ -1677,7 +3588,7 @@ { "name": [ { - "data": "xe-0/0/2.3103" + "data": "xe-0/0/0.3016" } ], "admin-status": [ @@ -1697,26 +3608,46 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } ], - "interface-address": [ + "ae-bundle-name": [ { - "ifa-local": [ - { - "data": "13.65.106.241/30", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "ae25.3016" } ] - }, + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0.3017" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "multiservice" + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3017" } ] } @@ -1725,7 +3656,7 @@ { "name": [ { - "data": "xe-0/0/2.3104" + "data": "xe-0/0/0.3019" } ], "admin-status": [ @@ -1745,26 +3676,46 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } ], - "interface-address": [ + "ae-bundle-name": [ { - "ifa-local": [ - { - "data": "13.65.106.249/30", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "ae25.3019" } ] - }, + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0.3050" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "multiservice" + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3050" } ] } @@ -1773,7 +3724,7 @@ { "name": [ { - "data": "xe-0/0/2.32767" + "data": "xe-0/0/0.32767" } ], "admin-status": [ @@ -1793,7 +3744,12 @@ { "address-family-name": [ { - "data": "multiservice" + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.32767" } ] } @@ -1804,7 +3760,7 @@ { "name": [ { - "data": "xe-0/0/3" + "data": "xe-0/0/1" } ], "admin-status": [ @@ -1821,7 +3777,109 @@ { "name": [ { - "data": "xe-0/0/3.0" + "data": "xe-0/0/1.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2000" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1.2001" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2001" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1.2003" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2003" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1.32767" } ], "admin-status": [ @@ -1841,7 +3899,12 @@ { "address-family-name": [ { - "data": "ccc" + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.32767" } ] } @@ -1852,7 +3915,7 @@ { "name": [ { - "data": "ge-1/0/0" + "data": "xe-0/0/2" } ], "admin-status": [ @@ -1869,7 +3932,7 @@ { "name": [ { - "data": "ge-1/0/0.2950" + "data": "xe-0/0/2.2004" } ], "admin-status": [ @@ -1896,17 +3959,7 @@ { "ifa-local": [ { - "data": "13.65.209.193/28", - "attributes": { - "junos:emit": "emit" - } - } - ] - }, - { - "ifa-local": [ - { - "data": "13.65.209.194/28", + "data": "123.65.155.53/30", "attributes": { "junos:emit": "emit" } @@ -1927,7 +3980,7 @@ { "name": [ { - "data": "ge-1/0/0.2953" + "data": "xe-0/0/2.2005" } ], "admin-status": [ @@ -1954,17 +4007,55 @@ { "ifa-local": [ { - "data": "13.65.145.73/29", + "data": "123.65.155.69/30", "attributes": { "junos:emit": "emit" } } ] - }, + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2006" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ { "ifa-local": [ { - "data": "13.65.145.75/29", + "data": "123.65.155.73/30", "attributes": { "junos:emit": "emit" } @@ -1985,7 +4076,7 @@ { "name": [ { - "data": "ge-1/0/0.32767" + "data": "xe-0/0/2.2007" } ], "admin-status": [ @@ -2002,6 +4093,25 @@ {} ], "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.97/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { "address-family-name": [ { @@ -2010,285 +4120,11 @@ ] } ] - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/1" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/2" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/3" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/4" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/5" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/6" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/7" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/8" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/9" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/0" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/1" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/2" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/3" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/4" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/5" - } - ], - "admin-status": [ - { - "data": "down" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/6" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "logical-interface": [ + }, { "name": [ { - "data": "ge-1/1/6.16386" + "data": "xe-0/0/2.2008" } ], "admin-status": [ @@ -2298,80 +4134,50 @@ ], "oper-status": [ { - "data": "down" + "data": "up" } ], "filter-information": [ {} - ] - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/7" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "ge-1/1/7.16386" - } ], - "admin-status": [ + "address-family": [ { - "data": "up" - } - ], - "oper-status": [ + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.155.45/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": "down" + "address-family-name": [ + { + "data": "multiservice" + } + ] } - ], - "filter-information": [ - {} ] - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/8" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "logical-interface": [ + }, { "name": [ { - "data": "ge-1/1/8.16386" + "data": "xe-0/0/2.2011" } ], "admin-status": [ { - "data": "up" + "data": "down" } ], "oper-status": [ @@ -2381,70 +4187,40 @@ ], "filter-information": [ {} - ] - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/9" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "ge-1/1/9.16386" - } ], - "admin-status": [ + "address-family": [ { - "data": "up" - } - ], - "oper-status": [ + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.156.57/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": "up" + "address-family-name": [ + { + "data": "multiservice" + } + ] } - ], - "filter-information": [ - {} ] - } - ] - }, - { - "name": [ - { - "data": "xe-1/2/0" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "logical-interface": [ + }, { "name": [ { - "data": "xe-1/2/0.0" + "data": "xe-0/0/2.2012" } ], "admin-status": [ @@ -2464,40 +4240,35 @@ { "address-family-name": [ { - "data": "aenet" + "data": "inet" } ], - "ae-bundle-name": [ + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.156.85/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ { - "data": "ae11.0" + "data": "multiservice" } ] } ] - } - ] - }, - { - "name": [ - { - "data": "xe-1/3/0" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "logical-interface": [ + }, { "name": [ { - "data": "xe-1/3/0.0" + "data": "xe-0/0/2.3010" } ], "admin-status": [ @@ -2517,35 +4288,35 @@ { "address-family-name": [ { - "data": "ccc" + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.17/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" } ] } ] - } - ] - }, - { - "name": [ - { - "data": "ae0" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "logical-interface": [ + }, { "name": [ { - "data": "ae0.0" + "data": "xe-0/0/2.3030" } ], "admin-status": [ @@ -2572,7 +4343,7 @@ { "ifa-local": [ { - "data": "13.65.230.30/31", + "data": "123.65.19.105/30", "attributes": { "junos:emit": "emit" } @@ -2584,19 +4355,50 @@ { "address-family-name": [ { - "data": "iso" + "data": "multiservice" } ] - }, + } + ] + }, + { + "name": [ { - "address-family-name": [ - { - "data": "mpls", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "xe-0/0/2.3031" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.36.249/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] }, { "address-family-name": [ @@ -2606,47 +4408,11 @@ ] } ] - } - ] - }, - { - "name": [ - { - "data": "ae3" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "down" - } - ] - }, - { - "name": [ - { - "data": "ae11" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "logical-interface": [ + }, { "name": [ { - "data": "ae11.0" + "data": "xe-0/0/2.3032" } ], "admin-status": [ @@ -2673,7 +4439,7 @@ { "ifa-local": [ { - "data": "13.65.231.109/31", + "data": "123.65.37.9/30", "attributes": { "junos:emit": "emit" } @@ -2685,20 +4451,32 @@ { "address-family-name": [ { - "data": "iso" + "data": "multiservice" } ] - }, + } + ] + }, + { + "name": [ { - "address-family-name": [ - { - "data": "mpls", - "attributes": { - "junos:emit": "emit" - } - } - ] - }, + "data": "xe-0/0/2.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { @@ -2713,7 +4491,7 @@ { "name": [ { - "data": "ae14" + "data": "xe-0/0/3" } ], "admin-status": [ @@ -2730,7 +4508,7 @@ { "name": [ { - "data": "ae14.0" + "data": "xe-0/0/3.4006" } ], "admin-status": [ @@ -2750,43 +4528,46 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } ], - "interface-address": [ + "ae-bundle-name": [ { - "ifa-local": [ - { - "data": "13.65.231.118/31", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "ae99.4006" } ] - }, + } + ] + }, + { + "name": [ { - "address-family-name": [ - { - "data": "iso" - } - ] - }, + "data": "xe-0/0/3.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "mpls", - "attributes": { - "junos:emit": "emit" - } + "data": "aenet" } - ] - }, - { - "address-family-name": [ + ], + "ae-bundle-name": [ { - "data": "multiservice" + "data": "ae99.32767" } ] } @@ -2797,24 +4578,7 @@ { "name": [ { - "data": "cbp0" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ] - }, - { - "name": [ - { - "data": "demux0" + "data": "xe-0/0/4" } ], "admin-status": [ @@ -2826,29 +4590,82 @@ { "data": "up" } - ] - }, - { - "name": [ - { - "data": "dsc" - } ], - "admin-status": [ + "logical-interface": [ { - "data": "up" - } - ], - "oper-status": [ + "name": [ + { + "data": "xe-0/0/4.4006" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.4006" + } + ] + } + ] + }, { - "data": "up" + "name": [ + { + "data": "xe-0/0/4.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.32767" + } + ] + } + ] } ] }, { "name": [ { - "data": "em0" + "data": "xe-0/0/5" } ], "admin-status": [ @@ -2865,7 +4682,7 @@ { "name": [ { - "data": "em0.0" + "data": "xe-0/0/5.3200" } ], "admin-status": [ @@ -2892,27 +4709,7 @@ { "ifa-local": [ { - "data": "10.0.0.4/8", - "attributes": { - "junos:emit": "emit" - } - } - ] - }, - { - "ifa-local": [ - { - "data": "133.4.74.1/2", - "attributes": { - "junos:emit": "emit" - } - } - ] - }, - { - "ifa-local": [ - { - "data": "133.4.74.4/2", + "data": "123.65.32.209/30", "attributes": { "junos:emit": "emit" } @@ -2924,24 +4721,43 @@ { "address-family-name": [ { - "data": "inet6" + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.3201" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" } ], "interface-address": [ { "ifa-local": [ { - "data": "af06:e3b6:61bb:2fc8:9b44:3a70:4d3a:8304/64", - "attributes": { - "junos:emit": "emit" - } - } - ] - }, - { - "ifa-local": [ - { - "data": "af47:43cc:8ad3:722:24ff:168e:79be:a504/64", + "data": "123.65.32.217/30", "attributes": { "junos:emit": "emit" } @@ -2953,19 +4769,36 @@ { "address-family-name": [ { - "data": "tnp" + "data": "multiservice" } - ], - "interface-address": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "ifa-local": [ - { - "data": "0x4", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "multiservice" } ] } @@ -2976,7 +4809,7 @@ { "name": [ { - "data": "em1" + "data": "xe-0/0/6" } ], "admin-status": [ @@ -2986,14 +4819,14 @@ ], "oper-status": [ { - "data": "down" + "data": "up" } ], "logical-interface": [ { "name": [ { - "data": "em1.0" + "data": "xe-0/0/6.0" } ], "admin-status": [ @@ -3003,7 +4836,7 @@ ], "oper-status": [ { - "data": "down" + "data": "up" } ], "filter-information": [ @@ -3013,48 +4846,12 @@ { "address-family-name": [ { - "data": "inet" - } - ], - "interface-address": [ - { - "ifa-local": [ - { - "data": "10.0.0.1/8", - "attributes": { - "junos:emit": "emit" - } - } - ] - }, - { - "ifa-local": [ - { - "data": "133.4.74.1/2", - "attributes": { - "junos:emit": "emit" - } - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "tnp" + "data": "aenet" } ], - "interface-address": [ + "ae-bundle-name": [ { - "ifa-local": [ - { - "data": "0x4", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "ae8.0" } ] } @@ -3065,7 +4862,7 @@ { "name": [ { - "data": "esi" + "data": "xe-0/0/7" } ], "admin-status": [ @@ -3077,29 +4874,82 @@ { "data": "up" } - ] - }, - { - "name": [ - { - "data": "fti0" - } ], - "admin-status": [ + "logical-interface": [ { - "data": "up" - } - ], - "oper-status": [ + "name": [ + { + "data": "xe-0/0/7.2100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.2100" + } + ] + } + ] + }, { - "data": "up" + "name": [ + { + "data": "xe-0/0/7.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.32767" + } + ] + } + ] } ] }, { "name": [ { - "data": "fti1" + "data": "xe-0/0/8" } ], "admin-status": [ @@ -3111,12 +4961,48 @@ { "data": "up" } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } ] }, { "name": [ { - "data": "fti2" + "data": "xe-0/0/9" } ], "admin-status": [ @@ -3128,29 +5014,48 @@ { "data": "up" } - ] - }, - { - "name": [ - { - "data": "fti3" - } ], - "admin-status": [ + "logical-interface": [ { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" + "name": [ + { + "data": "xe-0/0/9.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] } ] }, { "name": [ { - "data": "fti4" + "data": "gr-0/0/10" } ], "admin-status": [ @@ -3167,7 +5072,7 @@ { "name": [ { - "data": "fti5" + "data": "ip-0/0/10" } ], "admin-status": [ @@ -3184,7 +5089,7 @@ { "name": [ { - "data": "fti6" + "data": "lt-0/0/10" } ], "admin-status": [ @@ -3201,7 +5106,7 @@ { "name": [ { - "data": "fti7" + "data": "mt-0/0/10" } ], "admin-status": [ @@ -3218,7 +5123,7 @@ { "name": [ { - "data": "fxp0" + "data": "pd-0/0/10" } ], "admin-status": [ @@ -3230,43 +5135,12 @@ { "data": "up" } - ], - "logical-interface": [ - { - "name": [ - { - "data": "fxp0.0" - } - ], - "admin-status": [ - { - "data": "up" - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "filter-information": [ - {} - ], - "address-family": [ - { - "address-family-name": [ - { - "data": "inet" - } - ] - } - ] - } ] }, { "name": [ { - "data": "gre" + "data": "pe-0/0/10" } ], "admin-status": [ @@ -3283,7 +5157,7 @@ { "name": [ { - "data": "ipip" + "data": "ud-0/0/10" } ], "admin-status": [ @@ -3300,7 +5174,7 @@ { "name": [ { - "data": "irb" + "data": "ut-0/0/10" } ], "admin-status": [ @@ -3317,7 +5191,7 @@ { "name": [ { - "data": "jsrv" + "data": "vt-0/0/10" } ], "admin-status": [ @@ -3334,7 +5208,7 @@ { "name": [ { - "data": "jsrv.1" + "data": "vt-0/0/10.2097664" } ], "admin-status": [ @@ -3356,17 +5230,15 @@ { "data": "inet" } - ], - "interface-address": [ + ] + }, + { + "address-family-name": [ { - "ifa-local": [ - { - "data": "133.4.74.127/2", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } } ] } @@ -3377,7 +5249,7 @@ { "name": [ { - "data": "lo0" + "data": "lc-1/0/0" } ], "admin-status": [ @@ -3394,7 +5266,7 @@ { "name": [ { - "data": "lo0.0" + "data": "lc-1/0/0.32769" } ], "admin-status": [ @@ -3414,43 +5286,55 @@ { "address-family-name": [ { - "data": "inet" - } - ], - "interface-address": [ - { - "ifa-local": [ - { - "data": "198.51.100.1" - } - ], - "ifa-destination": [ - { - "data": "0/0", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "vpls" } ] - }, + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "iso" - } - ], - "interface-address": [ - { - "ifa-local": [ - { - "data": "49.013.0065.0224.0113", - "attributes": { - "junos:emit": "emit" - } - } - ] + "data": "inet" } ] }, @@ -3459,30 +5343,33 @@ { "data": "inet6" } - ], - "interface-address": [ - { - "ifa-local": [ - { - "data": "af06:e3b6:61bb:2fc8:ad6c:c0a1:8292:d9ff" - } - ], - "ifa-destination": [ - { - "attributes": { - "junos:emit": "emit" - } - } - ] - } ] } ] - }, + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ { "name": [ { - "data": "lo0.16384" + "data": "pfh-1/0/0.16383" } ], "admin-status": [ @@ -3504,23 +5391,6 @@ { "data": "inet" } - ], - "interface-address": [ - { - "ifa-local": [ - { - "data": "66.33.236.1" - } - ], - "ifa-destination": [ - { - "data": "0/0", - "attributes": { - "junos:emit": "emit" - } - } - ] - } ] } ] @@ -3528,7 +5398,7 @@ { "name": [ { - "data": "lo0.16385" + "data": "pfh-1/0/0.16384" } ], "admin-status": [ @@ -3559,7 +5429,7 @@ { "name": [ { - "data": "lsi" + "data": "xe-1/0/0" } ], "admin-status": [ @@ -3576,7 +5446,7 @@ { "name": [ { - "data": "lsi.0" + "data": "xe-1/0/0.0" } ], "admin-status": [ @@ -3598,28 +5468,69 @@ { "data": "inet" } - ] - }, - { - "address-family-name": [ + ], + "interface-address": [ { - "data": "iso" + "ifa-local": [ + { + "data": "123.65.35.113/30", + "attributes": { + "junos:emit": "emit" + } + } + ] } ] }, { "address-family-name": [ { - "data": "inet6" + "data": "multiservice" } ] } ] - }, + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/1" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ { "name": [ { - "data": "lsi.1" + "data": "xe-1/0/2.0" } ], "admin-status": [ @@ -3639,30 +5550,57 @@ { "address-family-name": [ { - "data": "inet" - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" + "data": "aenet" } - ] - }, - { - "address-family-name": [ + ], + "ae-bundle-name": [ { - "data": "inet6" + "data": "ae7.0" } ] } ] - }, + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ { "name": [ { - "data": "lsi.2" + "data": "xe-1/0/4.0" } ], "admin-status": [ @@ -3682,21 +5620,65 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } - ] - }, - { - "address-family-name": [ + ], + "ae-bundle-name": [ { - "data": "iso" + "data": "ae5.0" } ] - }, + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/5.4000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "inet6" + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae15.4000" } ] } @@ -3705,7 +5687,7 @@ { "name": [ { - "data": "lsi.3" + "data": "xe-1/0/5.4002" } ], "admin-status": [ @@ -3725,21 +5707,12 @@ { "address-family-name": [ { - "data": "inet" - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" + "data": "aenet" } - ] - }, - { - "address-family-name": [ + ], + "ae-bundle-name": [ { - "data": "inet6" + "data": "ae15.4002" } ] } @@ -3748,7 +5721,7 @@ { "name": [ { - "data": "lsi.4" + "data": "xe-1/0/5.32767" } ], "admin-status": [ @@ -3768,21 +5741,65 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } - ] - }, - { - "address-family-name": [ + ], + "ae-bundle-name": [ { - "data": "iso" + "data": "ae15.32767" } ] - }, + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/6.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "inet6" + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2000" } ] } @@ -3791,7 +5808,7 @@ { "name": [ { - "data": "lsi.5" + "data": "xe-1/0/6.2001" } ], "admin-status": [ @@ -3811,21 +5828,12 @@ { "address-family-name": [ { - "data": "inet" - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" + "data": "aenet" } - ] - }, - { - "address-family-name": [ + ], + "ae-bundle-name": [ { - "data": "inet6" + "data": "ae19.2001" } ] } @@ -3834,7 +5842,7 @@ { "name": [ { - "data": "lsi.6" + "data": "xe-1/0/6.2003" } ], "admin-status": [ @@ -3854,21 +5862,12 @@ { "address-family-name": [ { - "data": "inet" - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" + "data": "aenet" } - ] - }, - { - "address-family-name": [ + ], + "ae-bundle-name": [ { - "data": "inet6" + "data": "ae19.2003" } ] } @@ -3877,7 +5876,7 @@ { "name": [ { - "data": "lsi.7" + "data": "xe-1/0/6.32767" } ], "admin-status": [ @@ -3897,21 +5896,12 @@ { "address-family-name": [ { - "data": "inet" - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" + "data": "aenet" } - ] - }, - { - "address-family-name": [ + ], + "ae-bundle-name": [ { - "data": "inet6" + "data": "ae19.32767" } ] } @@ -3922,7 +5912,7 @@ { "name": [ { - "data": "me0" + "data": "xe-1/0/7" } ], "admin-status": [ @@ -3939,7 +5929,7 @@ { "name": [ { - "data": "me0.0" + "data": "xe-1/0/7.3100" } ], "admin-status": [ @@ -3954,14 +5944,266 @@ ], "filter-information": [ {} - ] + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3100" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3101" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3102" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3103" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3104" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3105" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3105" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3600" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3600" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.32767" + } + ] + } + ] } ] }, { "name": [ { - "data": "mtun" + "data": "xe-1/0/8" } ], "admin-status": [ @@ -3973,12 +6215,48 @@ { "data": "up" } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } ] }, { "name": [ { - "data": "pimd" + "data": "xe-1/0/9" } ], "admin-status": [ @@ -3990,12 +6268,48 @@ { "data": "up" } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/9.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } ] }, { "name": [ { - "data": "pime" + "data": "lc-2/0/0" } ], "admin-status": [ @@ -4007,12 +6321,43 @@ { "data": "up" } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-2/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } ] }, { "name": [ { - "data": "pip0" + "data": "pfe-2/0/0" } ], "admin-status": [ @@ -4024,12 +6369,50 @@ { "data": "up" } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-2/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } ] }, { "name": [ { - "data": "pp0" + "data": "pfh-2/0/0" } ], "admin-status": [ @@ -4041,12 +6424,72 @@ { "data": "up" } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-2/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-2/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } ] }, { "name": [ { - "data": "rbeb" + "data": "xe-2/0/0" } ], "admin-status": [ @@ -4056,14 +6499,36 @@ ], "oper-status": [ { - "data": "up" + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-2/0/0.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] } ] }, { "name": [ { - "data": "tap" + "data": "xe-2/0/1" } ], "admin-status": [ @@ -4073,14 +6538,36 @@ ], "oper-status": [ { - "data": "up" + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-2/0/1.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] } ] }, { "name": [ { - "data": "vtep" + "data": "et-2/1/0" } ], "admin-status": [ @@ -4092,320 +6579,140 @@ { "data": "up" } - ] - } - ] - } - ] - }, - "show route protocol direct | display json": { - "route-information": [ - { - "attributes": { - "xmlns": "http://xml.juniper.net/junos/20.4R0/junos-routing" - }, - "route-table": [ - { - "comment": "keepalive", - "table-name": [ - { - "data": "inet.0" - } ], - "destination-count": [ + "logical-interface": [ { - "data": "305" - } - ], - "total-route-count": [ - { - "data": "305" - } - ], - "active-route-count": [ - { - "data": "297" + "name": [ + { + "data": "et-2/1/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae2.0" + } + ] + } + ] } - ], - "holddown-route-count": [ + ] + }, + { + "name": [ { - "data": "0" + "data": "lc-2/2/0" } ], - "hidden-route-count": [ + "admin-status": [ { - "data": "8" + "data": "up" } ], - "restart-state": [ + "oper-status": [ { - "data": "Complete" + "data": "up" } ], - "rt": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "name": [ { - "data": "198.51.100.1/32" + "data": "lc-2/2/0.32769" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ - { - "data": [ - null - ] - } - ], - "last-active": [ - { - "data": [ - null - ] - } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ - { - "data": "0" - } - ], - "age": [ - { - "data": "74w6d 03:22:53", - "attributes": { - "junos:seconds": "45285773" - } - } - ], - "nh": [ - { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "lo0.0" - } - ] - } - ] + "data": "up" } - ] - }, - { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + ], + "oper-status": [ { - "data": "13.65.231.108/31" + "data": "up" } ], - "rt-entry": [ + "filter-information": [ + {} + ], + "address-family": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ - { - "data": [ - null - ] - } - ], - "last-active": [ - { - "data": [ - null - ] - } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ - { - "data": "0" - } - ], - "age": [ - { - "data": "5d 12:23:33", - "attributes": { - "junos:seconds": "476613" - } - } - ], - "nh": [ + "address-family-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "ae11.0" - } - ] + "data": "vpls" } ] } ] - }, + } + ] + }, + { + "name": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "data": "pfe-2/2/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "13.65.231.118/31" + "data": "pfe-2/2/0.16383" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ - { - "data": [ - null - ] - } - ], - "last-active": [ - { - "data": [ - null - ] - } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ - { - "data": "0" - } - ], - "age": [ - { - "data": "34w0d 10:32:07", - "attributes": { - "junos:seconds": "20601127" - } - } - ], - "nh": [ - { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "ae14.0" - } - ] - } - ] + "data": "up" } - ] - }, - { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + ], + "oper-status": [ { - "data": "13.65.230.30/31" + "data": "up" } ], - "rt-entry": [ + "filter-information": [ + {} + ], + "address-family": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ - { - "data": [ - null - ] - } - ], - "last-active": [ - { - "data": [ - null - ] - } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ - { - "data": "0" - } - ], - "age": [ + "address-family-name": [ { - "data": "74w6d 03:21:29", - "attributes": { - "junos:seconds": "45285689" - } + "data": "inet" } - ], - "nh": [ + ] + }, + { + "address-family-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "ae0.0" - } - ] + "data": "inet6" } ] } @@ -4414,203 +6721,196 @@ ] }, { - "table-name": [ + "name": [ { - "data": "inet.3" + "data": "xe-2/2/0" } ], - "destination-count": [ + "admin-status": [ { - "data": "97" + "data": "up" } ], - "total-route-count": [ + "oper-status": [ { - "data": "97" + "data": "down" } ], - "active-route-count": [ + "logical-interface": [ { - "data": "97" + "name": [ + { + "data": "xe-2/2/0.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "xe-2/2/1" } ], - "holddown-route-count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "hidden-route-count": [ + "oper-status": [ { - "data": "0" + "data": "down" } ], - "restart-state": [ + "logical-interface": [ { - "data": "Complete" + "name": [ + { + "data": "xe-2/2/1.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] } ] }, { - "table-name": [ + "name": [ { - "data": "L32a2f5a-CORP.inet.0" + "data": "et-2/3/0" } ], - "destination-count": [ + "admin-status": [ { - "data": "7298" + "data": "down" } ], - "total-route-count": [ + "oper-status": [ { - "data": "37654" + "data": "down" } - ], - "active-route-count": [ + ] + }, + { + "name": [ { - "data": "7297" + "data": "lc-10/0/0" } ], - "holddown-route-count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "hidden-route-count": [ + "oper-status": [ { - "data": "1" + "data": "up" } ], - "rt": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "name": [ { - "data": "13.65.98.48/30" + "data": "lc-10/0/0.32769" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ - { - "data": [ - null - ] - } - ], - "last-active": [ - { - "data": [ - null - ] - } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ - { - "data": "0" - } - ], - "age": [ - { - "data": "74w6d 03:21:31", - "attributes": { - "junos:seconds": "45285691" - } - } - ], - "nh": [ + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "xe-0/0/2.3100" - } - ] + "data": "vpls" } ] } ] - }, + } + ] + }, + { + "name": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "data": "pfe-10/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "13.65.145.72/29" + "data": "pfe-10/0/0.16383" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ - { - "data": [ - null - ] - } - ], - "last-active": [ - { - "data": [ - null - ] - } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ - { - "data": "0" - } - ], - "age": [ + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "74w6d 03:21:22", - "attributes": { - "junos:seconds": "45285682" - } + "data": "inet" } - ], - "nh": [ + ] + }, + { + "address-family-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "ge-1/0/0.2953" - } - ] + "data": "inet6" } ] } @@ -4619,99 +6919,171 @@ ] }, { - "table-name": [ + "name": [ { - "data": "L32a2f5a-DEVICES.inet.0" + "data": "pfh-10/0/0" } ], - "destination-count": [ + "admin-status": [ { - "data": "724" + "data": "up" } ], - "total-route-count": [ + "oper-status": [ { - "data": "3616" + "data": "up" } ], - "active-route-count": [ + "logical-interface": [ + { + "name": [ + { + "data": "pfh-10/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-10/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ { - "data": "724" + "data": "xe-10/0/0" } ], - "holddown-route-count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "hidden-route-count": [ + "oper-status": [ { - "data": "2" + "data": "up" } ], - "rt": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "name": [ { - "data": "13.65.106.248/30" + "data": "xe-10/0/0.3001" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "last-active": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.20.57/30", + "attributes": { + "junos:emit": "emit" + } + } ] } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ - { - "data": "0" - } - ], - "age": [ + ] + }, + { + "address-family-name": [ { - "data": "74w6d 03:21:31", - "attributes": { - "junos:seconds": "45285691" - } + "data": "multiservice" } - ], - "nh": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/0.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "xe-0/0/2.3104" - } - ] + "data": "multiservice" } ] } @@ -4720,99 +7092,94 @@ ] }, { - "table-name": [ - { - "data": "L32a2f5a-GUEST.inet.0" - } - ], - "destination-count": [ - { - "data": "834" - } - ], - "total-route-count": [ - { - "data": "4246" - } - ], - "active-route-count": [ + "name": [ { - "data": "834" + "data": "xe-10/0/1" } ], - "holddown-route-count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "hidden-route-count": [ + "oper-status": [ { - "data": "3" + "data": "up" } ], - "rt": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "name": [ { - "data": "13.65.106.244/30" + "data": "xe-10/0/1.3004" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "last-active": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.20.73/30", + "attributes": { + "junos:emit": "emit" + } + } ] } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ - { - "data": "0" - } - ], - "age": [ + ] + }, + { + "address-family-name": [ { - "data": "74w6d 03:21:31", - "attributes": { - "junos:seconds": "45285691" - } + "data": "multiservice" } - ], - "nh": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/1.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "xe-0/0/2.3101" - } - ] + "data": "multiservice" } ] } @@ -4821,99 +7188,82 @@ ] }, { - "table-name": [ - { - "data": "L32a2f5a-IND.inet.0" - } - ], - "destination-count": [ - { - "data": "722" - } - ], - "total-route-count": [ - { - "data": "3598" - } - ], - "active-route-count": [ + "name": [ { - "data": "721" + "data": "xe-10/0/2" } ], - "holddown-route-count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "hidden-route-count": [ + "oper-status": [ { - "data": "3" + "data": "up" } ], - "rt": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "name": [ { - "data": "13.65.104.0/30" + "data": "xe-10/0/2.1" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ - { - "data": [ - null - ] - } - ], - "last-active": [ - { - "data": [ - null - ] - } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "0" + "data": "inet" } - ], - "age": [ + ] + }, + { + "address-family-name": [ { - "data": "74w6d 03:21:31", - "attributes": { - "junos:seconds": "45285691" - } + "data": "multiservice" } - ], - "nh": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/2.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "xe-0/0/2.3102" - } - ] + "data": "multiservice" } ] } @@ -4922,99 +7272,111 @@ ] }, { - "table-name": [ + "name": [ { - "data": "L32a2f5a-NETMGMT.inet.0" + "data": "xe-10/0/3" } ], - "destination-count": [ + "admin-status": [ { - "data": "128" + "data": "down" } ], - "total-route-count": [ + "oper-status": [ { - "data": "497" + "data": "down" } - ], - "active-route-count": [ + ] + }, + { + "name": [ { - "data": "128" + "data": "xe-10/0/4" } ], - "holddown-route-count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "hidden-route-count": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "rt": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "name": [ { - "data": "13.65.209.192/28" + "data": "xe-10/0/4.2000" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ - { - "data": "*" - } - ], - "current-active": [ + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "last-active": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.5.68/31", + "attributes": { + "junos:emit": "emit" + } + } ] } - ], - "protocol-name": [ - { - "data": "Direct" - } - ], - "preference": [ - { - "data": "0" - } - ], - "age": [ + ] + }, + { + "address-family-name": [ { - "data": "74w6d 03:21:22", - "attributes": { - "junos:seconds": "45285682" - } + "data": "multiservice" } - ], - "nh": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/4.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "ge-1/0/0.2950" - } - ] + "data": "multiservice" } ] } @@ -5023,1011 +7385,1355 @@ ] }, { - "table-name": [ - { - "data": "L32a2f5a-RED.inet.0" - } - ], - "destination-count": [ - { - "data": "212" - } - ], - "total-route-count": [ - { - "data": "878" - } - ], - "active-route-count": [ - { - "data": "212" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ] - }, - { - "table-name": [ - { - "data": "L32a2f5a-USER.inet.0" - } - ], - "destination-count": [ - { - "data": "797" - } - ], - "total-route-count": [ - { - "data": "4054" - } - ], - "active-route-count": [ + "name": [ { - "data": "797" + "data": "xe-10/0/5" } ], - "holddown-route-count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "hidden-route-count": [ + "oper-status": [ { - "data": "2" + "data": "up" } ], - "rt": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "name": [ { - "data": "13.65.106.240/30" + "data": "xe-10/0/5.2001" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "*" + "data": "aenet" } ], - "current-active": [ + "ae-bundle-name": [ { - "data": [ - null - ] + "data": "ae25.2001" } - ], - "last-active": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.2002" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "aenet" } ], - "protocol-name": [ + "ae-bundle-name": [ { - "data": "Direct" + "data": "ae25.2002" } - ], - "preference": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.2011" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "0" + "data": "aenet" } ], - "age": [ + "ae-bundle-name": [ { - "data": "74w6d 03:21:31", - "attributes": { - "junos:seconds": "45285691" - } + "data": "ae25.2011" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3001" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" } ], - "nh": [ + "ae-bundle-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "xe-0/0/2.3103" - } - ] + "data": "ae25.3001" } ] } ] - } - ] - }, - { - "table-name": [ - { - "data": "iso.0" - } - ], - "destination-count": [ - { - "data": "1" - } - ], - "total-route-count": [ - { - "data": "1" - } - ], - "active-route-count": [ - { - "data": "1" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ], - "restart-state": [ - { - "data": "Complete" - } - ], - "rt": [ + }, { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "name": [ { - "data": "49.013.0065.0224.0113" + "data": "xe-10/0/5.3007" } ], - "rt-prefix-length": [ + "admin-status": [ { - "data": "72", - "attributes": { - "junos:emit": "emit" - } + "data": "up" } ], - "rt-entry": [ + "oper-status": [ { - "active-tag": [ + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "*" + "data": "aenet" } ], - "current-active": [ + "ae-bundle-name": [ { - "data": [ - null - ] + "data": "ae25.3007" } - ], - "last-active": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3011" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "aenet" } ], - "protocol-name": [ + "ae-bundle-name": [ { - "data": "Direct" + "data": "ae25.3011" } - ], - "preference": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3015" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "0" + "data": "aenet" } ], - "age": [ + "ae-bundle-name": [ { - "data": "74w6d 03:22:53", - "attributes": { - "junos:seconds": "45285773" - } + "data": "ae25.3015" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3016" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" } ], - "nh": [ + "ae-bundle-name": [ { - "selected-next-hop": [ - { - "data": [ - null - ] - } - ], - "via": [ - { - "data": "lo0.0" - } - ] + "data": "ae25.3016" } ] } ] - } - ] - }, - { - "table-name": [ - { - "data": "mpls.0" - } - ], - "destination-count": [ + }, { - "data": "1468" - } - ], - "total-route-count": [ + "name": [ + { + "data": "xe-10/0/5.3017" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3017" + } + ] + } + ] + }, { - "data": "1468" - } - ], - "active-route-count": [ - { - "data": "1468" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ], - "restart-state": [ - { - "data": "Complete" - } - ] - }, - { - "table-name": [ - { - "data": "bgp.l3vpn.0" - } - ], - "destination-count": [ - { - "data": "27044" - } - ], - "total-route-count": [ - { - "data": "54088" - } - ], - "active-route-count": [ - { - "data": "27044" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ + "name": [ + { + "data": "xe-10/0/5.3019" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3019" + } + ] + } + ] + }, { - "data": "0" - } - ], - "restart-state": [ + "name": [ + { + "data": "xe-10/0/5.3050" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3050" + } + ] + } + ] + }, { - "data": "Complete" + "name": [ + { + "data": "xe-10/0/5.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.32767" + } + ] + } + ] } ] }, { - "table-name": [ - { - "data": "inet6.0" - } - ], - "destination-count": [ - { - "data": "2" - } - ], - "total-route-count": [ - { - "data": "2" - } - ], - "active-route-count": [ - { - "data": "2" - } - ], - "holddown-route-count": [ + "name": [ { - "data": "0" + "data": "xe-10/0/6" } ], - "hidden-route-count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "restart-state": [ + "oper-status": [ { - "data": "Complete" + "data": "up" } ], - "rt": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "rt-destination": [ + "name": [ { - "data": "af06:e3b6:61bb:2fc8:ad6c:c0a1:8292:d9ff/128", - "attributes": { - "junos:emit": "emit" - } + "data": "xe-10/0/6.3200" } ], - "rt-entry": [ + "admin-status": [ { - "active-tag": [ + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "*" + "data": "inet" } ], - "current-active": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.35.121/30", + "attributes": { + "junos:emit": "emit" + } + } ] } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3201" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } ], - "last-active": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.35.125/30", + "attributes": { + "junos:emit": "emit" + } + } ] } - ], - "protocol-name": [ + ] + }, + { + "address-family-name": [ { - "data": "Direct" + "data": "multiservice" } - ], - "preference": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3202" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "0" + "data": "inet" } ], - "age": [ + "interface-address": [ { - "data": "74w6d 03:22:54", - "attributes": { - "junos:seconds": "45285774" - } + "ifa-local": [ + { + "data": "123.65.35.129/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3203" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" } ], - "nh": [ + "interface-address": [ { - "selected-next-hop": [ + "ifa-local": [ { - "data": [ - null - ] + "data": "123.65.35.133/30", + "attributes": { + "junos:emit": "emit" + } } - ], - "via": [ + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3204" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ { - "data": "lo0.0" + "data": "123.65.35.137/30", + "attributes": { + "junos:emit": "emit" + } } ] } ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ] - }, - { - "table-name": [ - { - "data": "L32a2f5a-COMMSVCS.inet6.0" - } - ], - "destination-count": [ + }, { - "data": "1" - } - ], - "total-route-count": [ + "name": [ + { + "data": "xe-10/0/6.3205" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.141/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, { - "data": "1" - } - ], - "active-route-count": [ + "name": [ + { + "data": "xe-10/0/6.3206" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.38.177/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, { - "data": "1" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ + "name": [ + { + "data": "xe-10/0/6.3207" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.41.1/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, { - "data": "0" + "name": [ + { + "data": "xe-10/0/6.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] } ] }, { - "table-name": [ - { - "data": "L32a2f5a-CORP.inet6.0" - } - ], - "destination-count": [ + "name": [ { - "data": "15" + "data": "xe-10/0/7" } ], - "total-route-count": [ + "admin-status": [ { - "data": "69" + "data": "up" } ], - "active-route-count": [ + "oper-status": [ { - "data": "1" + "data": "up" } ], - "holddown-route-count": [ + "logical-interface": [ { - "data": "0" - } - ], - "hidden-route-count": [ + "name": [ + { + "data": "xe-10/0/7.2100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.2100" + } + ] + } + ] + }, { - "data": "68" + "name": [ + { + "data": "xe-10/0/7.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.32767" + } + ] + } + ] } ] }, { - "table-name": [ + "name": [ { - "data": "L32a2f5a-DEVICES.inet6.0" + "data": "xe-10/0/8" } ], - "destination-count": [ + "admin-status": [ { - "data": "20" + "data": "down" } ], - "total-route-count": [ + "oper-status": [ { - "data": "81" + "data": "down" } - ], - "active-route-count": [ + ] + }, + { + "name": [ { - "data": "1" + "data": "xe-10/0/9" } ], - "holddown-route-count": [ + "admin-status": [ { - "data": "0" + "data": "down" } ], - "hidden-route-count": [ + "oper-status": [ { - "data": "80" + "data": "down" } ] }, { - "table-name": [ - { - "data": "L32a2f5a-GUEST.inet6.0" - } - ], - "destination-count": [ + "name": [ { - "data": "21" + "data": "xe-10/2/0" } ], - "total-route-count": [ + "admin-status": [ { - "data": "85" + "data": "up" } ], - "active-route-count": [ + "oper-status": [ { - "data": "1" + "data": "up" } ], - "holddown-route-count": [ + "logical-interface": [ { - "data": "0" - } - ], - "hidden-route-count": [ + "name": [ + { + "data": "xe-10/2/0.3002" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.20.65/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, { - "data": "84" + "name": [ + { + "data": "xe-10/2/0.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] } ] }, { - "table-name": [ + "name": [ { - "data": "L32a2f5a-IND.inet6.0" + "data": "xe-10/2/1" } ], - "destination-count": [ + "admin-status": [ { - "data": "14" + "data": "up" } ], - "total-route-count": [ + "oper-status": [ { - "data": "65" + "data": "up" } ], - "active-route-count": [ + "logical-interface": [ { - "data": "1" - } - ], - "holddown-route-count": [ + "name": [ + { + "data": "xe-10/2/1.3003" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.20.81/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, { - "data": "0" - } - ], - "hidden-route-count": [ + "name": [ + { + "data": "xe-10/2/1.3005" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.249/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, { - "data": "64" + "name": [ + { + "data": "xe-10/2/1.3006" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.20.21/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/1.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] } ] }, { - "table-name": [ + "name": [ { - "data": "L32a2f5a-NETMGMT.inet6.0" + "data": "xe-10/2/2" } ], - "destination-count": [ + "admin-status": [ { - "data": "1" + "data": "up" } ], - "total-route-count": [ + "oper-status": [ { - "data": "1" + "data": "up" } - ], - "active-route-count": [ + ] + }, + { + "name": [ { - "data": "1" + "data": "xe-10/2/3" } ], - "holddown-route-count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "hidden-route-count": [ + "oper-status": [ { - "data": "0" + "data": "up" } ] }, { - "table-name": [ - { - "data": "L32a2f5a-RED.inet6.0" - } - ], - "destination-count": [ - { - "data": "14" - } - ], - "total-route-count": [ + "name": [ { - "data": "53" + "data": "xe-10/2/4" } ], - "active-route-count": [ + "admin-status": [ { - "data": "1" + "data": "up" } ], - "holddown-route-count": [ + "oper-status": [ { - "data": "0" + "data": "down" } ], - "hidden-route-count": [ - { - "data": "52" - } - ] - }, - { - "table-name": [ + "logical-interface": [ { - "data": "L32a2f5a-USER.inet6.0" - } - ], - "destination-count": [ - { - "data": "14" - } - ], - "total-route-count": [ - { - "data": "65" - } - ], - "active-route-count": [ - { - "data": "1" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "64" - } - ] - }, - { - "table-name": [ - { - "data": "bgp.l2vpn.0" - } - ], - "destination-count": [ - { - "data": "2" - } - ], - "total-route-count": [ - { - "data": "4" - } - ], - "active-route-count": [ - { - "data": "2" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ], - "restart-state": [ - { - "data": "Complete" - } - ] - }, - { - "table-name": [ - { - "data": "DEFPE1-ACME9525PE1.l2vpn.0" - } - ], - "destination-count": [ - { - "data": "2" - } - ], - "total-route-count": [ - { - "data": "3" - } - ], - "active-route-count": [ - { - "data": "2" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ], - "restart-state": [ - { - "data": "Complete" - } - ] - }, - { - "table-name": [ - { - "data": "ABC525PE1-ABCPE1.l2vpn.0" - } - ], - "destination-count": [ - { - "data": "2" - } - ], - "total-route-count": [ - { - "data": "3" - } - ], - "active-route-count": [ - { - "data": "2" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ], - "restart-state": [ - { - "data": "Complete" - } - ] - }, - { - "table-name": [ - { - "data": "bgp.l3vpn-inet6.0" - } - ], - "destination-count": [ - { - "data": "206" - } - ], - "total-route-count": [ - { - "data": "412" - } - ], - "active-route-count": [ - { - "data": "0" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "412" - } - ], - "restart-state": [ - { - "data": "Complete" - } - ] - }, - { - "table-name": [ - { - "data": "bgp.mvpn.0" - } - ], - "destination-count": [ - { - "data": "4" - } - ], - "total-route-count": [ - { - "data": "6" - } - ], - "active-route-count": [ - { - "data": "4" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ], - "restart-state": [ - { - "data": "Complete" - } - ] - }, - { - "table-name": [ - { - "data": "bgp.mvpn-inet6.0" - } - ], - "destination-count": [ - { - "data": "4" - } - ], - "total-route-count": [ - { - "data": "6" - } - ], - "active-route-count": [ - { - "data": "4" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ], - "restart-state": [ - { - "data": "Complete" - } - ] - }, - { - "table-name": [ - { - "data": "DEFPE1-ACME9525PE1.l2id.0" - } - ], - "destination-count": [ - { - "data": "2" - } - ], - "total-route-count": [ - { - "data": "4" - } - ], - "active-route-count": [ - { - "data": "2" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ], - "restart-state": [ - { - "data": "Complete" + "name": [ + { + "data": "xe-10/2/4.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] } ] }, - { - "table-name": [ - { - "data": "ABC525PE1-ABCPE1.l2id.0" - } - ], - "destination-count": [ - { - "data": "2" - } - ], - "total-route-count": [ - { - "data": "4" - } - ], - "active-route-count": [ - { - "data": "2" - } - ], - "holddown-route-count": [ - { - "data": "0" - } - ], - "hidden-route-count": [ - { - "data": "0" - } - ], - "restart-state": [ - { - "data": "Complete" - } - ] - } - ] - } - ] - }, - "show interfaces | display json": { - "interface-information": [ - { - "attributes": { - "xmlns": "http://xml.juniper.net/junos/20.4R0/junos-interface", - "junos:style": "normal" - }, - "physical-interface": [ { "name": [ { - "data": "lc-0/0/0" + "data": "xe-10/2/5" } ], "admin-status": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "up" } ], "oper-status": [ @@ -6035,143 +8741,127 @@ "data": "up" } ], - "local-index": [ - { - "data": "149" - } - ], - "snmp-index": [ - { - "data": "506" - } - ], - "speed": [ - { - "data": "800mbps" - } - ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "xe-10/2/5.0" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + ], + "oper-status": [ { - "data": "0x0" + "data": "up" } - ] - } - ], - "if-config-flags": [ - {} - ], - "if-media-flags": [ - { - "ifmf-none": [ + ], + "filter-information": [ + {} + ], + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "vpls" + } ] } ] } + ] + }, + { + "name": [ + { + "data": "xe-10/2/6" + } ], - "interface-flapped": [ + "admin-status": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "up" } ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "up" } ], "logical-interface": [ { "name": [ { - "data": "lc-0/0/0.32769" + "data": "xe-10/2/6.3111" } ], - "local-index": [ + "admin-status": [ { - "data": "348" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "507" + "data": "up" } ], - "if-config-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "iff-up": [ + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.41.241/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.41.242/29", + "attributes": { + "junos:emit": "emit" + } + } ] } ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } - ], - "encapsulation": [ + ] + }, + { + "name": [ { - "data": "ENET2" + "data": "xe-10/2/6.32767" } ], - "policer-overhead": [ - {} - ], - "logical-interface-bandwidth": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "up" } ], "filter-information": [ @@ -6181,28 +8871,7 @@ { "address-family-name": [ { - "data": "vpls" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "multiservice" } ] } @@ -6213,15 +8882,12 @@ { "name": [ { - "data": "pfe-0/0/0" + "data": "xe-10/2/7" } ], "admin-status": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "up" } ], "oper-status": [ @@ -6229,151 +8895,158 @@ "data": "up" } ], - "local-index": [ - { - "data": "151" - } - ], - "snmp-index": [ - { - "data": "509" - } - ], - "speed": [ - { - "data": "800mbps" - } - ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "xe-10/2/7.3100" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + ], + "oper-status": [ { - "data": "0x0" + "data": "up" } - ] - } - ], - "if-config-flags": [ - {} - ], - "if-media-flags": [ - { - "ifmf-none": [ + ], + "filter-information": [ + {} + ], + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3100" + } ] } ] - } - ], - "interface-flapped": [ - { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } - } - ], - "traffic-statistics": [ + }, { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + "name": [ { - "data": "0" + "data": "xe-10/2/7.3101" } ], - "output-packets": [ + "admin-status": [ { - "data": "0" + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3101" + } + ] } ] - } - ], - "logical-interface": [ + }, { "name": [ { - "data": "pfe-0/0/0.16383" + "data": "xe-10/2/7.3102" } ], - "local-index": [ + "admin-status": [ { - "data": "349" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "510" + "data": "up" } ], - "if-config-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "iff-up": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "aenet" } ], - "iff-snmp-traps": [ + "ae-bundle-name": [ { - "data": [ - null - ] + "data": "ae18.3102" } ] } - ], - "encapsulation": [ + ] + }, + { + "name": [ { - "data": "ENET2" + "data": "xe-10/2/7.3103" } ], - "policer-overhead": [ - {} + "admin-status": [ + { + "data": "up" + } ], - "logical-interface-bandwidth": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "traffic-statistics": [ + "filter-information": [ + {} + ], + "address-family": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + "address-family-name": [ { - "data": "0" + "data": "aenet" } ], - "output-packets": [ + "ae-bundle-name": [ { - "data": "0" + "data": "ae18.3103" } ] } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } ], "filter-information": [ {} @@ -6382,96 +9055,114 @@ { "address-family-name": [ { - "data": "inet" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-none": [ - { - "data": [ - null - ] - } - ] + "data": "ae18.3104" } ] - }, + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.3105" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "inet6" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" + "data": "aenet" } ], - "new-hold-limit": [ + "ae-bundle-name": [ { - "data": "0" + "data": "ae18.3105" } - ], - "intf-curr-cnt": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.3600" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "0" + "data": "aenet" } ], - "intf-unresolved-cnt": [ + "ae-bundle-name": [ { - "data": "0" + "data": "ae18.3600" } - ], - "intf-dropcnt": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-none": [ - { - "data": [ - null - ] - } - ] + "data": "ae18.32767" } ] } @@ -6482,166 +9173,205 @@ { "name": [ { - "data": "pfh-0/0/0" + "data": "xe-10/2/8" } ], "admin-status": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "down" } ], "oper-status": [ { - "data": "up" + "data": "down" } - ], - "local-index": [ + ] + }, + { + "name": [ { - "data": "150" + "data": "xe-10/2/9" } ], - "snmp-index": [ + "admin-status": [ { - "data": "508" + "data": "up" } ], - "speed": [ + "oper-status": [ { - "data": "800mbps" + "data": "up" } ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "xe-10/2/9.2003" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.5.74/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } ] } ] - } - ], - "ifd-specific-config-flags": [ + }, { - "internal-flags": [ + "name": [ { - "data": "0x0" + "data": "xe-10/2/9.32767" } - ] - } - ], - "if-config-flags": [ - {} - ], - "if-media-flags": [ - { - "ifmf-none": [ + ], + "admin-status": [ { - "data": [ - null + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } ] } ] } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0" + } ], - "interface-flapped": [ + "admin-status": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "up" } ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "up" } ], "logical-interface": [ { "name": [ { - "data": "pfh-0/0/0.16383" + "data": "ge-11/0/0.2950" } ], - "local-index": [ + "admin-status": [ { - "data": "350" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "511" + "data": "up" } ], - "if-config-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "iff-up": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "iff-snmp-traps": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.212.1/26", + "attributes": { + "junos:emit": "emit" + } + } ] - } + }, + { + "ifa-local": [ + { + "data": "123.65.212.2/26", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } ] } - ], - "encapsulation": [ + ] + }, + { + "name": [ { - "data": "ENET2" + "data": "ge-11/0/0.2951" } ], - "policer-overhead": [ - {} - ], - "logical-interface-bandwidth": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "up" } ], "filter-information": [ @@ -6654,112 +9384,168 @@ "data": "inet" } ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ + "interface-address": [ { - "data": "0" - } - ], - "new-hold-limit": [ + "ifa-local": [ + { + "data": "134.248.215.65/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, { - "data": "0" + "ifa-local": [ + { + "data": "134.248.215.66/28", + "attributes": { + "junos:emit": "emit" + } + } + ] } - ], - "intf-curr-cnt": [ + ] + }, + { + "address-family-name": [ { - "data": "0" + "data": "multiservice" } - ], - "intf-unresolved-cnt": [ + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.2952" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "0" + "data": "inet" } ], - "intf-dropcnt": [ + "interface-address": [ { - "data": "0" - } - ], - "address-family-flags": [ + "ifa-local": [ + { + "data": "123.65.0.193/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, { - "ifff-none": [ + "ifa-local": [ { - "data": [ - null - ] + "data": "123.65.0.194/29", + "attributes": { + "junos:emit": "emit" + } } ] } ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] }, { "name": [ { - "data": "pfh-0/0/0.16384" + "data": "ge-11/0/0.2953" } ], - "local-index": [ + "admin-status": [ { - "data": "351" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "581" + "data": "up" } ], - "if-config-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "iff-up": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "iff-snmp-traps": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.132.9/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.132.11/29", + "attributes": { + "junos:emit": "emit" + } + } ] } ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } - ], - "encapsulation": [ + ] + }, + { + "name": [ { - "data": "ENET2" + "data": "ge-11/0/0.2960" } ], - "policer-overhead": [ - {} - ], - "logical-interface-bandwidth": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "up" } ], "filter-information": [ @@ -6772,45 +9558,62 @@ "data": "inet" } ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ + "interface-address": [ { - "data": "0" - } - ], - "intf-unresolved-cnt": [ + "ifa-local": [ + { + "data": "124.46.189.129/26", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, { - "data": "0" + "ifa-local": [ + { + "data": "124.46.189.130/26", + "attributes": { + "junos:emit": "emit" + } + } + ] } - ], - "intf-dropcnt": [ + ] + }, + { + "address-family-name": [ { - "data": "0" + "data": "multiservice" } - ], - "address-family-flags": [ + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "multiservice" } ] } @@ -6821,15 +9624,12 @@ { "name": [ { - "data": "xe-0/0/0" + "data": "lc-11/0/0" } ], "admin-status": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "up" } ], "oper-status": [ @@ -6837,323 +9637,302 @@ "data": "up" } ], - "local-index": [ - { - "data": "152" - } - ], - "snmp-index": [ - { - "data": "514" - } - ], - "description": [ - { - "data": "a description" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mtu": [ - { - "data": "1602" - } - ], - "mru": [ - { - "data": "1610" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "10Gbps" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "none" - } - ], - "if-flow-control": [ - { - "data": "disabled" - } - ], - "if-speed-cfg": [ - { - "data": "Auto" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "lc-11/0/0.32769" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } ] } ] } - ], - "ifd-specific-config-flags": [ + ] + }, + { + "name": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "pfe-11/0/0" } ], - "if-config-flags": [ + "admin-status": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "up" } ], - "if-media-flags": [ + "oper-status": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "up" } ], - "physical-interface-cos-information": [ + "logical-interface": [ { - "physical-interface-cos-hw-max-queues": [ + "name": [ { - "data": "8" + "data": "pfe-11/0/0.16383" } ], - "physical-interface-cos-use-max-queues": [ + "admin-status": [ { - "data": "8" + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] } ] } - ], - "current-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:c0" + "data": "pfh-11/0/0" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:00" + "data": "up" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:31 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285694" - } + "data": "up" } ], - "traffic-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "51904024" + "data": "pfh-11/0/0.16383" } ], - "input-pps": [ + "admin-status": [ { - "data": "13081" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "54142808" + "data": "up" } ], - "output-pps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "9588" + "address-family-name": [ + { + "data": "inet" + } + ] } ] - } - ], - "active-alarms": [ + }, { - "interface-alarms": [ + "name": [ { - "alarm-not-present": [ + "data": "pfh-11/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ] } ] } + ] + }, + { + "name": [ + { + "data": "ge-11/0/1" + } ], - "active-defects": [ + "admin-status": [ { - "interface-alarms": [ - { - "alarm-not-present": [ - { - "data": [ - null - ] - } - ] - } - ] + "data": "up" } ], - "ethernet-pcs-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "0" + "data": "ge-11/0/1.0" } ], - "errored-blocks-seconds": [ + "admin-status": [ { - "data": "0" + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae6.0" + } + ] } ] } + ] + }, + { + "name": [ + { + "data": "ge-11/0/2" + } ], - "link-degrade-information": [ + "admin-status": [ { - "lnk-degrd-mon": [ - { - "data": "Disable" - } - ] + "data": "up" } ], - "interface-transmit-statistics": [ + "oper-status": [ { - "data": "Disabled" + "data": "up" } ], "logical-interface": [ { "name": [ { - "data": "xe-0/0/0.0" + "data": "ge-11/0/2.3001" } ], - "local-index": [ + "admin-status": [ { - "data": "352" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "579" + "data": "up" } ], - "if-config-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "iff-up": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "iff-snmp-traps": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.19.82/30", + "attributes": { + "junos:emit": "emit" + } + } ] } - ], - "internal-flags": [ + ] + }, + { + "address-family-name": [ { - "data": "0x0" + "data": "multiservice" } ] } - ], - "encapsulation": [ + ] + }, + { + "name": [ { - "data": "ENET2" + "data": "ge-11/0/2.32767" } ], - "policer-overhead": [ - {} + "admin-status": [ + { + "data": "up" + } ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "422722821868" - } - ], - "output-packets": [ - { - "data": "316139252715" - } - ] + "data": "up" } ], "filter-information": [ @@ -7163,12 +9942,7 @@ { "address-family-name": [ { - "data": "aenet" - } - ], - "ae-bundle-name": [ - { - "data": "ae0.0" + "data": "multiservice" } ] } @@ -7179,339 +9953,195 @@ { "name": [ { - "data": "xe-0/0/1" + "data": "ge-11/0/3" } ], "admin-status": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "down" } ], "oper-status": [ { - "data": "up" - } - ], - "local-index": [ - { - "data": "153" - } - ], - "snmp-index": [ - { - "data": "515" - } - ], - "description": [ - { - "data": "a description" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mtu": [ - { - "data": "1602" - } - ], - "mru": [ - { - "data": "1610" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "10Gbps" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "none" + "data": "down" } - ], - "if-flow-control": [ + ] + }, + { + "name": [ { - "data": "disabled" + "data": "ge-11/0/4" } ], - "if-speed-cfg": [ + "admin-status": [ { - "data": "Auto" + "data": "up" } ], - "pad-to-minimum-frame-size": [ + "oper-status": [ { - "data": "Disabled" + "data": "up" } ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "ge-11/0/4.900" } ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + "admin-status": [ { - "data": "0x0" + "data": "up" } - ] - } - ], - "if-config-flags": [ - { - "iff-snmp-traps": [ + ], + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "internal-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.21.241/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": [ - null + "address-family-name": [ + { + "data": "multiservice" + } ] } ] - } - ], - "physical-interface-cos-information": [ + }, { - "physical-interface-cos-hw-max-queues": [ + "name": [ { - "data": "8" + "data": "ge-11/0/4.902" } ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:c3" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:01" - } - ], - "interface-flapped": [ - { - "data": "2023-10-05 07:17:54 UTC (34w0d 10:32 ago)", - "attributes": { - "junos:seconds": "20601131" - } - } - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "admin-status": [ { - "data": "42775728" + "data": "up" } ], - "input-pps": [ + "oper-status": [ { - "data": "8911" + "data": "up" } ], - "output-bps": [ - { - "data": "55423152" - } + "filter-information": [ + {} ], - "output-pps": [ - { - "data": "9375" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "address-family": [ { - "alarm-not-present": [ + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.22.41/30", + "attributes": { + "junos:emit": "emit" + } + } ] } ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ + }, { - "alarm-not-present": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "multiservice" } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "name": [ { - "data": "46" + "data": "ge-11/0/4.32767" } ], - "errored-blocks-seconds": [ + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ { - "data": "1517" + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] } + ] + }, + { + "name": [ + { + "data": "ge-11/0/5" + } ], - "link-degrade-information": [ + "admin-status": [ { - "lnk-degrd-mon": [ - { - "data": "Disable" - } - ] + "data": "up" } ], - "interface-transmit-statistics": [ + "oper-status": [ { - "data": "Disabled" + "data": "up" } ], "logical-interface": [ { "name": [ { - "data": "xe-0/0/1.0" - } - ], - "local-index": [ - { - "data": "353" - } - ], - "snmp-index": [ - { - "data": "573" - } - ], - "if-config-flags": [ - { - "iff-up": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "ge-11/0/5.0" } ], - "encapsulation": [ + "admin-status": [ { - "data": "ENET2" + "data": "up" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "148544493810" - } - ], - "output-packets": [ - { - "data": "241637003895" - } - ] + "data": "up" } ], "filter-information": [ @@ -7526,7 +10156,7 @@ ], "ae-bundle-name": [ { - "data": "ae14.0" + "data": "ae10.0" } ] } @@ -7537,15 +10167,12 @@ { "name": [ { - "data": "xe-0/0/2" + "data": "ge-11/0/6" } ], "admin-status": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "up" } ], "oper-status": [ @@ -7553,335 +10180,458 @@ "data": "up" } ], - "local-index": [ + "logical-interface": [ { - "data": "154" - } - ], - "snmp-index": [ + "name": [ + { + "data": "ge-11/0/6.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.8.2/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, { - "data": "564" + "name": [ + { + "data": "ge-11/0/6.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] } - ], - "description": [ + ] + }, + { + "name": [ { - "data": "UNI : : ACME9525RL1- : Te1/2/8" + "data": "ge-11/0/7" } ], - "link-level-type": [ + "admin-status": [ { - "data": "Ethernet" + "data": "up" } ], - "sonet-mode": [ + "oper-status": [ { - "data": "LAN-PHY" + "data": "up" } ], - "mtu": [ + "logical-interface": [ { - "data": "1522" + "name": [ + { + "data": "ge-11/0/7.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "124.22.0.1/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "124.22.0.2/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/7.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] } - ], - "mru": [ + ] + }, + { + "name": [ { - "data": "1530" + "data": "ge-11/0/8" } ], - "source-filtering": [ + "admin-status": [ { - "data": "disabled" + "data": "up" } ], - "speed": [ + "oper-status": [ { - "data": "10Gbps" + "data": "up" } - ], - "bpdu-error": [ + ] + }, + { + "name": [ { - "data": "none" + "data": "ge-11/0/9" } ], - "ld-pdu-error": [ + "admin-status": [ { - "data": "none" + "data": "down" } ], - "l2pt-error": [ + "oper-status": [ { - "data": "none" + "data": "down" } - ], - "loopback": [ + ] + }, + { + "name": [ { - "data": "none" + "data": "ge-11/1/0" } ], - "if-flow-control": [ + "admin-status": [ { - "data": "enabled" + "data": "up" } ], - "if-speed-cfg": [ + "oper-status": [ { - "data": "Auto" + "data": "down" } - ], - "pad-to-minimum-frame-size": [ + ] + }, + { + "name": [ { - "data": "Disabled" + "data": "ge-11/1/1" } ], - "if-device-flags": [ + "admin-status": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "up" } ], - "ifd-specific-config-flags": [ + "oper-status": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "up" } ], - "if-config-flags": [ + "logical-interface": [ { - "iff-snmp-traps": [ + "name": [ { - "data": [ - null - ] + "data": "ge-11/1/1.0" } ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "internal-flags": [ + "admin-status": [ { - "data": "0x0" + "data": "up" } - ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ + ], + "oper-status": [ { - "data": "8" + "data": "up" } ], - "physical-interface-cos-use-max-queues": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "8" + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae3.0" + } + ] } ] } - ], - "current-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:02" + "data": "ge-11/1/2" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:02" + "data": "down" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:31 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285694" - } + "data": "down" } - ], - "traffic-statistics": [ + ] + }, + { + "name": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ - { - "data": "0" - } - ], - "input-pps": [ - { - "data": "0" - } - ], - "output-bps": [ - { - "data": "191627208" - } - ], - "output-pps": [ - { - "data": "22568" - } - ] + "data": "ge-11/1/3" } ], - "active-alarms": [ + "admin-status": [ { - "interface-alarms": [ - { - "alarm-not-present": [ - { - "data": [ - null - ] - } - ] - } - ] + "data": "down" } ], - "active-defects": [ + "oper-status": [ { - "interface-alarms": [ - { - "alarm-not-present": [ - { - "data": [ - null - ] - } - ] - } - ] + "data": "down" } - ], - "ethernet-pcs-statistics": [ + ] + }, + { + "name": [ { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ - { - "data": "0" - } - ], - "errored-blocks-seconds": [ - { - "data": "0" - } - ] + "data": "ge-11/1/4" } ], - "link-degrade-information": [ + "admin-status": [ { - "lnk-degrd-mon": [ - { - "data": "Disable" - } - ] + "data": "up" } ], - "interface-transmit-statistics": [ + "oper-status": [ { - "data": "Disabled" + "data": "up" } ], "logical-interface": [ { "name": [ { - "data": "xe-0/0/2.3100" + "data": "ge-11/1/4.2901" } ], - "local-index": [ + "admin-status": [ { - "data": "354" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "554" + "data": "up" } ], - "description": [ - { - "data": "UNI : L32a2f5a-CORP : ACME9525RL1-VSS Ten 1/2/8" - } + "filter-information": [ + {} ], - "if-config-flags": [ + "address-family": [ { - "iff-up": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "iff-snmp-traps": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.19.202/30", + "attributes": { + "junos:emit": "emit" + } + } ] } - ], - "internal-flags": [ + ] + }, + { + "address-family-name": [ { - "data": "0x0" + "data": "multiservice" } ] } + ] + }, + { + "name": [ + { + "data": "ge-11/1/4.2902" + } ], - "link-address": [ + "admin-status": [ { - "data": "[ 0x8100.3100 ] ", - "attributes": { - "junos:format": "VLAN-Tag [ 0x8100.3100 ] " - } + "data": "up" } ], - "encapsulation": [ + "oper-status": [ { - "data": "ENET2" + "data": "up" } ], - "policer-overhead": [ + "filter-information": [ {} ], - "traffic-statistics": [ + "address-family": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + "address-family-name": [ { - "data": "5370577" + "data": "inet" } ], - "output-packets": [ + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.210/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ { - "data": "146878731243" + "data": "multiservice" } ] } + ] + }, + { + "name": [ + { + "data": "ge-11/1/4.3005" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } ], "filter-information": [ {} @@ -7893,137 +10643,24 @@ "data": "inet" } ], - "mtu": [ + "interface-address": [ { - "data": "1500" + "ifa-local": [ + { + "data": "123.65.19.86/30", + "attributes": { + "junos:emit": "emit" + } + } + ] } - ], - "max-local-cache": [ - { - "data": "75000" - } - ], - "new-hold-limit": [ - { - "data": "75000" - } - ], - "intf-curr-cnt": [ - { - "data": "1" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-no-redirects": [ - { - "data": [ - null - ] - } - ], - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ], - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.98.48/30" - } - ], - "ifa-local": [ - { - "data": "13.65.98.49" - } - ], - "ifa-broadcast": [ - { - "data": "13.65.98.51" - } - ] - } - ] - }, - { - "address-family-name": [ + ] + }, + { + "address-family-name": [ { "data": "multiservice" } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "internal-flags": [ - { - "data": "0x2" - } - ] - } ] } ] @@ -8031,78 +10668,82 @@ { "name": [ { - "data": "xe-0/0/2.3101" + "data": "ge-11/1/4.32767" } ], - "local-index": [ + "admin-status": [ { - "data": "355" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "548" + "data": "up" } ], - "description": [ - { - "data": "UNI : L32a2f5a-GUEST : ACME9525RL1- : Te1/2/8 VID-3101" - } + "filter-information": [ + {} ], - "if-config-flags": [ + "address-family": [ { - "iff-up": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ + "address-family-name": [ { - "data": "0x0" + "data": "multiservice" } ] } - ], - "link-address": [ + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/5" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "[ 0x8100.3101 ] ", - "attributes": { - "junos:format": "VLAN-Tag [ 0x8100.3101 ] " - } + "data": "ge-11/1/6.3007" } ], - "encapsulation": [ + "admin-status": [ { - "data": "ENET2" + "data": "up" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "124920847" - } - ], - "output-packets": [ - { - "data": "1831595264" - } - ] + "data": "up" } ], "filter-information": [ @@ -8115,113 +10756,14 @@ "data": "inet" } ], - "mtu": [ - { - "data": "1500" - } - ], - "max-local-cache": [ - { - "data": "75000" - } - ], - "new-hold-limit": [ - { - "data": "75000" - } - ], - "intf-curr-cnt": [ - { - "data": "1" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-no-redirects": [ - { - "data": [ - null - ] - } - ], - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ], - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], "interface-address": [ { - "ifa-flags": [ - { - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.106.244/30" - } - ], "ifa-local": [ { - "data": "13.65.106.245" - } - ], - "ifa-broadcast": [ - { - "data": "13.65.106.247" + "data": "123.65.8.77/30", + "attributes": { + "junos:emit": "emit" + } } ] } @@ -8232,20 +10774,6 @@ { "data": "multiservice" } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "internal-flags": [ - { - "data": "0x2" - } - ] - } ] } ] @@ -8253,78 +10781,65 @@ { "name": [ { - "data": "xe-0/0/2.3102" + "data": "ge-11/1/6.32767" } ], - "local-index": [ + "admin-status": [ { - "data": "356" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "550" + "data": "up" } ], - "description": [ - { - "data": "UNI : L32a2f5a-IND : ACME9525RL1- : Te1/2/8 VID-3102" - } + "filter-information": [ + {} ], - "if-config-flags": [ + "address-family": [ { - "iff-up": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ + "address-family-name": [ { - "data": "0x0" + "data": "multiservice" } ] } - ], - "link-address": [ + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "[ 0x8100.3102 ] ", - "attributes": { - "junos:format": "VLAN-Tag [ 0x8100.3102 ] " - } + "data": "ge-11/1/7.3000" } ], - "encapsulation": [ + "admin-status": [ { - "data": "ENET2" + "data": "up" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "3148915" - } - ], - "output-packets": [ - { - "data": "3154101" - } - ] + "data": "up" } ], "filter-information": [ @@ -8337,113 +10852,24 @@ "data": "inet" } ], - "mtu": [ - { - "data": "1500" - } - ], - "max-local-cache": [ - { - "data": "75000" - } - ], - "new-hold-limit": [ - { - "data": "75000" - } - ], - "intf-curr-cnt": [ - { - "data": "1" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ + "interface-address": [ { - "ifff-no-redirects": [ - { - "data": [ - null - ] - } - ], - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ], - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ + "ifa-local": [ { - "data": "0x2" + "data": "124.34.0.1/28", + "attributes": { + "junos:emit": "emit" + } } ] - } - ], - "interface-address": [ + }, { - "ifa-flags": [ - { - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.104.0/30" - } - ], "ifa-local": [ { - "data": "13.65.104.1" - } - ], - "ifa-broadcast": [ - { - "data": "13.65.104.3" + "data": "124.34.0.2/28", + "attributes": { + "junos:emit": "emit" + } } ] } @@ -8454,20 +10880,6 @@ { "data": "multiservice" } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "internal-flags": [ - { - "data": "0x2" - } - ] - } ] } ] @@ -8475,546 +10887,454 @@ { "name": [ { - "data": "xe-0/0/2.3103" + "data": "ge-11/1/7.32767" } ], - "local-index": [ + "admin-status": [ { - "data": "357" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "551" + "data": "up" } ], - "description": [ - { - "data": "UNI : L32a2f5a-USER : ACME9525RL1- : Te1/2/8 VID-3103" - } + "filter-information": [ + {} ], - "if-config-flags": [ + "address-family": [ { - "iff-up": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ + "address-family-name": [ { - "data": "0x0" + "data": "multiservice" } ] } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/8" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/9" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/0.16386" + } ], - "link-address": [ + "admin-status": [ { - "data": "[ 0x8100.3103 ] ", - "attributes": { - "junos:format": "VLAN-Tag [ 0x8100.3103 ] " - } + "data": "up" } ], - "encapsulation": [ + "oper-status": [ { - "data": "ENET2" + "data": "down" } ], - "policer-overhead": [ + "filter-information": [ {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/1.16386" + } ], - "traffic-statistics": [ + "admin-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "166940786" - } - ], - "output-packets": [ - { - "data": "8632880481" - } - ] + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" } ], "filter-information": [ {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/2.16386" + } ], - "address-family": [ + "admin-status": [ { - "address-family-name": [ - { - "data": "inet" - } - ], - "mtu": [ - { - "data": "1500" - } - ], - "max-local-cache": [ - { - "data": "75000" - } - ], - "new-hold-limit": [ - { - "data": "75000" - } - ], - "intf-curr-cnt": [ - { - "data": "1" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-no-redirects": [ - { - "data": [ - null - ] - } - ], - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ], - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.106.240/30" - } - ], - "ifa-local": [ - { - "data": "13.65.106.241" - } - ], - "ifa-broadcast": [ - { - "data": "13.65.106.243" - } - ] - } - ] - }, + "data": "up" + } + ], + "oper-status": [ { - "address-family-name": [ - { - "data": "multiservice" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ] + "data": "down" } + ], + "filter-information": [ + {} ] - }, + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ { "name": [ { - "data": "xe-0/0/2.3104" + "data": "ge-11/2/3.16386" } ], - "local-index": [ + "admin-status": [ { - "data": "358" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "553" + "data": "down" } ], - "description": [ + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "UNI : L32a2f5a-DEVICES : ACME9525RL1- : Te1/2/8 VID-3104" + "data": "ge-11/2/4.16386" } ], - "if-config-flags": [ + "admin-status": [ { - "iff-up": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "up" } ], - "link-address": [ + "oper-status": [ { - "data": "[ 0x8100.3104 ] ", - "attributes": { - "junos:format": "VLAN-Tag [ 0x8100.3104 ] " - } + "data": "down" } ], - "encapsulation": [ + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "ENET2" + "data": "ge-11/2/5.16386" } ], - "policer-overhead": [ + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/6.16386" + } ], - "traffic-statistics": [ + "admin-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "132288169" - } - ], - "output-packets": [ - { - "data": "446833213" - } - ] + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" } ], "filter-information": [ {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/7.16386" + } ], - "address-family": [ + "admin-status": [ { - "address-family-name": [ - { - "data": "inet" - } - ], - "mtu": [ - { - "data": "1500" - } - ], - "max-local-cache": [ - { - "data": "75000" - } - ], - "new-hold-limit": [ - { - "data": "75000" - } - ], - "intf-curr-cnt": [ - { - "data": "1" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-no-redirects": [ - { - "data": [ - null - ] - } - ], - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ], - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.106.248/30" - } - ], - "ifa-local": [ - { - "data": "13.65.106.249" - } - ], - "ifa-broadcast": [ - { - "data": "13.65.106.251" - } - ] - } - ] - }, + "data": "up" + } + ], + "oper-status": [ { - "address-family-name": [ - { - "data": "multiservice" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ] + "data": "down" } + ], + "filter-information": [ + {} ] - }, + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ { "name": [ { - "data": "xe-0/0/2.32767" - } - ], - "local-index": [ - { - "data": "359" + "data": "ge-11/2/8.16386" } ], - "snmp-index": [ + "admin-status": [ { - "data": "547" + "data": "up" } ], - "if-config-flags": [ + "oper-status": [ { - "iff-up": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "down" } ], - "link-address": [ + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "[ 0x0000.0 ] ", - "attributes": { - "junos:format": "VLAN-Tag [ 0x0000.0 ] " - } + "data": "ge-11/2/9.16386" } ], - "encapsulation": [ + "admin-status": [ { - "data": "ENET2" + "data": "up" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "226096" - } - ], - "output-packets": [ - { - "data": "1631875" - } - ] + "data": "down" } ], "filter-information": [ {} - ], - "address-family": [ - { - "address-family-name": [ - { - "data": "multiservice" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "ifff-none": [ - { - "data": [ - null - ] - } - ] - } - ] - } ] } ] @@ -9022,370 +11342,470 @@ { "name": [ { - "data": "xe-0/0/3" + "data": "ge-11/3/0" } ], "admin-status": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "up" } ], "oper-status": [ { - "data": "up" + "data": "down" } ], - "local-index": [ + "logical-interface": [ { - "data": "155" + "name": [ + { + "data": "ge-11/3/0.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] } - ], - "snmp-index": [ + ] + }, + { + "name": [ { - "data": "565" + "data": "ge-11/3/1" } ], - "link-level-type": [ + "admin-status": [ { - "data": "Ethernet-CCC" + "data": "up" } ], - "sonet-mode": [ + "oper-status": [ { - "data": "LAN-PHY" + "data": "down" } ], - "mtu": [ + "logical-interface": [ { - "data": "1522" + "name": [ + { + "data": "ge-11/3/1.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] } - ], - "mru": [ + ] + }, + { + "name": [ { - "data": "1530" + "data": "ge-11/3/2" } ], - "source-filtering": [ + "admin-status": [ { - "data": "disabled" + "data": "up" } ], - "speed": [ + "oper-status": [ { - "data": "10Gbps" + "data": "down" } ], - "bpdu-error": [ + "logical-interface": [ { - "data": "none" + "name": [ + { + "data": "ge-11/3/2.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] } - ], - "ld-pdu-error": [ + ] + }, + { + "name": [ { - "data": "none" + "data": "ge-11/3/3" } ], - "l2pt-error": [ + "admin-status": [ { - "data": "none" + "data": "up" } ], - "loopback": [ + "oper-status": [ { - "data": "none" + "data": "down" } ], - "if-flow-control": [ + "logical-interface": [ { - "data": "enabled" + "name": [ + { + "data": "ge-11/3/3.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/4" } ], - "if-speed-cfg": [ + "admin-status": [ { - "data": "Auto" + "data": "up" } ], - "pad-to-minimum-frame-size": [ + "oper-status": [ { - "data": "Disabled" + "data": "down" } ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "ge-11/3/4.16386" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + ], + "oper-status": [ { - "data": "0x0" + "data": "down" } + ], + "filter-information": [ + {} ] } + ] + }, + { + "name": [ + { + "data": "ge-11/3/5" + } ], - "if-config-flags": [ + "admin-status": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "up" } ], - "if-media-flags": [ + "oper-status": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "down" } ], - "physical-interface-cos-information": [ + "logical-interface": [ { - "physical-interface-cos-hw-max-queues": [ + "name": [ { - "data": "8" + "data": "ge-11/3/5.16386" } ], - "physical-interface-cos-use-max-queues": [ + "admin-status": [ { - "data": "8" + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" } + ], + "filter-information": [ + {} ] } - ], - "current-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:03" + "data": "ge-11/3/6" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:03" + "data": "up" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:31 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285694" - } + "data": "down" } ], - "traffic-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "65240" + "data": "ge-11/3/6.16386" } ], - "input-pps": [ + "admin-status": [ { - "data": "60" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "29616" + "data": "down" } ], - "output-pps": [ - { - "data": "38" - } + "filter-information": [ + {} ] } - ], - "active-alarms": [ - { - "interface-alarms": [ - { - "alarm-not-present": [ - { - "data": [ - null - ] - } - ] - } - ] + ] + }, + { + "name": [ + { + "data": "ge-11/3/7" } ], - "active-defects": [ + "admin-status": [ { - "interface-alarms": [ - { - "alarm-not-present": [ - { - "data": [ - null - ] - } - ] - } - ] + "data": "up" } ], - "ethernet-pcs-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "0" + "data": "ge-11/3/7.16386" } ], - "errored-blocks-seconds": [ + "admin-status": [ { - "data": "0" + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" } + ], + "filter-information": [ + {} ] } + ] + }, + { + "name": [ + { + "data": "ge-11/3/8" + } ], - "link-degrade-information": [ + "admin-status": [ { - "lnk-degrd-mon": [ + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "Disable" + "data": "ge-11/3/8.16386" + } + ], + "admin-status": [ + { + "data": "up" } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} ] } + ] + }, + { + "name": [ + { + "data": "ge-11/3/9" + } ], - "interface-transmit-statistics": [ + "admin-status": [ { - "data": "Disabled" + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" } ], "logical-interface": [ { "name": [ { - "data": "xe-0/0/3.0" + "data": "ge-11/3/9.16386" } ], - "local-index": [ + "admin-status": [ { - "data": "360" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "578" + "data": "down" } ], - "description": [ + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "UNI : ABC525PE1-ABCPE1 : ACME9525RL1-VSS Ten1/2/6" + "data": "ae0.0" } ], - "if-config-flags": [ + "admin-status": [ { - "iff-up": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "up" } ], - "encapsulation": [ + "oper-status": [ { - "data": "Ethernet-CCC" + "data": "up" } ], - "policer-overhead": [ + "filter-information": [ {} ], - "traffic-statistics": [ + "address-family": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + "address-family-name": [ { - "data": "5973057971" + "data": "inet" } ], - "output-packets": [ + "interface-address": [ { - "data": "2628850002" + "ifa-local": [ + { + "data": "123.65.228.5/31", + "attributes": { + "junos:emit": "emit" + } + } + ] } ] - } - ], - "filter-information": [ - {} - ], - "address-family": [ + }, { "address-family-name": [ { - "data": "ccc" + "data": "iso" } - ], - "mtu": [ + ] + }, + { + "address-family-name": [ { - "data": "1522" + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } } - ], - "address-family-flags": [ + ] + }, + { + "address-family-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x402" - } - ] + "data": "multiservice" } ] } @@ -9396,393 +11816,387 @@ { "name": [ { - "data": "ge-1/0/0" + "data": "ae1" } ], "admin-status": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "down" } ], "oper-status": [ { - "data": "up" - } - ], - "local-index": [ - { - "data": "156" - } - ], - "snmp-index": [ - { - "data": "516" - } - ], - "description": [ - { - "data": "UNI : : ACME9525-MS1 : Gi0/2" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1522" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1530" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" + "data": "down" } - ], - "if-remote-fault": [ + ] + }, + { + "name": [ { - "data": "online" + "data": "ae2" } ], - "pad-to-minimum-frame-size": [ + "admin-status": [ { - "data": "Disabled" + "data": "up" } ], - "if-media-type": [ + "oper-status": [ { - "data": "Copper" + "data": "up" } ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "ae2.0" } ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + "admin-status": [ { - "data": "0x0" + "data": "up" } - ] - } - ], - "if-config-flags": [ - { - "iff-snmp-traps": [ + ], + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "internal-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "internal-flags": [ + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.167/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": "0x0" - } - ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ + "address-family-name": [ + { + "data": "iso" + } + ] + }, { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, { - "data": "8" + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] } - ], - "current-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:60" + "data": "ae3" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:60" + "data": "up" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285685" - } + "data": "up" } ], - "traffic-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "7760" + "data": "ae3.0" } ], - "input-pps": [ + "admin-status": [ { - "data": "5" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "6304" + "data": "up" } ], - "output-pps": [ - { - "data": "6" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "filter-information": [ + {} + ], + "address-family": [ { - "alarm-not-present": [ + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.27/31", + "attributes": { + "junos:emit": "emit" + } + } ] } ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ + }, { - "alarm-not-present": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" } ] } ] } + ] + }, + { + "name": [ + { + "data": "ae5" + } ], - "ethernet-pcs-statistics": [ + "admin-status": [ { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ - { - "data": "0" - } - ], - "errored-blocks-seconds": [ - { - "data": "0" - } - ] + "data": "up" } ], - "ethernet-fec-mode": [ + "oper-status": [ { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] + "data": "up" } ], - "ethernet-fec-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "ae5.0" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.127/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] } + ] + }, + { + "name": [ + { + "data": "ae6" + } ], - "interface-transmit-statistics": [ + "admin-status": [ { - "data": "Disabled" + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" } ], "logical-interface": [ { "name": [ { - "data": "ge-1/0/0.2950" + "data": "ae6.0" } ], - "local-index": [ + "admin-status": [ { - "data": "361" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "513" + "data": "up" } ], - "description": [ - { - "data": "UNI : L32a2f5a-NETMGMT : ACME9525-MS1 G0/2 VID-2950" - } + "filter-information": [ + {} ], - "if-config-flags": [ + "address-family": [ { - "iff-up": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "iff-snmp-traps": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.228.229/31", + "attributes": { + "junos:emit": "emit" + } + } ] } - ], - "internal-flags": [ + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ { - "data": "0x0" + "data": "multiservice" } ] } - ], - "link-address": [ + ] + } + ] + }, + { + "name": [ + { + "data": "ae7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "[ 0x8100.2950 ] ", - "attributes": { - "junos:format": "VLAN-Tag [ 0x8100.2950 ] " - } + "data": "ae7.0" } ], - "encapsulation": [ + "admin-status": [ { - "data": "ENET2" + "data": "up" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "137446420" - } - ], - "output-packets": [ - { - "data": "166509247" - } - ] + "data": "up" } ], "filter-information": [ @@ -9795,132 +12209,14 @@ "data": "inet" } ], - "mtu": [ - { - "data": "1500" - } - ], - "max-local-cache": [ - { - "data": "75000" - } - ], - "new-hold-limit": [ - { - "data": "75000" - } - ], - "intf-curr-cnt": [ - { - "data": "3" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ], - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], "interface-address": [ { - "ifa-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.209.192/28" - } - ], - "ifa-local": [ - { - "data": "13.65.209.193" - } - ], - "ifa-broadcast": [ - { - "data": "13.65.209.207" - } - ] - }, - { - "ifa-flags": [ - { - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.209.192/28" - } - ], "ifa-local": [ { - "data": "13.65.209.194" - } - ], - "ifa-broadcast": [ - { - "data": "13.65.209.207" + "data": "123.65.229.236/31", + "attributes": { + "junos:emit": "emit" + } } ] } @@ -9929,101 +12225,163 @@ { "address-family-name": [ { - "data": "multiservice" + "data": "iso" } - ], - "mtu": [ + ] + }, + { + "address-family-name": [ { - "data": "Unlimited" + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } } - ], - "address-family-flags": [ + ] + }, + { + "address-family-name": [ { - "internal-flags": [ - { - "data": "0x2" - } - ] + "data": "multiservice" } ] } ] - }, + } + ] + }, + { + "name": [ + { + "data": "ae8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ { "name": [ { - "data": "ge-1/0/0.2953" + "data": "ae8.0" } ], - "local-index": [ + "admin-status": [ { - "data": "362" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "583" + "data": "up" } ], - "description": [ - { - "data": "UNI : L32a2f5a-CORP : ACME9525-MS1 : Gi0/2 VID-2953" - } + "filter-information": [ + {} ], - "if-config-flags": [ + "address-family": [ { - "iff-up": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "iff-snmp-traps": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.228.123/31", + "attributes": { + "junos:emit": "emit" + } + } ] } - ], - "internal-flags": [ + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ { - "data": "0x0" + "data": "multiservice" } ] } - ], - "link-address": [ + ] + } + ] + }, + { + "name": [ + { + "data": "ae9" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ae10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "[ 0x8100.2953 ] ", - "attributes": { - "junos:format": "VLAN-Tag [ 0x8100.2953 ] " - } + "data": "ae10.0" } ], - "encapsulation": [ + "admin-status": [ { - "data": "ENET2" + "data": "up" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "39337184" - } - ], - "output-packets": [ - { - "data": "63100209" - } - ] + "data": "up" } ], "filter-information": [ @@ -10036,125 +12394,98 @@ "data": "inet" } ], - "mtu": [ + "interface-address": [ { - "data": "1500" + "ifa-local": [ + { + "data": "123.65.228.57/31", + "attributes": { + "junos:emit": "emit" + } + } + ] } - ], - "max-local-cache": [ + ] + }, + { + "address-family-name": [ { - "data": "75000" + "data": "iso" } - ], - "new-hold-limit": [ + ] + }, + { + "address-family-name": [ { - "data": "75000" + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } } - ], - "intf-curr-cnt": [ - { - "data": "1" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ + ] + }, + { + "address-family-name": [ { - "data": "0" + "data": "multiservice" } - ], - "address-family-flags": [ + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae15" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae15.4000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "ifff-no-redirects": [ - { - "data": [ - null - ] - } - ], - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x2" - } - ] + "data": "inet" } ], "interface-address": [ { - "ifa-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.145.72/29" - } - ], - "ifa-local": [ - { - "data": "13.65.145.73" - } - ], - "ifa-broadcast": [ - { - "data": "13.65.145.79" - } - ] - }, - { - "ifa-flags": [ - { - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.145.72/29" - } - ], "ifa-local": [ { - "data": "13.65.145.75" - } - ], - "ifa-broadcast": [ - { - "data": "13.65.145.79" + "data": "123.65.229.196/31", + "attributes": { + "junos:emit": "emit" + } } ] } @@ -10163,21 +12494,24 @@ { "address-family-name": [ { - "data": "multiservice" + "data": "iso" } - ], - "mtu": [ + ] + }, + { + "address-family-name": [ { - "data": "Unlimited" + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } } - ], - "address-family-flags": [ + ] + }, + { + "address-family-name": [ { - "internal-flags": [ - { - "data": "0x2" - } - ] + "data": "multiservice" } ] } @@ -10186,73 +12520,82 @@ { "name": [ { - "data": "ge-1/0/0.32767" + "data": "ae15.4002" } ], - "local-index": [ + "admin-status": [ { - "data": "363" + "data": "up" } ], - "snmp-index": [ + "oper-status": [ { - "data": "537" + "data": "up" } ], - "if-config-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "iff-up": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } ], - "iff-snmp-traps": [ + "interface-address": [ { - "data": [ - null + "ifa-local": [ + { + "data": "123.65.229.200/31", + "attributes": { + "junos:emit": "emit" + } + } ] } - ], - "internal-flags": [ + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ { - "data": "0x0" + "data": "multiservice" } ] } - ], - "link-address": [ + ] + }, + { + "name": [ { - "data": "[ 0x0000.0 ] ", - "attributes": { - "junos:format": "VLAN-Tag [ 0x0000.0 ] " - } + "data": "ae15.32767" } ], - "encapsulation": [ + "admin-status": [ { - "data": "ENET2" + "data": "up" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "922889" - } - ], - "output-packets": [ - { - "data": "1631990" - } - ] + "data": "up" } ], "filter-information": [ @@ -10264,22 +12607,6 @@ { "data": "multiservice" } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "ifff-none": [ - { - "data": [ - null - ] - } - ] - } ] } ] @@ -10289,8341 +12616,7989 @@ { "name": [ { - "data": "ge-1/0/1" + "data": "ae17" } ], "admin-status": [ { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } + "data": "up" } ], "oper-status": [ { - "data": "down" - } - ], - "local-index": [ - { - "data": "157" - } - ], - "snmp-index": [ - { - "data": "517" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" + "data": "up" } ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "ae17.2100" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "ifdf-down": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ - { - "iff-hardware-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-down": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.5.210/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "iff-snmp-traps": [ + }, { - "data": [ - null + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:4106:0:6:5457:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:408:3403:bacc/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "internal-flags": [ + }, { - "data": "0x0" + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "if-media-flags": [ + }, { - "ifmf-none": [ + "name": [ { - "data": [ - null - ] + "data": "ae17.32767" } - ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ + ], + "admin-status": [ { - "data": "8" + "data": "up" } ], - "physical-interface-cos-use-max-queues": [ + "oper-status": [ { - "data": "8" + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] } - ], - "current-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:61" + "data": "ae18" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:61" + "data": "up" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } + "data": "up" } ], - "traffic-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "0" + "data": "ae18.3100" } ], - "input-pps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "filter-information": [ + {} + ], + "address-family": [ { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.27.233/29", + "attributes": { + "junos:emit": "emit" + } + } ] } ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ + }, { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1010:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:1c03:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } ] } ] - } - ] - } - ], - "ethernet-pcs-statistics": [ - { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ - { - "data": "0" - } - ], - "errored-blocks-seconds": [ + }, { - "data": "0" + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] - } - ], - "ethernet-fec-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "ae18.3101" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ - { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/2" - } - ], - "admin-status": [ - { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "158" - } - ], - "snmp-index": [ - { - "data": "518" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.27.241/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "ifdf-running": [ + }, { - "data": [ - null + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1011:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:1d03:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "ifdf-down": [ + }, { - "data": [ - null + "address-family-name": [ + { + "data": "multiservice" + } ] } ] - } - ], - "ifd-specific-config-flags": [ + }, { - "internal-flags": [ + "name": [ { - "data": "0x0" + "data": "ae18.3102" } - ] - } - ], - "if-config-flags": [ - { - "iff-hardware-down": [ + ], + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-snmp-traps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.27.249/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "internal-flags": [ + }, { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1012:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:1e03:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": [ - null + "address-family-name": [ + { + "data": "multiservice" + } ] } ] - } - ], - "physical-interface-cos-information": [ + }, { - "physical-interface-cos-hw-max-queues": [ + "name": [ { - "data": "8" + "data": "ae18.3103" } ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:62" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:62" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } - } - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "input-pps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ - { - "data": "0" - } + "filter-information": [ + {} ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "address-family": [ { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.28.1/29", + "attributes": { + "junos:emit": "emit" + } + } ] } ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ + }, { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1013:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:1f03:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } ] } ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "name": [ { - "data": "0" + "data": "ae18.3104" } ], - "errored-blocks-seconds": [ + "admin-status": [ { - "data": "0" + "data": "up" } - ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.28.9/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1014:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:2003:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } ] - } - ], - "ethernet-fec-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "ae18.3105" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ - { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/3" - } - ], - "admin-status": [ - { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "159" - } - ], - "snmp-index": [ - { - "data": "519" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.28.17/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "ifdf-running": [ + }, { - "data": [ - null + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1015:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:2103:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "ifdf-down": [ + }, { - "data": [ - null + "address-family-name": [ + { + "data": "multiservice" + } ] } ] - } - ], - "ifd-specific-config-flags": [ + }, { - "internal-flags": [ + "name": [ { - "data": "0x0" + "data": "ae18.3600" } - ] - } - ], - "if-config-flags": [ - { - "iff-hardware-down": [ + ], + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-snmp-traps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.17.193/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "internal-flags": [ + }, { - "data": "0x0" + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "if-media-flags": [ + }, { - "ifmf-none": [ + "name": [ { - "data": [ - null - ] + "data": "ae18.32767" } - ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ + ], + "admin-status": [ { - "data": "8" + "data": "up" } ], - "physical-interface-cos-use-max-queues": [ + "oper-status": [ { - "data": "8" + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] } - ], - "current-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:63" + "data": "ae19" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:63" + "data": "up" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } + "data": "up" } ], - "traffic-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "0" + "data": "ae19.2000" } ], - "input-pps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "filter-information": [ + {} + ], + "address-family": [ { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.4.0/31", + "attributes": { + "junos:emit": "emit" + } + } ] } ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ + }, { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:40b0:0:6:5457:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:407:d003:bace/64", + "attributes": { + "junos:emit": "emit" + } + } ] } ] - } - ] - } - ], - "ethernet-pcs-statistics": [ - { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ - { - "data": "0" - } - ], - "errored-blocks-seconds": [ + }, { - "data": "0" + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] - } - ], - "ethernet-fec-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "ae19.2001" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/4" - } - ], - "admin-status": [ - { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "160" - } - ], - "snmp-index": [ - { - "data": "520" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ - { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.4.4/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "ifdf-running": [ + }, { - "data": [ - null + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:40b1:0:6:5457:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:407:d103:bace/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "ifdf-down": [ + }, { - "data": [ - null + "address-family-name": [ + { + "data": "multiservice" + } ] } ] - } - ], - "ifd-specific-config-flags": [ + }, { - "internal-flags": [ + "name": [ { - "data": "0x0" + "data": "ae19.2003" } - ] - } - ], - "if-config-flags": [ - { - "iff-hardware-down": [ + ], + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-snmp-traps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.4.96/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "internal-flags": [ + }, { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:40b2:0:6:5457:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:407:d303:bace/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": [ - null + "address-family-name": [ + { + "data": "multiservice" + } ] } ] - } - ], - "physical-interface-cos-information": [ + }, { - "physical-interface-cos-hw-max-queues": [ + "name": [ { - "data": "8" + "data": "ae19.32767" } ], - "physical-interface-cos-use-max-queues": [ + "admin-status": [ { - "data": "8" + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] } - ], - "current-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:64" + "data": "ae25" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:64" + "data": "up" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } + "data": "up" } ], - "traffic-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "0" + "data": "ae25.2001" } ], - "input-pps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.6.73/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "active-alarms": [ + }, { - "interface-alarms": [ + "name": [ { - "ethernet-alarm-link-down": [ + "data": "ae25.2002" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.6.161/29", + "attributes": { + "junos:emit": "emit" + } + } ] } ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "active-defects": [ + }, { - "interface-alarms": [ + "name": [ { - "ethernet-alarm-link-down": [ + "data": "ae25.2011" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.6.97/30", + "attributes": { + "junos:emit": "emit" + } + } ] } ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "name": [ { - "data": "0" + "data": "ae25.3001" } ], - "errored-blocks-seconds": [ + "admin-status": [ { - "data": "0" + "data": "up" } - ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.21.121/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } ] - } - ], - "ethernet-fec-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "ae25.3007" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ] - }, - { - "name": [ - { - "data": "ge-1/0/5" - } - ], - "admin-status": [ - { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "161" - } - ], - "snmp-index": [ - { - "data": "521" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.22.229/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": [ - null + "address-family-name": [ + { + "data": "multiservice" + } ] } + ] + }, + { + "name": [ + { + "data": "ae25.3011" + } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "ifdf-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.249/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.37.250/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": "0x0" + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "if-config-flags": [ + }, { - "iff-hardware-down": [ + "name": [ { - "data": [ - null - ] + "data": "ae25.3015" } ], - "iff-down": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-snmp-traps": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "internal-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.65/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": [ - null + "address-family-name": [ + { + "data": "multiservice" + } ] } ] - } - ], - "physical-interface-cos-information": [ + }, { - "physical-interface-cos-hw-max-queues": [ + "name": [ { - "data": "8" + "data": "ae25.3016" } ], - "physical-interface-cos-use-max-queues": [ + "admin-status": [ { - "data": "8" + "data": "up" } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:65" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:65" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } - } - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + ], + "oper-status": [ { - "data": "0" + "data": "up" } ], - "input-pps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.36.169/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.3017" } ], - "output-bps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ + "oper-status": [ { - "data": "0" + "data": "up" } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + ], + "filter-information": [ + {} + ], + "address-family": [ { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.28.25/29", + "attributes": { + "junos:emit": "emit" + } + } ] } ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "active-defects": [ + }, { - "interface-alarms": [ + "name": [ { - "ethernet-alarm-link-down": [ + "data": "ae25.3019" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.40.241/29", + "attributes": { + "junos:emit": "emit" + } + } ] } ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "name": [ { - "data": "0" + "data": "ae25.3050" } ], - "errored-blocks-seconds": [ + "admin-status": [ { - "data": "0" + "data": "up" } - ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.16.74/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } ] - } - ], - "ethernet-fec-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "ae25.32767" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "multiservice" + } + ] } ] } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } ] }, { "name": [ { - "data": "ge-1/0/6" + "data": "ae99" } ], "admin-status": [ { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } + "data": "up" } ], "oper-status": [ { - "data": "down" + "data": "up" } ], - "local-index": [ + "logical-interface": [ { - "data": "162" - } - ], - "snmp-index": [ - { - "data": "522" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ + "name": [ + { + "data": "ae99.4006" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.59/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, { - "data": "LAN-PHY" + "name": [ + { + "data": "ae99.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] } - ], - "mru": [ + ] + }, + { + "name": [ { - "data": "1522" + "data": "cbp0" } ], - "source-filtering": [ + "admin-status": [ { - "data": "disabled" + "data": "up" } ], - "speed": [ + "oper-status": [ { - "data": "1000mbps" + "data": "up" } - ], - "eth-switch-error": [ + ] + }, + { + "name": [ { - "data": "none" + "data": "demux0" } ], - "bpdu-error": [ + "admin-status": [ { - "data": "none" + "data": "up" } ], - "ld-pdu-error": [ + "oper-status": [ { - "data": "none" + "data": "up" } - ], - "l2pt-error": [ + ] + }, + { + "name": [ { - "data": "none" + "data": "dsc" } ], - "loopback": [ + "admin-status": [ { - "data": "disabled" + "data": "up" } ], - "if-flow-control": [ + "oper-status": [ { - "data": "enabled" + "data": "up" } - ], - "if-auto-negotiation": [ + ] + }, + { + "name": [ { - "data": "enabled" + "data": "em0" } ], - "if-remote-fault": [ + "admin-status": [ { - "data": "online" + "data": "up" } ], - "pad-to-minimum-frame-size": [ + "oper-status": [ { - "data": "Disabled" + "data": "up" } ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "em0.32768" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "ifdf-down": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ - { - "iff-hardware-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-down": [ - { - "data": [ - null - ] - } + "filter-information": [ + {} ], - "iff-snmp-traps": [ + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "192.168.1.1/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] } - ], - "internal-flags": [ - { - "data": "0x0" - } ] } - ], - "if-media-flags": [ + ] + }, + { + "name": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "esi" } ], - "physical-interface-cos-information": [ + "admin-status": [ { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] + "data": "up" } ], - "current-physical-address": [ + "oper-status": [ { - "data": "28:8a:1c:56:72:66" + "data": "up" } - ], - "hardware-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:66" + "data": "fti0" } ], - "interface-flapped": [ + "admin-status": [ { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } + "data": "up" } ], - "traffic-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ - { - "data": "0" - } - ], - "input-pps": [ - { - "data": "0" - } - ], - "output-bps": [ - { - "data": "0" - } - ], - "output-pps": [ - { - "data": "0" - } - ] + "data": "up" } - ], - "active-alarms": [ + ] + }, + { + "name": [ { - "interface-alarms": [ - { - "ethernet-alarm-link-down": [ - { - "data": [ - null - ] - } - ] - } - ] + "data": "fti1" } ], - "active-defects": [ + "admin-status": [ { - "interface-alarms": [ - { - "ethernet-alarm-link-down": [ - { - "data": [ - null - ] - } - ] - } - ] + "data": "up" } ], - "ethernet-pcs-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ - { - "data": "0" - } - ], - "errored-blocks-seconds": [ - { - "data": "0" - } - ] + "data": "up" } - ], - "ethernet-fec-mode": [ + ] + }, + { + "name": [ { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] + "data": "fti2" } ], - "ethernet-fec-statistics": [ + "admin-status": [ { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ - { - "data": "0" - } - ], - "fec_nccw_count": [ - { - "data": "0" - } - ], - "fec_ccw_error_rate": [ - { - "data": "0" - } - ], - "fec_nccw_error_rate": [ - { - "data": "0" - } - ] + "data": "up" } ], - "interface-transmit-statistics": [ + "oper-status": [ { - "data": "Disabled" + "data": "up" } ] }, { "name": [ { - "data": "ge-1/0/7" + "data": "fti3" } ], "admin-status": [ { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } + "data": "up" } ], "oper-status": [ { - "data": "down" - } - ], - "local-index": [ - { - "data": "163" - } - ], - "snmp-index": [ - { - "data": "523" + "data": "up" } - ], - "link-level-type": [ + ] + }, + { + "name": [ { - "data": "Ethernet" + "data": "fti4" } ], - "mtu": [ + "admin-status": [ { - "data": "1514" + "data": "up" } ], - "sonet-mode": [ + "oper-status": [ { - "data": "LAN-PHY" + "data": "up" } - ], - "mru": [ + ] + }, + { + "name": [ { - "data": "1522" + "data": "fti5" } ], - "source-filtering": [ + "admin-status": [ { - "data": "disabled" + "data": "up" } ], - "speed": [ + "oper-status": [ { - "data": "1000mbps" + "data": "up" } - ], - "eth-switch-error": [ + ] + }, + { + "name": [ { - "data": "none" + "data": "fti6" } ], - "bpdu-error": [ + "admin-status": [ { - "data": "none" + "data": "up" } ], - "ld-pdu-error": [ + "oper-status": [ { - "data": "none" + "data": "up" } - ], - "l2pt-error": [ + ] + }, + { + "name": [ { - "data": "none" + "data": "fti7" } ], - "loopback": [ + "admin-status": [ { - "data": "disabled" + "data": "up" } ], - "if-flow-control": [ + "oper-status": [ { - "data": "enabled" + "data": "up" } - ], - "if-auto-negotiation": [ + ] + }, + { + "name": [ { - "data": "enabled" + "data": "fxp0" } ], - "if-remote-fault": [ + "admin-status": [ { - "data": "online" + "data": "up" } ], - "pad-to-minimum-frame-size": [ + "oper-status": [ { - "data": "Disabled" + "data": "up" } ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "fxp0.0" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "ifdf-down": [ + "oper-status": [ { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ - { - "iff-hardware-down": [ - { - "data": [ - null - ] + "data": "up" } ], - "iff-down": [ - { - "data": [ - null - ] - } + "filter-information": [ + {} ], - "iff-snmp-traps": [ + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } ] } - ], - "internal-flags": [ - { - "data": "0x0" - } ] } - ], - "if-media-flags": [ + ] + }, + { + "name": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "gre" } ], - "physical-interface-cos-information": [ + "admin-status": [ { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] + "data": "up" } ], - "current-physical-address": [ + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:67" + "data": "igb0" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:67" + "data": "up" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } + "data": "up" } ], - "traffic-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "0" + "data": "igb0.0" } ], - "input-pps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "filter-information": [ + {} + ], + "address-family": [ { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } ] } ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ + }, { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:1ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } ] } ] - } - ] - } - ], - "ethernet-pcs-statistics": [ - { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ - { - "data": "0" - } - ], - "errored-blocks-seconds": [ - { - "data": "0" - } - ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] - } - ], - "ethernet-fec-statistics": [ - { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ - { - "data": "0" - } - ], - "fec_nccw_count": [ - { - "data": "0" - } - ], - "fec_ccw_error_rate": [ - { - "data": "0" - } - ], - "fec_nccw_error_rate": [ + }, { - "data": "0" + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] } ] } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } ] }, { "name": [ { - "data": "ge-1/0/8" + "data": "ipip" } ], "admin-status": [ { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } + "data": "up" } ], "oper-status": [ { - "data": "down" - } - ], - "local-index": [ - { - "data": "164" - } - ], - "snmp-index": [ - { - "data": "524" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" + "data": "up" } - ], - "if-auto-negotiation": [ + ] + }, + { + "name": [ { - "data": "enabled" + "data": "irb" } ], - "if-remote-fault": [ + "admin-status": [ { - "data": "online" + "data": "up" } ], - "pad-to-minimum-frame-size": [ + "oper-status": [ { - "data": "Disabled" + "data": "up" } ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "irb.222" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "ifdf-down": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ - { - "iff-hardware-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "down" } ], - "iff-down": [ - { - "data": [ - null - ] - } + "filter-information": [ + {} ], - "iff-snmp-traps": [ + "address-family": [ { - "data": [ - null + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.132.43/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + }, { - "data": [ - null + "address-family-name": [ + { + "data": "multiservice" + } ] } ] } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] - } - ], - "current-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:68" + "data": "ixlv0" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:68" + "data": "up" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } + "data": "up" } ], - "traffic-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "0" + "data": "ixlv0.0" } ], - "input-pps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "filter-information": [ + {} + ], + "address-family": [ { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" } - ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ - { - "ethernet-alarm-link-down": [ + ], + "interface-address": [ { - "data": [ - null - ] - } - ] - } - ] - } - ], - "ethernet-pcs-statistics": [ - { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": "0" - } - ], - "errored-blocks-seconds": [ + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": "0" + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] } ] } + ] + }, + { + "name": [ + { + "data": "jsrv" + } ], - "ethernet-fec-mode": [ + "admin-status": [ { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] + "data": "up" } ], - "ethernet-fec-statistics": [ + "oper-status": [ { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ { - "data": "0" + "data": "jsrv.1" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] } ] } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } ] }, { "name": [ { - "data": "ge-1/0/9" + "data": "lo0" } ], "admin-status": [ { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } + "data": "up" } ], "oper-status": [ { - "data": "down" - } - ], - "local-index": [ - { - "data": "165" - } - ], - "snmp-index": [ - { - "data": "525" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-media-type": [ - { - "data": "Copper" + "data": "up" } ], - "if-device-flags": [ + "logical-interface": [ { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "lo0.0" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "ifdf-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0224.0011", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, { - "data": "0x0" + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::6af3:8e0f:fc30:d2ae" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] } ] - } - ], - "if-config-flags": [ + }, { - "iff-hardware-down": [ + "name": [ { - "data": [ - null - ] + "data": "lo0.16384" } ], - "iff-down": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-snmp-traps": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "internal-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0x0" + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] } ] - } - ], - "if-media-flags": [ + }, { - "ifmf-none": [ + "name": [ { - "data": [ - null - ] + "data": "lo0.16385" } - ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ + ], + "admin-status": [ { - "data": "8" + "data": "up" } ], - "physical-interface-cos-use-max-queues": [ + "oper-status": [ { - "data": "8" + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] } ] } - ], - "current-physical-address": [ + ] + }, + { + "name": [ { - "data": "28:8a:1c:56:72:69" + "data": "lsi" } ], - "hardware-physical-address": [ + "admin-status": [ { - "data": "28:8a:1c:56:72:69" + "data": "up" } ], - "interface-flapped": [ + "oper-status": [ { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } + "data": "up" } ], - "traffic-statistics": [ + "logical-interface": [ { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "0" + "data": "lsi.0" } ], - "input-pps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "address-family-name": [ + { + "data": "inet" + } + ] + }, { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "iso" } ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ + }, { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet6" } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "name": [ { - "data": "0" + "data": "lsi.1" } ], - "errored-blocks-seconds": [ + "admin-status": [ { - "data": "0" + "data": "up" } - ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } ] - } - ], - "ethernet-fec-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "lsi.2" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/0" - } - ], - "admin-status": [ - { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "166" - } - ], - "snmp-index": [ - { - "data": "526" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-media-type": [ - { - "data": "Copper" - } - ], - "if-device-flags": [ + }, { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "lsi.3" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "ifdf-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, { - "data": "0x0" + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "if-config-flags": [ + }, { - "iff-hardware-down": [ + "name": [ { - "data": [ - null - ] + "data": "lsi.4" } ], - "iff-down": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-snmp-traps": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "internal-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "address-family-name": [ + { + "data": "inet" + } + ] + }, { - "data": [ - null + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } ] } ] - } - ], - "physical-interface-cos-information": [ + }, { - "physical-interface-cos-hw-max-queues": [ + "name": [ { - "data": "8" + "data": "lsi.5" } ], - "physical-interface-cos-use-max-queues": [ + "admin-status": [ { - "data": "8" + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:6c" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:6c" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } - } - ], - "traffic-statistics": [ + }, { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "0" + "data": "lsi.6" } ], - "input-pps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "address-family-name": [ + { + "data": "inet" + } + ] + }, { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "iso" } ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ + }, { - "ethernet-alarm-link-down": [ + "address-family-name": [ { - "data": [ - null - ] + "data": "inet6" } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "name": [ { - "data": "0" + "data": "lsi.7" } ], - "errored-blocks-seconds": [ + "admin-status": [ { - "data": "0" + "data": "up" } - ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } ] - } - ], - "ethernet-fec-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "lsi.8" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/1" - } - ], - "admin-status": [ - { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "167" - } - ], - "snmp-index": [ - { - "data": "527" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ + }, { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "lsi.9" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "ifdf-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, { - "data": "0x0" + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "if-config-flags": [ + }, { - "iff-hardware-down": [ + "name": [ { - "data": [ - null - ] + "data": "lsi.10" } ], - "iff-down": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-snmp-traps": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "internal-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "address-family-name": [ + { + "data": "inet" + } + ] + }, { - "data": [ - null + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } ] } ] - } - ], - "physical-interface-cos-information": [ + }, { - "physical-interface-cos-hw-max-queues": [ + "name": [ { - "data": "8" + "data": "lsi.11" } ], - "physical-interface-cos-use-max-queues": [ + "admin-status": [ { - "data": "8" + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:6d" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:6d" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } - } - ], - "traffic-statistics": [ + }, { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "0" + "data": "lsi.12" } ], - "input-pps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "active-alarms": [ + }, { - "interface-alarms": [ + "name": [ { - "ethernet-alarm-link-down": [ + "data": "lsi.13" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" } ] } ] - } - ], - "active-defects": [ + }, { - "interface-alarms": [ + "name": [ { - "ethernet-alarm-link-down": [ + "data": "lsi.14" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "name": [ { - "data": "0" + "data": "lsi.15" } ], - "errored-blocks-seconds": [ + "admin-status": [ { - "data": "0" + "data": "up" } - ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } ] - } - ], - "ethernet-fec-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "lsi.16" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/2" - } - ], - "admin-status": [ - { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } - } - ], - "oper-status": [ + }, { - "data": "down" - } - ], - "local-index": [ - { - "data": "168" - } - ], - "snmp-index": [ - { - "data": "528" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ + "name": [ { - "data": [ - null - ] + "data": "lsi.17" } ], - "ifdf-running": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "ifdf-down": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, { - "data": "0x0" + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "if-config-flags": [ + }, { - "iff-hardware-down": [ + "name": [ { - "data": [ - null - ] + "data": "lsi.18" } ], - "iff-down": [ + "admin-status": [ { - "data": [ - null - ] + "data": "up" } ], - "iff-snmp-traps": [ + "oper-status": [ { - "data": [ - null - ] + "data": "up" } ], - "internal-flags": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "address-family-name": [ + { + "data": "inet" + } + ] + }, { - "data": [ - null + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } ] } ] - } - ], - "physical-interface-cos-information": [ + }, { - "physical-interface-cos-hw-max-queues": [ + "name": [ { - "data": "8" + "data": "lsi.19" } ], - "physical-interface-cos-use-max-queues": [ + "admin-status": [ { - "data": "8" + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] } ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:6e" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:6e" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } - } - ], - "traffic-statistics": [ + }, { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ + "name": [ { - "data": "0" + "data": "lsi.1048845" } ], - "input-pps": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "output-bps": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "output-pps": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "vpls" + } + ] } ] - } - ], - "active-alarms": [ + }, { - "interface-alarms": [ + "name": [ { - "ethernet-alarm-link-down": [ + "data": "lsi.1048849" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "vpls" } ] } ] - } - ], - "active-defects": [ + }, { - "interface-alarms": [ + "name": [ { - "ethernet-alarm-link-down": [ + "data": "lsi.1048852" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": [ - null - ] + "data": "vpls" } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ + "name": [ { - "data": "0" + "data": "lsi.1048853" } ], - "errored-blocks-seconds": [ + "admin-status": [ { - "data": "0" + "data": "up" } - ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } ] - } - ], - "ethernet-fec-statistics": [ + }, { - "attributes": { - "junos:style": "verbose" - }, - "fec_ccw_count": [ + "name": [ { - "data": "0" + "data": "lsi.1048856" } ], - "fec_nccw_count": [ + "admin-status": [ { - "data": "0" + "data": "up" } ], - "fec_ccw_error_rate": [ + "oper-status": [ { - "data": "0" + "data": "up" } ], - "fec_nccw_error_rate": [ + "filter-information": [ + {} + ], + "address-family": [ { - "data": "0" + "address-family-name": [ + { + "data": "vpls" + } + ] } ] } + ] + }, + { + "name": [ + { + "data": "mif" + } ], - "interface-transmit-statistics": [ + "admin-status": [ { - "data": "Disabled" + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" } ] }, { "name": [ { - "data": "ge-1/1/3" + "data": "mtun" } ], "admin-status": [ { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } + "data": "up" } ], "oper-status": [ { - "data": "down" + "data": "up" } - ], - "local-index": [ + ] + }, + { + "name": [ { - "data": "169" + "data": "pimd" } ], - "snmp-index": [ + "admin-status": [ { - "data": "529" + "data": "up" } ], - "link-level-type": [ + "oper-status": [ { - "data": "Ethernet" + "data": "up" } - ], - "mtu": [ + ] + }, + { + "name": [ { - "data": "1514" + "data": "pime" } ], - "sonet-mode": [ + "admin-status": [ { - "data": "LAN-PHY" + "data": "up" } ], - "mru": [ + "oper-status": [ { - "data": "1522" + "data": "up" } - ], - "source-filtering": [ + ] + }, + { + "name": [ { - "data": "disabled" + "data": "pip0" } ], - "speed": [ + "admin-status": [ { - "data": "1000mbps" + "data": "up" } ], - "eth-switch-error": [ + "oper-status": [ { - "data": "none" + "data": "up" } - ], - "bpdu-error": [ + ] + }, + { + "name": [ { - "data": "none" + "data": "pp0" } ], - "ld-pdu-error": [ + "admin-status": [ { - "data": "none" + "data": "up" } ], - "l2pt-error": [ + "oper-status": [ { - "data": "none" + "data": "up" } - ], - "loopback": [ + ] + }, + { + "name": [ { - "data": "disabled" + "data": "rbeb" } ], - "if-flow-control": [ + "admin-status": [ { - "data": "enabled" + "data": "up" } ], - "if-auto-negotiation": [ + "oper-status": [ { - "data": "enabled" + "data": "up" } - ], - "if-remote-fault": [ + ] + }, + { + "name": [ { - "data": "online" + "data": "tap" } ], - "pad-to-minimum-frame-size": [ + "admin-status": [ { - "data": "Disabled" + "data": "up" } ], - "if-device-flags": [ + "oper-status": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ], - "ifdf-down": [ - { - "data": [ - null - ] - } - ] + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "vtep" } ], - "ifd-specific-config-flags": [ + "admin-status": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "up" } ], - "if-config-flags": [ + "oper-status": [ { - "iff-hardware-down": [ - { - "data": [ - null - ] - } - ], - "iff-down": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "up" + } + ] + } + ] + } + ] + }, + "show route protocol direct | display json": { + "route-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/20.4R0/junos-routing" + }, + "route-table": [ + { + "comment": "keepalive", + "table-name": [ + { + "data": "inet.0" } ], - "if-media-flags": [ + "destination-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "343" } ], - "physical-interface-cos-information": [ + "total-route-count": [ { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] + "data": "343" } ], - "current-physical-address": [ + "active-route-count": [ { - "data": "28:8a:1c:56:72:6f" + "data": "304" } ], - "hardware-physical-address": [ + "holddown-route-count": [ { - "data": "28:8a:1c:56:72:6f" + "data": "0" } ], - "interface-flapped": [ + "hidden-route-count": [ { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } + "data": "39" } ], - "traffic-statistics": [ + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-bps": [ + "rt-destination": [ { - "data": "0" + "data": "198.51.100.1/32" } ], - "input-pps": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "107w5d 11:05:42", + "attributes": { + "junos:seconds": "65185542" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] } - ], - "output-bps": [ + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "0" + "data": "123.65.228.4/31" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "rt-entry": [ { - "ethernet-alarm-link-down": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "33w5d 22:01:45", + "attributes": { + "junos:seconds": "20469705" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae0.0" + } + ] + } ] } ] - } - ], - "active-defects": [ + }, { - "interface-alarms": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "ethernet-alarm-link-down": [ + "data": "123.65.228.26/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "6w1d 04:00:37", + "attributes": { + "junos:seconds": "3729637" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae3.0" + } + ] + } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "bit-error-seconds": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.228.56/31" } ], - "errored-blocks-seconds": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:38", + "attributes": { + "junos:seconds": "21672158" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae10.0" + } + ] + } + ] } ] - } - ], - "ethernet-fec-mode": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "enabled_fec_mode": [ - {} + "rt-destination": [ + { + "data": "123.65.228.122/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "3w2d 15:48:03", + "attributes": { + "junos:seconds": "2044083" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae8.0" + } + ] + } + ] + } ] - } - ], - "ethernet-fec-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "fec_ccw_count": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.228.126/31" } ], - "fec_nccw_count": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "2w0d 15:29:43", + "attributes": { + "junos:seconds": "1265383" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae5.0" + } + ] + } + ] } - ], - "fec_ccw_error_rate": [ + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "0" + "data": "123.65.228.228/31" } ], - "fec_nccw_error_rate": [ + "rt-entry": [ { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/4" - } - ], - "admin-status": [ - { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "170" - } - ], - "snmp-index": [ - { - "data": "530" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ], - "ifdf-down": [ - { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "1w0d 02:06:42", + "attributes": { + "junos:seconds": "612402" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae6.0" + } + ] + } ] } ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ + }, { - "iff-hardware-down": [ - { - "data": [ - null - ] - } - ], - "iff-down": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.229.58/31" } ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:00", + "attributes": { + "junos:seconds": "14459040" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae99.4006" + } + ] + } ] } ] - } - ], - "physical-interface-cos-information": [ + }, { - "physical-interface-cos-hw-max-queues": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "8" + "data": "123.65.229.166/31" } ], - "physical-interface-cos-use-max-queues": [ + "rt-entry": [ { - "data": "8" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "3d 18:04:37", + "attributes": { + "junos:seconds": "324277" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae2.0" + } + ] + } + ] } ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:70" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:70" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "0" - } - ], - "input-pps": [ - { - "data": "0" - } - ], - "output-bps": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.229.196/31" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "rt-entry": [ { - "ethernet-alarm-link-down": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } - ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ - { - "ethernet-alarm-link-down": [ + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:00", + "attributes": { + "junos:seconds": "14459040" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae15.4000" + } + ] + } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "bit-error-seconds": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.229.200/31" } ], - "errored-blocks-seconds": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:00", + "attributes": { + "junos:seconds": "14459040" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae15.4002" + } + ] + } + ] } ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] - } - ], - "ethernet-fec-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "fec_ccw_count": [ - { - "data": "0" - } - ], - "fec_nccw_count": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.229.236/31" } ], - "fec_ccw_error_rate": [ + "rt-entry": [ { - "data": "0" - } - ], - "fec_nccw_error_rate": [ - { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "6w2d 18:48:41", + "attributes": { + "junos:seconds": "3869321" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae7.0" + } + ] + } + ] } ] } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } ] }, { - "name": [ - { - "data": "ge-1/1/5" - } - ], - "admin-status": [ - { - "data": "down", - "attributes": { - "junos:format": "Administratively down" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "171" - } - ], - "snmp-index": [ - { - "data": "531" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ + "table-name": [ { - "data": "LAN-PHY" + "data": "inet.3" } ], - "mru": [ + "destination-count": [ { - "data": "1522" + "data": "97" } ], - "source-filtering": [ + "total-route-count": [ { - "data": "disabled" + "data": "97" } ], - "speed": [ + "active-route-count": [ { - "data": "1000mbps" + "data": "97" } ], - "eth-switch-error": [ + "holddown-route-count": [ { - "data": "none" + "data": "0" } ], - "bpdu-error": [ + "hidden-route-count": [ { - "data": "none" + "data": "0" } ], - "ld-pdu-error": [ + "restart-state": [ { - "data": "none" + "data": "Complete" } - ], - "l2pt-error": [ + ] + }, + { + "table-name": [ { - "data": "none" + "data": "INTERNET.inet.0" } ], - "loopback": [ + "destination-count": [ { - "data": "disabled" + "data": "168721" } ], - "if-flow-control": [ + "total-route-count": [ { - "data": "enabled" + "data": "842948" } ], - "if-auto-negotiation": [ + "active-route-count": [ { - "data": "enabled" + "data": "168694" } ], - "if-remote-fault": [ + "holddown-route-count": [ { - "data": "online" + "data": "1" } ], - "pad-to-minimum-frame-size": [ + "hidden-route-count": [ { - "data": "Disabled" + "data": "29" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.4.0/31" } ], - "ifdf-down": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "12w4d 10:42:05", + "attributes": { + "junos:seconds": "7641725" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae19.2000" + } + ] + } ] } ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ + }, { - "iff-hardware-down": [ - { - "data": [ - null - ] - } - ], - "iff-down": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.4.4/31" } ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "12w4d 10:42:05", + "attributes": { + "junos:seconds": "7641725" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae19.2001" + } + ] + } ] } ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:71" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:71" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "0" - } - ], - "input-pps": [ - { - "data": "0" - } - ], - "output-bps": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.4.96/31" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "rt-entry": [ { - "ethernet-alarm-link-down": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } - ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ - { - "ethernet-alarm-link-down": [ + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "12w4d 10:42:05", + "attributes": { + "junos:seconds": "7641725" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae19.2003" + } + ] + } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "bit-error-seconds": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.5.68/31" } ], - "errored-blocks-seconds": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:13:53", + "attributes": { + "junos:seconds": "19260833" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/0/4.2000" + } + ] + } + ] } ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] - } - ], - "ethernet-fec-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "fec_ccw_count": [ - { - "data": "0" - } - ], - "fec_nccw_count": [ - { - "data": "0" - } - ], - "fec_ccw_error_rate": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.5.74/31" } ], - "fec_nccw_error_rate": [ + "rt-entry": [ { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/6" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "172" - } - ], - "snmp-index": [ - { - "data": "532" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-media-type": [ - { - "data": "Fiber" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ], - "ifdf-down": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ - { - "iff-hardware-down": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ - { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:13:44", + "attributes": { + "junos:seconds": "19260824" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/2/9.2003" + } + ] + } ] } ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:72" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:72" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:40 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285686" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "0" - } - ], - "input-pps": [ - { - "data": "0" - } - ], - "output-bps": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.5.208/29" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "rt-entry": [ { - "ethernet-alarm-link-down": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } - ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ - { - "ethernet-alarm-link-down": [ + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "107w5d 11:02:23", + "attributes": { + "junos:seconds": "65185343" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae17.2100" + } + ] + } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "bit-error-seconds": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.6.72/29" } ], - "errored-blocks-seconds": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:00", + "attributes": { + "junos:seconds": "14459040" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae25.2001" + } + ] + } + ] } ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] - } - ], - "ethernet-fec-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "fec_ccw_count": [ - { - "data": "0" - } - ], - "fec_nccw_count": [ - { - "data": "0" - } - ], - "fec_ccw_error_rate": [ - { - "data": "0" - } - ], - "fec_nccw_error_rate": [ - { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "ge-1/1/6.16386" - } - ], - "local-index": [ - { - "data": "364" - } - ], - "snmp-index": [ + "rt-destination": [ { - "data": "587" + "data": "123.65.6.96/30" } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-device-down": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ { - "data": "0x0" + "data": "Direct" } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + ], + "preference": [ { "data": "0" } ], - "output-packets": [ + "age": [ { - "data": "0" + "data": "23w6d 08:24:00", + "attributes": { + "junos:seconds": "14459040" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae25.2011" + } + ] } ] } - ], - "filter-information": [ - {} ] - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/7" - } - ], - "admin-status": [ + }, { - "data": "up", "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "173" - } - ], - "snmp-index": [ - { - "data": "533" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.6.160/29" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:00", + "attributes": { + "junos:seconds": "14459040" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae25.2002" + } + ] + } + ] + } + ] } - ], - "loopback": [ + ] + }, + { + "table-name": [ { - "data": "disabled" + "data": "L3ACME-REG.inet.0" } ], - "if-flow-control": [ + "destination-count": [ { - "data": "enabled" + "data": "31" } ], - "if-auto-negotiation": [ + "total-route-count": [ { - "data": "enabled" + "data": "65" } ], - "if-remote-fault": [ + "active-route-count": [ { - "data": "online" + "data": "21" } ], - "pad-to-minimum-frame-size": [ + "holddown-route-count": [ { - "data": "Disabled" + "data": "0" } ], - "if-media-type": [ + "hidden-route-count": [ { - "data": "Fiber" + "data": "11" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.41.0/30" } ], - "ifdf-down": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:13:54", + "attributes": { + "junos:seconds": "19260834" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/0/6.3207" + } + ] + } ] } ] } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ + ] + }, + { + "table-name": [ { - "iff-hardware-down": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "L3ACME-CORP.inet.0" } ], - "if-media-flags": [ + "destination-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "7832" } ], - "physical-interface-cos-information": [ + "total-route-count": [ { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] + "data": "38725" } ], - "current-physical-address": [ + "active-route-count": [ { - "data": "28:8a:1c:56:72:73" + "data": "7606" } ], - "hardware-physical-address": [ + "holddown-route-count": [ { - "data": "28:8a:1c:56:72:73" + "data": "1" } ], - "interface-flapped": [ + "hidden-route-count": [ { - "data": "2022-12-23 14:28:41 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285685" - } + "data": "297" } ], - "traffic-statistics": [ + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "0" - } - ], - "input-pps": [ - { - "data": "0" - } - ], - "output-bps": [ + "rt-destination": [ { - "data": "0" + "data": "134.248.215.64/28" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "rt-entry": [ { - "ethernet-alarm-link-down": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } - ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ - { - "ethernet-alarm-link-down": [ + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:31", + "attributes": { + "junos:seconds": "21672151" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/0/0.2951" + } + ] + } ] } ] - } - ], - "ethernet-pcs-statistics": [ - { - "attributes": { - "junos:style": "verbose" - }, - "bit-error-seconds": [ - { - "data": "0" - } - ], - "errored-blocks-seconds": [ - { - "data": "0" - } - ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] - } - ], - "ethernet-fec-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "fec_ccw_count": [ - { - "data": "0" - } - ], - "fec_nccw_count": [ - { - "data": "0" - } - ], - "fec_ccw_error_rate": [ - { - "data": "0" - } - ], - "fec_nccw_error_rate": [ - { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "ge-1/1/7.16386" - } - ], - "local-index": [ - { - "data": "365" - } - ], - "snmp-index": [ + "rt-destination": [ { - "data": "588" + "data": "123.65.8.76/30" } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-device-down": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ { - "data": "0x0" + "data": "Direct" } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + ], + "preference": [ { "data": "0" } ], - "output-packets": [ + "age": [ { - "data": "0" + "data": "35w5d 20:02:39", + "attributes": { + "junos:seconds": "21672159" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/1/6.3007" + } + ] } ] } - ], - "filter-information": [ - {} ] - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/8" - } - ], - "admin-status": [ + }, { - "data": "up", "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ - { - "data": "174" - } - ], - "snmp-index": [ - { - "data": "534" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-media-type": [ - { - "data": "Fiber" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.16.72/30" } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:01", + "attributes": { + "junos:seconds": "14459041" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae25.3050" + } + ] + } ] } ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ + }, { - "iff-snmp-traps": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.17.192/30" } ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:36", + "attributes": { + "junos:seconds": "31917336" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3600" + } + ] + } ] } ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:74" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:74" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:43 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285683" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "0" - } - ], - "input-pps": [ - { - "data": "0" - } - ], - "output-bps": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.18.16/30" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "rt-entry": [ { - "alarm-not-present": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } - ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ - { - "alarm-not-present": [ + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3010" + } + ] + } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "bit-error-seconds": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.19.80/30" } ], - "errored-blocks-seconds": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:39", + "attributes": { + "junos:seconds": "21672159" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/0/2.3001" + } + ] + } + ] } ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] - } - ], - "ethernet-fec-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "fec_ccw_count": [ - { - "data": "0" - } - ], - "fec_nccw_count": [ - { - "data": "0" - } - ], - "fec_ccw_error_rate": [ - { - "data": "0" - } - ], - "fec_nccw_error_rate": [ - { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "ge-1/1/8.16386" - } - ], - "local-index": [ - { - "data": "366" - } - ], - "snmp-index": [ + "rt-destination": [ { - "data": "589" + "data": "123.65.19.84/30" } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-up": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ { - "data": "0x0" + "data": "Direct" } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + ], + "preference": [ { - "data": "1631844" + "data": "0" } ], - "output-packets": [ + "age": [ { - "data": "1631762" + "data": "35w5d 20:02:39", + "attributes": { + "junos:seconds": "21672159" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/1/4.3005" + } + ] } ] } - ], - "filter-information": [ - {} - ] - } - ] - }, - { - "name": [ - { - "data": "ge-1/1/9" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ - { - "data": "175" - } - ], - "snmp-index": [ - { - "data": "535" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mru": [ - { - "data": "1522" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "eth-switch-error": [ - { - "data": "none" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-auto-negotiation": [ - { - "data": "enabled" - } - ], - "if-remote-fault": [ - { - "data": "online" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-media-type": [ - { - "data": "Fiber" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } ] - } - ], - "if-config-flags": [ + }, { - "iff-snmp-traps": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.19.96/30" } ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.2007" + } + ] + } ] } ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:75" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:75" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:43 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285683" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "0" - } - ], - "input-pps": [ - { - "data": "0" - } - ], - "output-bps": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.19.104/30" } ], - "output-pps": [ - { - "data": "0" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "rt-entry": [ { - "alarm-not-present": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } - ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ - { - "alarm-not-present": [ + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3030" + } + ] + } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "bit-error-seconds": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.20.56/30" } ], - "errored-blocks-seconds": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:14:00", + "attributes": { + "junos:seconds": "19260840" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/0/0.3001" + } + ] + } + ] } ] - } - ], - "ethernet-fec-mode": [ - { - "attributes": { - "junos:style": "verbose" - }, - "enabled_fec_mode": [ - {} - ] - } - ], - "ethernet-fec-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "fec_ccw_count": [ - { - "data": "0" - } - ], - "fec_nccw_count": [ - { - "data": "0" - } - ], - "fec_ccw_error_rate": [ - { - "data": "0" - } - ], - "fec_nccw_error_rate": [ - { - "data": "0" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "ge-1/1/9.16386" - } - ], - "local-index": [ - { - "data": "367" - } - ], - "snmp-index": [ + "rt-destination": [ { - "data": "590" + "data": "123.65.20.64/30" } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-up": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:13:45", + "attributes": { + "junos:seconds": "19260825" + } + } + ], + "nh": [ { - "data": "0x0" + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/2/0.3002" + } + ] } ] } - ], - "encapsulation": [ + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "ENET2" + "data": "123.65.21.120/30" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "rt-entry": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + "active-tag": [ { - "data": "1631925" + "data": "*" } ], - "output-packets": [ + "current-active": [ { - "data": "1631842" + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:01", + "attributes": { + "junos:seconds": "14459041" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae25.3001" + } + ] } ] } - ], - "filter-information": [ - {} - ] - } - ] - }, - { - "name": [ - { - "data": "xe-1/2/0" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ - { - "data": "176" - } - ], - "snmp-index": [ - { - "data": "570" - } - ], - "description": [ - { - "data": "a description" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mtu": [ - { - "data": "1602" - } - ], - "mru": [ - { - "data": "1610" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "10Gbps" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "none" - } - ], - "if-flow-control": [ - { - "data": "disabled" - } - ], - "if-speed-cfg": [ - { - "data": "Auto" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } ] - } - ], - "if-config-flags": [ + }, { - "iff-snmp-traps": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.27.232/29" } ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:36", + "attributes": { + "junos:seconds": "31917336" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3100" + } + ] + } ] } ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:c2" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:78" - } - ], - "interface-flapped": [ - { - "data": "2024-05-25 05:26:26 UTC (5d 12:23 ago)", - "attributes": { - "junos:seconds": "476620" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "302063576" - } - ], - "input-pps": [ - { - "data": "41582" - } - ], - "output-bps": [ + "rt-destination": [ { - "data": "94851768" + "data": "123.65.28.24/29" } ], - "output-pps": [ - { - "data": "22367" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "rt-entry": [ { - "alarm-not-present": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } - ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ - { - "alarm-not-present": [ + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:01", + "attributes": { + "junos:seconds": "14459041" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae25.3017" + } + ] + } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "bit-error-seconds": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.32.208/30" } ], - "errored-blocks-seconds": [ - { - "data": "4" - } - ] - } - ], - "link-degrade-information": [ - { - "lnk-degrd-mon": [ + "rt-entry": [ { - "data": "Disable" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "3d 21:32:16", + "attributes": { + "junos:seconds": "336736" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/5.3200" + } + ] + } + ] } ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ], - "logical-interface": [ + }, { - "name": [ - { - "data": "xe-1/2/0.0" - } - ], - "local-index": [ - { - "data": "368" - } - ], - "snmp-index": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "576" + "data": "123.65.35.112/30" } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-up": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ { - "data": "0x0" + "data": "31w5d 22:04:46", + "attributes": { + "junos:seconds": "19260286" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-1/0/0.0" + } + ] } ] } - ], - "encapsulation": [ + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "ENET2" + "data": "123.65.35.120/30" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "rt-entry": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + "active-tag": [ { - "data": "519367958190" + "data": "*" } ], - "output-packets": [ + "current-active": [ { - "data": "444407262191" + "data": [ + null + ] } - ] - } - ], - "filter-information": [ - {} - ], - "address-family": [ - { - "address-family-name": [ + ], + "last-active": [ { - "data": "aenet" + "data": [ + null + ] } ], - "ae-bundle-name": [ + "protocol-name": [ { - "data": "ae11.0" + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:13:54", + "attributes": { + "junos:seconds": "19260834" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/0/6.3200" + } + ] } ] } ] - } - ] - }, - { - "name": [ - { - "data": "xe-1/3/0" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ - { - "data": "177" - } - ], - "snmp-index": [ - { - "data": "571" - } - ], - "link-level-type": [ - { - "data": "Ethernet-CCC" - } - ], - "sonet-mode": [ - { - "data": "LAN-PHY" - } - ], - "mtu": [ - { - "data": "1522" - } - ], - "mru": [ - { - "data": "1530" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "10Gbps" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "ld-pdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "none" - } - ], - "if-flow-control": [ - { - "data": "enabled" - } - ], - "if-speed-cfg": [ - { - "data": "Auto" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ + }, { - "iff-snmp-traps": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.36.168/30" } ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-media-flags": [ - { - "ifmf-none": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:01", + "attributes": { + "junos:seconds": "14459041" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae25.3016" + } + ] + } ] } ] - } - ], - "physical-interface-cos-information": [ - { - "physical-interface-cos-hw-max-queues": [ - { - "data": "8" - } - ], - "physical-interface-cos-use-max-queues": [ - { - "data": "8" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:84" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:84" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:43 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285683" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "228080" - } - ], - "input-pps": [ - { - "data": "129" - } - ], - "output-bps": [ + "rt-destination": [ { - "data": "359744" + "data": "123.65.37.248/29" } ], - "output-pps": [ - { - "data": "134" - } - ] - } - ], - "active-alarms": [ - { - "interface-alarms": [ + "rt-entry": [ { - "alarm-not-present": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } - ] - } - ] - } - ], - "active-defects": [ - { - "interface-alarms": [ - { - "alarm-not-present": [ + ], + "last-active": [ { "data": [ null ] } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:01", + "attributes": { + "junos:seconds": "14459041" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae25.3011" + } + ] + } ] } ] - } - ], - "ethernet-pcs-statistics": [ + }, { "attributes": { - "junos:style": "verbose" + "junos:style": "brief" }, - "bit-error-seconds": [ - { - "data": "0" - } - ], - "errored-blocks-seconds": [ - { - "data": "0" - } - ] - } - ], - "link-degrade-information": [ - { - "lnk-degrd-mon": [ - { - "data": "Disable" - } - ] - } - ], - "interface-transmit-statistics": [ - { - "data": "Disabled" - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "xe-1/3/0.0" - } - ], - "local-index": [ - { - "data": "369" - } - ], - "snmp-index": [ - { - "data": "582" - } - ], - "description": [ + "rt-destination": [ { - "data": "UNI : DEFPE1-ACME9525PE1 : ACME9525RL1-VSS Ten1/2/7" + "data": "123.65.40.240/29" } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-up": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ { - "data": "0x0" + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:01", + "attributes": { + "junos:seconds": "14459041" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae25.3019" + } + ] } ] } - ], - "encapsulation": [ + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "Ethernet-CCC" + "data": "123.65.41.240/29" } ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ + "rt-entry": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + "active-tag": [ { - "data": "12319781793" + "data": "*" } ], - "output-packets": [ + "current-active": [ { - "data": "9935446027" + "data": [ + null + ] } - ] - } - ], - "filter-information": [ - {} - ], - "address-family": [ - { - "address-family-name": [ + ], + "last-active": [ { - "data": "ccc" + "data": [ + null + ] } ], - "mtu": [ + "protocol-name": [ { - "data": "1522" + "data": "Direct" } ], - "address-family-flags": [ + "preference": [ { - "internal-flags": [ + "data": "0" + } + ], + "age": [ + { + "data": "23w6d 08:24:05", + "attributes": { + "junos:seconds": "14459045" + } + } + ], + "nh": [ + { + "selected-next-hop": [ { - "data": "0x402" + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/2/6.3111" } ] } ] } ] - } - ] - }, - { - "name": [ - { - "data": "ae0" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ - { - "data": "129" - } - ], - "snmp-index": [ - { - "data": "538" - } - ], - "description": [ - { - "data": "a description" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1602" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "10Gbps" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ - { - "data": "disabled" - } - ], - "pad-to-minimum-frame-size": [ - { - "data": "Disabled" - } - ], - "minimum-links-in-aggregate": [ - { - "data": "1" - } - ], - "minimum-bandwidth-in-aggregate": [ - { - "data": "1bps" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ - { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:c0" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:c0" - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:28:33 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285693" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "51904024" - } - ], - "input-pps": [ - { - "data": "13081" - } - ], - "output-bps": [ - { - "data": "54142880" - } - ], - "output-pps": [ - { - "data": "9588" - } - ] - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "ae0.0" - } - ], - "local-index": [ - { - "data": "345" - } - ], - "snmp-index": [ - { - "data": "559" - } - ], - "description": [ + "rt-destination": [ { - "data": "a description" + "data": "123.65.132.8/29" } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-up": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ { - "data": "0x0" + "data": "Direct" } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "lag-traffic-statistics": [ - { - "lag-bundle": [ + ], + "preference": [ { - "input-packets": [ - { - "data": "422721190005" - } - ], - "input-pps": [ - { - "data": "13081" - } - ], - "input-bytes": [ - { - "data": "409595610055470" - } - ], - "input-bps": [ - { - "data": "51904024" - } - ], - "output-packets": [ - { - "data": "316137621010" - } - ], - "output-pps": [ - { - "data": "9587" - } - ], - "output-bytes": [ - { - "data": "171636424156222" - } - ], - "output-bps": [ - { - "data": "54141760" - } - ] + "data": "0" } ], - "lag-adaptive-statistics": [ + "age": [ { - "adaptive-adjusts": [ - { - "data": "0" - } - ], - "adaptive-scans": [ + "data": "35w5d 20:02:31", + "attributes": { + "junos:seconds": "21672151" + } + } + ], + "nh": [ + { + "selected-next-hop": [ { - "data": "0" + "data": [ + null + ] } ], - "adaptive-updates": [ + "via": [ { - "data": "0" + "data": "ge-11/0/0.2953" } ] } ] } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.155.44/30" + } ], - "filter-information": [ - {} - ], - "address-family": [ + "rt-entry": [ { - "address-family-name": [ - { - "data": "inet" - } - ], - "mtu": [ + "active-tag": [ { - "data": "1588" + "data": "*" } ], - "max-local-cache": [ + "current-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "new-hold-limit": [ + "last-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "intf-curr-cnt": [ + "protocol-name": [ { - "data": "1" + "data": "Direct" } ], - "intf-unresolved-cnt": [ + "preference": [ { "data": "0" } ], - "intf-dropcnt": [ + "age": [ { - "data": "0" + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } } ], - "address-family-flags": [ + "nh": [ { - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ + "selected-next-hop": [ { "data": [ null ] } ], - "internal-flags": [ + "via": [ { - "data": "0x2" + "data": "xe-0/0/2.2008" } ] } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.155.52/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } ], - "interface-address": [ + "current-active": [ { - "ifa-flags": [ - { - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.230.30/31" - } - ], - "ifa-local": [ - { - "data": "13.65.230.30" - } + "data": [ + null ] } - ] - }, - { - "address-family-name": [ + ], + "last-active": [ { - "data": "iso" + "data": [ + null + ] } ], - "mtu": [ + "protocol-name": [ { - "data": "1585" + "data": "Direct" } ], - "address-family-flags": [ + "preference": [ { - "ifff-is-primary": [ + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } + } + ], + "nh": [ + { + "selected-next-hop": [ { "data": [ null ] } ], - "internal-flags": [ + "via": [ { - "data": "0x2" + "data": "xe-0/0/2.2004" } ] } ] - }, + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "address-family-name": [ + "data": "123.65.155.68/30" + } + ], + "rt-entry": [ + { + "active-tag": [ { - "data": "mpls" + "data": "*" } ], - "mtu": [ + "current-active": [ { - "data": "1576" + "data": [ + null + ] } ], - "maximum-labels": [ + "last-active": [ { - "data": "3" + "data": [ + null + ] } ], - "address-family-flags": [ + "protocol-name": [ { - "ifff-is-primary": [ + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } + } + ], + "nh": [ + { + "selected-next-hop": [ { "data": [ null ] } ], - "internal-flags": [ + "via": [ { - "data": "0x2" + "data": "xe-0/0/2.2005" } ] } ] - }, + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "address-family-name": [ + "data": "123.65.155.72/30" + } + ], + "rt-entry": [ + { + "active-tag": [ { - "data": "multiservice" + "data": "*" } ], - "mtu": [ + "current-active": [ { - "data": "Unlimited" + "data": [ + null + ] } ], - "address-family-flags": [ + "last-active": [ { - "ifff-is-primary": [ + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } + } + ], + "nh": [ + { + "selected-next-hop": [ { "data": [ null ] } ], - "internal-flags": [ + "via": [ { - "data": "0x2" + "data": "xe-0/0/2.2006" } ] } ] } ] - } - ] - }, - { - "name": [ - { - "data": "ae3" - } - ], - "admin-status": [ + }, { - "data": "up", "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "down" - } - ], - "local-index": [ - { - "data": "130" - } - ], - "snmp-index": [ - { - "data": "541" - } - ], - "description": [ - { - "data": "UMI" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "Unspecified" - } - ], - "bpdu-error": [ + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.156.84/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.2012" + } + ] + } + ] + } + ] + }, { - "data": "none" + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "124.34.0.0/28" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:31", + "attributes": { + "junos:seconds": "21672151" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/1/7.3000" + } + ] + } + ] + } + ] } - ], - "l2pt-error": [ + ] + }, + { + "table-name": [ { - "data": "none" + "data": "L3ACME-DEVICES.inet.0" } ], - "loopback": [ + "destination-count": [ { - "data": "disabled" + "data": "891" } ], - "if-flow-control": [ + "total-route-count": [ { - "data": "disabled" + "data": "3842" } ], - "pad-to-minimum-frame-size": [ + "active-route-count": [ { - "data": "Disabled" + "data": "762" } ], - "minimum-links-in-aggregate": [ + "holddown-route-count": [ { - "data": "1" + "data": "0" } ], - "minimum-bandwidth-in-aggregate": [ + "hidden-route-count": [ { - "data": "1bps" + "data": "135" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.28.8/29" } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:36", + "attributes": { + "junos:seconds": "31917336" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3104" + } + ] + } ] } ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ + }, { - "iff-hardware-down": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.35.136/30" } ], - "iff-snmp-traps": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:13:54", + "attributes": { + "junos:seconds": "19260834" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/0/6.3204" + } + ] + } ] } - ], - "internal-flags": [ - { - "data": "0x0" - } ] } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-ETC.inet.0" + } ], - "current-physical-address": [ + "destination-count": [ { - "data": "28:8a:1c:56:72:c1" + "data": "17" } ], - "hardware-physical-address": [ + "total-route-count": [ { - "data": "28:8a:1c:56:72:c1" + "data": "48" } ], - "interface-flapped": [ + "active-route-count": [ { - "data": "2022-12-23 14:28:20 UTC (74w6d 03:21 ago)", - "attributes": { - "junos:seconds": "45285706" - } + "data": "17" } ], - "traffic-statistics": [ + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "0" - } - ], - "input-pps": [ - { - "data": "0" - } - ], - "output-bps": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.32.216/30" } ], - "output-pps": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "3d 21:32:16", + "attributes": { + "junos:seconds": "336736" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/5.3201" + } + ] + } + ] } ] } ] }, { - "name": [ - { - "data": "ae11" - } - ], - "admin-status": [ + "table-name": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "L3ACME-EXTMGMT.inet.0" } ], - "oper-status": [ + "destination-count": [ { - "data": "up" + "data": "29" } ], - "local-index": [ + "total-route-count": [ { - "data": "131" + "data": "107" } ], - "snmp-index": [ + "active-route-count": [ { - "data": "549" + "data": "29" } ], - "description": [ + "holddown-route-count": [ { - "data": "a description" + "data": "0" } ], - "link-level-type": [ + "hidden-route-count": [ { - "data": "Ethernet" + "data": "0" } ], - "mtu": [ + "rt": [ { - "data": "1602" + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "124.46.189.128/26" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:31", + "attributes": { + "junos:seconds": "21672151" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/0/0.2960" + } + ] + } + ] + } + ] } - ], - "source-filtering": [ + ] + }, + { + "table-name": [ { - "data": "disabled" + "data": "L3ACME-EXTRANET-IC.inet.0" } ], - "speed": [ + "destination-count": [ { - "data": "10Gbps" + "data": "211" } ], - "bpdu-error": [ + "total-route-count": [ { - "data": "none" + "data": "710" } ], - "l2pt-error": [ + "active-route-count": [ { - "data": "none" + "data": "211" } ], - "loopback": [ + "holddown-route-count": [ { - "data": "disabled" + "data": "0" } ], - "if-flow-control": [ + "hidden-route-count": [ { - "data": "disabled" + "data": "0" } ], - "pad-to-minimum-frame-size": [ + "rt": [ { - "data": "Disabled" - } - ], - "minimum-links-in-aggregate": [ - { - "data": "1" - } - ], - "minimum-bandwidth-in-aggregate": [ - { - "data": "1bps" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.20.72/30" } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:14:00", + "attributes": { + "junos:seconds": "19260840" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/0/1.3004" + } + ] + } ] } ] } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-GUEST.inet.0" + } ], - "ifd-specific-config-flags": [ + "destination-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "956" } ], - "if-config-flags": [ + "total-route-count": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "4563" } ], - "current-physical-address": [ + "active-route-count": [ { - "data": "28:8a:1c:56:72:c2" + "data": "889" } ], - "hardware-physical-address": [ + "holddown-route-count": [ { - "data": "28:8a:1c:56:72:c2" + "data": "0" } ], - "interface-flapped": [ + "hidden-route-count": [ { - "data": "2024-05-25 05:26:30 UTC (5d 12:23 ago)", - "attributes": { - "junos:seconds": "476616" - } + "data": "80" } ], - "traffic-statistics": [ + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-bps": [ - { - "data": "302063576" - } - ], - "input-pps": [ - { - "data": "41582" - } - ], - "output-bps": [ - { - "data": "94875288" - } - ], - "output-pps": [ - { - "data": "22367" - } - ] - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "ae11.0" - } - ], - "local-index": [ - { - "data": "346" - } - ], - "snmp-index": [ - { - "data": "575" - } - ], - "description": [ + "rt-destination": [ { - "data": "a description" + "data": "123.65.19.248/30" } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-up": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ { - "data": "0x0" + "data": "Direct" } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "lag-traffic-statistics": [ - { - "lag-bundle": [ + ], + "preference": [ { - "input-packets": [ - { - "data": "696258617483" - } - ], - "input-pps": [ - { - "data": "41582" - } - ], - "input-bytes": [ - { - "data": "493816197619868" - } - ], - "input-bps": [ - { - "data": "302063576" - } - ], - "output-packets": [ - { - "data": "560054827039" - } - ], - "output-pps": [ - { - "data": "21877" - } - ], - "output-bytes": [ - { - "data": "492432915273815" - } - ], - "output-bps": [ - { - "data": "93864728" - } - ] + "data": "0" } ], - "lag-adaptive-statistics": [ + "age": [ { - "adaptive-adjusts": [ - { - "data": "0" - } - ], - "adaptive-scans": [ + "data": "31w5d 22:13:45", + "attributes": { + "junos:seconds": "19260825" + } + } + ], + "nh": [ + { + "selected-next-hop": [ { - "data": "0" + "data": [ + null + ] } ], - "adaptive-updates": [ + "via": [ { - "data": "0" + "data": "xe-10/2/1.3005" } ] } ] } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.27.240/29" + } ], - "filter-information": [ - {} - ], - "address-family": [ + "rt-entry": [ { - "address-family-name": [ - { - "data": "inet" - } - ], - "mtu": [ + "active-tag": [ { - "data": "1588" + "data": "*" } ], - "max-local-cache": [ + "current-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "new-hold-limit": [ + "last-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "intf-curr-cnt": [ + "protocol-name": [ { - "data": "1" + "data": "Direct" } ], - "intf-unresolved-cnt": [ + "preference": [ { "data": "0" } ], - "intf-dropcnt": [ + "age": [ { - "data": "0" + "data": "52w5d 09:55:36", + "attributes": { + "junos:seconds": "31917336" + } } ], - "address-family-flags": [ + "nh": [ { - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ + "selected-next-hop": [ { "data": [ null ] } ], - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.231.108/31" - } - ], - "ifa-local": [ + "via": [ { - "data": "13.65.231.109" + "data": "ae18.3101" } ] } ] - }, + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "address-family-name": [ + "data": "123.65.35.124/30" + } + ], + "rt-entry": [ + { + "active-tag": [ { - "data": "iso" + "data": "*" } ], - "mtu": [ + "current-active": [ { - "data": "1585" + "data": [ + null + ] } ], - "address-family-flags": [ + "last-active": [ { - "internal-flags": [ - { - "data": "0x2" - } + "data": [ + null ] } - ] - }, - { - "address-family-name": [ + ], + "protocol-name": [ { - "data": "mpls" + "data": "Direct" } ], - "mtu": [ + "preference": [ { - "data": "1576" + "data": "0" } ], - "maximum-labels": [ + "age": [ { - "data": "3" + "data": "31w5d 22:13:54", + "attributes": { + "junos:seconds": "19260834" + } } ], - "address-family-flags": [ + "nh": [ { - "internal-flags": [ + "selected-next-hop": [ { - "data": "0x2" + "data": [ + null + ] } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "multiservice" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "internal-flags": [ + ], + "via": [ { - "data": "0x2" + "data": "xe-10/0/6.3201" } ] } @@ -18634,461 +20609,298 @@ ] }, { - "name": [ - { - "data": "ae14" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ - { - "data": "132" - } - ], - "snmp-index": [ - { - "data": "552" - } - ], - "description": [ - { - "data": "a description" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1602" - } - ], - "source-filtering": [ - { - "data": "disabled" - } - ], - "speed": [ - { - "data": "10Gbps" - } - ], - "bpdu-error": [ - { - "data": "none" - } - ], - "l2pt-error": [ - { - "data": "none" - } - ], - "loopback": [ - { - "data": "disabled" - } - ], - "if-flow-control": [ + "table-name": [ { - "data": "disabled" + "data": "L3ACME-IND.inet.0" } ], - "pad-to-minimum-frame-size": [ + "destination-count": [ { - "data": "Disabled" + "data": "905" } ], - "minimum-links-in-aggregate": [ + "total-route-count": [ { - "data": "1" + "data": "3894" } ], - "minimum-bandwidth-in-aggregate": [ + "active-route-count": [ { - "data": "1bps" + "data": "771" } ], - "if-device-flags": [ + "holddown-route-count": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "0" } ], - "ifd-specific-config-flags": [ + "hidden-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "141" } ], - "if-config-flags": [ + "rt": [ { - "iff-snmp-traps": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.20.20/30" } ], - "internal-flags": [ + "rt-entry": [ { - "data": "0x0" - } - ] - } - ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:c3" - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:c3" - } - ], - "interface-flapped": [ - { - "data": "2023-10-05 07:17:56 UTC (34w0d 10:32 ago)", - "attributes": { - "junos:seconds": "20601130" - } - } - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-bps": [ - { - "data": "42775728" - } - ], - "input-pps": [ - { - "data": "8911" - } - ], - "output-bps": [ - { - "data": "55423200" - } - ], - "output-pps": [ - { - "data": "9375" - } - ] - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "ae14.0" - } - ], - "local-index": [ - { - "data": "347" - } - ], - "snmp-index": [ - { - "data": "572" - } - ], - "description": [ - { - "data": "a description" - } - ], - "if-config-flags": [ - { - "iff-up": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ { - "data": "0x0" + "data": "Direct" } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "lag-traffic-statistics": [ - { - "lag-bundle": [ + ], + "preference": [ { - "input-packets": [ - { - "data": "148542354516" - } - ], - "input-pps": [ - { - "data": "8910" - } - ], - "input-bytes": [ - { - "data": "93250239099946" - } - ], - "input-bps": [ - { - "data": "42775232" - } - ], - "output-packets": [ - { - "data": "241635372179" - } - ], - "output-pps": [ - { - "data": "9374" - } - ], - "output-bytes": [ - { - "data": "205817095420187" - } - ], - "output-bps": [ - { - "data": "55422336" - } - ] + "data": "0" } ], - "lag-adaptive-statistics": [ + "age": [ { - "adaptive-adjusts": [ - { - "data": "0" - } - ], - "adaptive-scans": [ + "data": "31w5d 22:13:45", + "attributes": { + "junos:seconds": "19260825" + } + } + ], + "nh": [ + { + "selected-next-hop": [ { - "data": "0" + "data": [ + null + ] } ], - "adaptive-updates": [ + "via": [ { - "data": "0" + "data": "xe-10/2/1.3006" } ] } ] } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.22.228/30" + } ], - "filter-information": [ - {} - ], - "address-family": [ + "rt-entry": [ { - "address-family-name": [ - { - "data": "inet" - } - ], - "mtu": [ + "active-tag": [ { - "data": "1588" + "data": "*" } ], - "max-local-cache": [ + "current-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "new-hold-limit": [ + "last-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "intf-curr-cnt": [ + "protocol-name": [ { - "data": "1" + "data": "Direct" } ], - "intf-unresolved-cnt": [ + "preference": [ { "data": "0" } ], - "intf-dropcnt": [ + "age": [ { - "data": "0" + "data": "23w6d 08:24:01", + "attributes": { + "junos:seconds": "14459041" + } } ], - "address-family-flags": [ + "nh": [ { - "ifff-sample-input": [ - { - "data": [ - null - ] - } - ], - "ifff-sendbcast-pkt-to-re": [ + "selected-next-hop": [ { "data": [ null ] } ], - "internal-flags": [ + "via": [ { - "data": "0x2" + "data": "ae25.3007" } ] } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.27.248/29" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } ], - "interface-address": [ + "current-active": [ { - "ifa-flags": [ - { - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "13.65.231.118/31" - } - ], - "ifa-local": [ - { - "data": "13.65.231.118" - } + "data": [ + null ] } - ] - }, - { - "address-family-name": [ + ], + "last-active": [ { - "data": "iso" + "data": [ + null + ] } ], - "mtu": [ + "protocol-name": [ { - "data": "1585" + "data": "Direct" } ], - "address-family-flags": [ + "preference": [ { - "internal-flags": [ + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:36", + "attributes": { + "junos:seconds": "31917336" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ { - "data": "0x2" + "data": "ae18.3102" } ] } ] - }, + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "address-family-name": [ + "data": "123.65.35.128/30" + } + ], + "rt-entry": [ + { + "active-tag": [ { - "data": "mpls" + "data": "*" } ], - "mtu": [ + "current-active": [ { - "data": "1576" + "data": [ + null + ] } ], - "maximum-labels": [ + "last-active": [ { - "data": "3" + "data": [ + null + ] } ], - "address-family-flags": [ + "protocol-name": [ { - "internal-flags": [ - { - "data": "0x2" - } - ] + "data": "Direct" } - ] - }, - { - "address-family-name": [ + ], + "preference": [ { - "data": "multiservice" + "data": "0" } ], - "mtu": [ + "age": [ { - "data": "Unlimited" + "data": "31w5d 22:13:54", + "attributes": { + "junos:seconds": "19260834" + } } ], - "address-family-flags": [ + "nh": [ { - "internal-flags": [ + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ { - "data": "0x2" + "data": "xe-10/0/6.3202" } ] } @@ -19099,952 +20911,803 @@ ] }, { - "name": [ - { - "data": "cbp0" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ + "table-name": [ { - "data": "up" + "data": "L3ACME-MGMT-MCBU.inet.0" } ], - "local-index": [ + "destination-count": [ { - "data": "134" + "data": "138" } ], - "snmp-index": [ + "total-route-count": [ { - "data": "502" + "data": "940" } ], - "if-type": [ + "active-route-count": [ { - "data": "Ethernet" + "data": "135" } ], - "link-level-type": [ + "holddown-route-count": [ { - "data": "Ethernet" + "data": "0" } ], - "mtu": [ + "hidden-route-count": [ { - "data": "9192" + "data": "4" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.19.208/30" } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:39", + "attributes": { + "junos:seconds": "21672159" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/1/4.2902" + } + ] + } ] } ] } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ + ] + }, + { + "table-name": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "L3ACME-NBL-ICS.inet.0" } ], - "link-type": [ + "destination-count": [ { - "data": "Full-Duplex" + "data": "13" } ], - "if-media-flags": [ + "total-route-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "33" } ], - "current-physical-address": [ + "active-route-count": [ { - "data": "2a:8a:1c:56:72:11", - "attributes": { - "junos:format": "MAC 2a:8a:1c:56:72:11" - } + "data": "13" } ], - "hardware-physical-address": [ + "holddown-route-count": [ { - "data": "2a:8a:1c:56:72:11", - "attributes": { - "junos:format": "MAC 2a:8a:1c:56:72:11" - } + "data": "0" } ], - "interface-flapped": [ + "hidden-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "0" } ], - "traffic-statistics": [ + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-packets": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.37.8/30" } ], - "output-packets": [ + "rt-entry": [ { - "data": "0" - } - ] - } - ] - }, - { - "name": [ - { - "data": "demux0" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3032" + } + ] + } + ] + } + ] } - ], - "oper-status": [ + ] + }, + { + "table-name": [ { - "data": "up" + "data": "L3ACME-NBLX.inet.0" } ], - "local-index": [ + "destination-count": [ { - "data": "133" + "data": "17" } ], - "snmp-index": [ + "total-route-count": [ { - "data": "501" + "data": "27" } ], - "if-type": [ + "active-route-count": [ { - "data": "Software-Pseudo" + "data": "17" } ], - "mtu": [ + "holddown-route-count": [ { - "data": "9192" + "data": "0" } ], - "clocking": [ + "hidden-route-count": [ { - "data": "1" + "data": "0" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.36.248/30" } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 21:54:51", + "attributes": { + "junos:seconds": "19259691" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3031" + } + ] + } ] } ] } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NETMGMT.inet.0" + } ], - "ifd-specific-config-flags": [ + "destination-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "128" } ], - "if-config-flags": [ + "total-route-count": [ { - "iff-point-to-point": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "497" } ], - "link-type": [ + "active-route-count": [ { - "data": "Full-Duplex" + "data": "128" } ], - "if-media-flags": [ + "holddown-route-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "0" } ], - "interface-flapped": [ + "hidden-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "0" } ], - "traffic-statistics": [ + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-packets": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.0.192/29" } ], - "output-packets": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:31", + "attributes": { + "junos:seconds": "21672151" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/0/0.2952" + } + ] + } + ] } ] - } - ] - }, - { - "name": [ - { - "data": "dsc" - } - ], - "admin-status": [ + }, { - "data": "up", "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ - { - "data": "5" - } - ], - "snmp-index": [ - { - "data": "5" - } - ], - "if-type": [ - { - "data": "Software-Pseudo" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.212.0/26" } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:31", + "attributes": { + "junos:seconds": "21672151" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/0/0.2950" + } + ] + } ] } ] } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-PC-DEF.inet.0" + } ], - "ifd-specific-config-flags": [ + "destination-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "16" } ], - "if-config-flags": [ + "total-route-count": [ { - "iff-point-to-point": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "31" } ], - "if-media-flags": [ + "active-route-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "16" } ], - "interface-flapped": [ + "holddown-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "0" } ], - "traffic-statistics": [ + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-packets": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.22.40/30" } ], - "output-packets": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "26w0d 20:43:36", + "attributes": { + "junos:seconds": "15799416" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/0/4.902" + } + ] + } + ] } ] } ] }, { - "name": [ - { - "data": "em0" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ + "table-name": [ { - "data": "2" + "data": "L3ACME-PC-ABC.inet.0" } ], - "snmp-index": [ + "destination-count": [ { - "data": "17" + "data": "209" } ], - "if-type": [ + "total-route-count": [ { - "data": "Ethernet" + "data": "1267" } ], - "link-level-type": [ + "active-route-count": [ { - "data": "Ethernet" + "data": "200" } ], - "mtu": [ + "holddown-route-count": [ { - "data": "1514" + "data": "0" } ], - "speed": [ + "hidden-route-count": [ { - "data": "1000mbps" + "data": "13" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.19.200/30" } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ - { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] - } - ], - "link-type": [ - { - "data": "Full-Duplex" - } - ], - "if-media-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "current-physical-address": [ - { - "data": "02:00:00:00:00:04", - "attributes": { - "junos:format": "MAC 02:00:00:00:00:04" - } - } - ], - "hardware-physical-address": [ - { - "data": "02:00:00:00:00:04", - "attributes": { - "junos:format": "MAC 02:00:00:00:00:04" - } - } - ], - "interface-flapped": [ - { - "data": "2022-12-23 14:26:58 UTC (74w6d 03:23 ago)", - "attributes": { - "junos:seconds": "45285788" - } - } - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "1990791873" - } - ], - "output-packets": [ - { - "data": "2011337448" - } - ] - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "em0.0" - } - ], - "local-index": [ - { - "data": "3" - } - ], - "snmp-index": [ - { - "data": "18" - } - ], - "if-config-flags": [ - { - "iff-up": [ + "active-tag": [ { - "data": [ - null - ] + "data": "*" } ], - "iff-snmp-traps": [ + "current-active": [ { "data": [ null ] } ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "1990791873" - } - ], - "output-packets": [ - { - "data": "2011337448" - } - ] - } - ], - "filter-information": [ - {} - ], - "address-family": [ - { - "address-family-name": [ - { - "data": "inet" - } - ], - "mtu": [ - { - "data": "1500" - } - ], - "max-local-cache": [ - { - "data": "75000" - } - ], - "new-hold-limit": [ + "last-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "intf-curr-cnt": [ + "protocol-name": [ { - "data": "1" + "data": "Direct" } ], - "intf-unresolved-cnt": [ + "preference": [ { "data": "0" } ], - "intf-dropcnt": [ + "age": [ { - "data": "0" + "data": "35w5d 20:02:39", + "attributes": { + "junos:seconds": "21672159" + } } ], - "address-family-flags": [ + "nh": [ { - "ifff-is-primary": [ + "selected-next-hop": [ { "data": [ null ] } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "10/8" - } - ], - "ifa-local": [ - { - "data": "10.0.0.4" - } - ], - "ifa-broadcast": [ - { - "data": "10.255.255.255" - } - ] - }, - { - "ifa-flags": [ - { - "ifaf-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-kernel": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "128/2" - } - ], - "ifa-local": [ - { - "data": "133.4.74.1" - } - ], - "ifa-broadcast": [ - { - "data": "186.53.226.255" - } - ] - }, - { - "ifa-flags": [ - { - "ifaf-primary": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "128/2" - } - ], - "ifa-local": [ - { - "data": "133.4.74.4" - } ], - "ifa-broadcast": [ + "via": [ { - "data": "186.53.226.255" + "data": "ge-11/1/4.2901" } ] } ] - }, + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "address-family-name": [ - { - "data": "inet6" - } - ], - "mtu": [ + "data": "123.65.21.240/30" + } + ], + "rt-entry": [ + { + "active-tag": [ { - "data": "1500" + "data": "*" } ], - "max-local-cache": [ + "current-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "new-hold-limit": [ + "last-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "intf-curr-cnt": [ + "protocol-name": [ { - "data": "1" + "data": "Direct" } ], - "intf-unresolved-cnt": [ + "preference": [ { "data": "0" } ], - "intf-dropcnt": [ + "age": [ { - "data": "0" + "data": "26w0d 20:43:36", + "attributes": { + "junos:seconds": "15799416" + } } ], - "address-family-flags": [ + "nh": [ { - "ifff-is-primary": [ + "selected-next-hop": [ { "data": [ null ] } + ], + "via": [ + { + "data": "ge-11/0/4.900" + } ] } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.38.176/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } ], - "interface-address": [ + "current-active": [ { - "ifa-flags": [ - { - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "ifa-destination": [ - { - "data": "af06:e3b6:61bb:2fc8:9927:61f9:4308:8300/64" - } - ], - "ifa-local": [ - { - "data": "af06:e3b6:61bb:2fc8:9b44:3a70:4d3a:8304" - } - ], - "interface-address": [ - { - "in6-addr-flags": [ - { - "ifaf-none": [ - { - "data": [ - null - ] - } - ] - } - ] - } + "data": [ + null ] - }, + } + ], + "last-active": [ { - "ifa-flags": [ - { - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "af47:43cc:8ad3:722:24f5:96f1:497f:5400/64" - } - ], - "ifa-local": [ - { - "data": "af47:43cc:8ad3:722:24ff:168e:79be:a504" - } - ], - "interface-address": [ - { - "in6-addr-flags": [ - { - "ifaf-none": [ - { - "data": [ - null - ] - } - ] - } - ] - } + "data": [ + null ] } - ] - }, - { - "address-family-name": [ + ], + "protocol-name": [ { - "data": "tnp" + "data": "Direct" } ], - "mtu": [ + "preference": [ { - "data": "1500" + "data": "0" } ], - "address-family-flags": [ + "age": [ { - "ifff-primary": [ + "data": "31w5d 22:13:54", + "attributes": { + "junos:seconds": "19260834" + } + } + ], + "nh": [ + { + "selected-next-hop": [ { "data": [ null ] } ], - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "interface-address": [ - { - "attributes": { - "heading": "Addresses" - }, - "ifa-local": [ + "via": [ { - "data": "0x4" + "data": "xe-10/0/6.3206" } ] } @@ -20055,399 +21718,332 @@ ] }, { - "name": [ + "table-name": [ { - "data": "em1" + "data": "L3ACME-RED.inet.0" } ], - "admin-status": [ + "destination-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "225" } ], - "oper-status": [ + "total-route-count": [ { - "data": "down" + "data": "873" } ], - "local-index": [ + "active-route-count": [ { - "data": "65" + "data": "215" } ], - "snmp-index": [ + "holddown-route-count": [ { - "data": "23" + "data": "0" } ], - "description": [ + "hidden-route-count": [ { - "data": "UMI" + "data": "11" } ], - "if-type": [ + "rt": [ { - "data": "Ethernet" - } - ], - "link-level-type": [ - { - "data": "Ethernet" - } - ], - "mtu": [ - { - "data": "1514" - } - ], - "speed": [ - { - "data": "1000mbps" - } - ], - "if-device-flags": [ - { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.28.16/29" } ], - "ifdf-no-carrier": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:36", + "attributes": { + "junos:seconds": "31917336" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3105" + } + ] + } ] } ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ + }, { - "iff-hardware-down": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.35.140/30" } ], - "iff-snmp-traps": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:13:54", + "attributes": { + "junos:seconds": "19260834" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/0/6.3205" + } + ] + } ] } ] } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RTSN.inet.0" + } ], - "link-type": [ + "destination-count": [ { - "data": "Full-Duplex" + "data": "75" } ], - "if-media-flags": [ + "total-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "173" } ], - "current-physical-address": [ + "active-route-count": [ { - "data": "02:00:02:00:00:04", - "attributes": { - "junos:format": "MAC 02:00:02:00:00:04" - } + "data": "47" } ], - "hardware-physical-address": [ + "holddown-route-count": [ { - "data": "02:00:02:00:00:04", - "attributes": { - "junos:format": "MAC 02:00:02:00:00:04" - } + "data": "0" } ], - "interface-flapped": [ + "hidden-route-count": [ { - "data": "2022-12-23 14:26:12 UTC (74w6d 03:23 ago)", - "attributes": { - "junos:seconds": "45285834" - } + "data": "28" } ], - "traffic-statistics": [ + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] - } - ], - "logical-interface": [ - { - "name": [ - { - "data": "em1.0" - } - ], - "local-index": [ - { - "data": "4" - } - ], - "snmp-index": [ + "rt-destination": [ { - "data": "24" + "data": "123.65.20.80/30" } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-device-down": [ + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "last-active": [ { "data": [ null ] } ], - "internal-flags": [ + "protocol-name": [ { - "data": "0x0" + "data": "Direct" } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ + ], + "preference": [ { "data": "0" } ], - "output-packets": [ + "age": [ { - "data": "0" + "data": "31w5d 22:13:45", + "attributes": { + "junos:seconds": "19260825" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/2/1.3003" + } + ] } ] } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.35.64/30" + } ], - "filter-information": [ - {} - ], - "address-family": [ + "rt-entry": [ { - "address-family-name": [ - { - "data": "inet" - } - ], - "mtu": [ + "active-tag": [ { - "data": "1500" + "data": "*" } ], - "max-local-cache": [ + "current-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "new-hold-limit": [ + "last-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "intf-curr-cnt": [ + "protocol-name": [ { - "data": "0" + "data": "Direct" } ], - "intf-unresolved-cnt": [ + "preference": [ { "data": "0" } ], - "intf-dropcnt": [ + "age": [ { - "data": "0" + "data": "23w6d 08:24:01", + "attributes": { + "junos:seconds": "14459041" + } } ], - "address-family-flags": [ + "nh": [ { - "ifff-none": [ + "selected-next-hop": [ { "data": [ null ] } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "ifaf-down": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "10/8" - } - ], - "ifa-local": [ - { - "data": "10.0.0.1" - } - ], - "ifa-broadcast": [ - { - "data": "10.255.255.255" - } - ] - }, - { - "ifa-flags": [ - { - "ifaf-primary": [ - { - "data": [ - null - ] - } - ], - "ifaf-down": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "128/2" - } - ], - "ifa-local": [ - { - "data": "133.4.74.1" - } ], - "ifa-broadcast": [ - { - "data": "186.53.226.255" - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "tnp" - } - ], - "mtu": [ - { - "data": "1500" - } - ], - "address-family-flags": [ - { - "ifff-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "interface-address": [ - { - "attributes": { - "heading": "Addresses" - }, - "ifa-local": [ + "via": [ { - "data": "0x4" + "data": "ae25.3015" } ] } @@ -20458,1432 +22054,1852 @@ ] }, { - "name": [ - { - "data": "esi" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ + "table-name": [ { - "data": "139" + "data": "L3ACME-USER.inet.0" } ], - "snmp-index": [ + "destination-count": [ { - "data": "580" + "data": "911" } ], - "if-type": [ + "total-route-count": [ { - "data": "Software-Pseudo" + "data": "4274" } ], - "link-level-type": [ + "active-route-count": [ { - "data": "VxLAN-Tunnel-Endpoint" + "data": "849" } ], - "mtu": [ + "holddown-route-count": [ { - "data": "Unlimited" + "data": "0" } ], - "speed": [ + "hidden-route-count": [ { - "data": "Unlimited" + "data": "69" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.28.0/29" } ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifd-specific-config-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "if-config-flags": [ - { - "iff-snmp-traps": [ + "rt-entry": [ { - "data": [ - null - ] - } - ] - } - ], - "link-type": [ - { - "data": "Full-Duplex" - } - ], - "if-media-flags": [ - { - "ifmf-none": [ - { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:36", + "attributes": { + "junos:seconds": "31917336" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3103" + } + ] + } ] } ] - } - ], - "interface-flapped": [ - { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-packets": [ + "rt-destination": [ { - "data": "0" + "data": "123.65.35.132/30" } ], - "output-packets": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "31w5d 22:13:54", + "attributes": { + "junos:seconds": "19260834" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-10/0/6.3203" + } + ] + } + ] } ] } ] }, { - "name": [ - { - "data": "fti0" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ + "table-name": [ { - "data": "141" + "data": "L3EXT-SIP.inet.0" } ], - "snmp-index": [ + "destination-count": [ { - "data": "556" + "data": "33" } ], - "if-type": [ + "total-route-count": [ { - "data": "FTI" + "data": "71" } ], - "link-level-type": [ + "active-route-count": [ { - "data": "Flexible-tunnel-Interface" + "data": "20" } ], - "mtu": [ + "holddown-route-count": [ { - "data": "Unlimited" + "data": "0" } ], - "speed": [ + "hidden-route-count": [ { - "data": "Unlimited" + "data": "37" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "123.65.8.0/30" } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:39", + "attributes": { + "junos:seconds": "21672159" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/0/6.2000" + } + ] + } ] } ] - } - ], - "ifd-specific-config-flags": [ + }, { - "internal-flags": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "0x0" + "data": "124.22.0.0/28" } - ] - } - ], - "if-config-flags": [ - { - "iff-snmp-traps": [ + ], + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "35w5d 20:02:31", + "attributes": { + "junos:seconds": "21672151" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-11/0/7.2000" + } + ] + } ] } ] } + ] + }, + { + "table-name": [ + { + "data": "iso.0" + } ], - "link-type": [ + "destination-count": [ { - "data": "Full-Duplex" + "data": "1" } ], - "if-media-flags": [ + "total-route-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "1" } ], - "interface-flapped": [ + "active-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "1" } ], - "traffic-statistics": [ + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-packets": [ + "rt-destination": [ { - "data": "0" + "data": "49.0123.0065.0224.0011" } ], - "output-packets": [ + "rt-prefix-length": [ { - "data": "0" + "data": "72", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "107w5d 11:05:43", + "attributes": { + "junos:seconds": "65185543" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] } ] } ] }, { - "name": [ + "table-name": [ { - "data": "fti1" + "data": "mpls.0" } ], - "admin-status": [ + "destination-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "8466" } ], - "oper-status": [ + "total-route-count": [ { - "data": "up" + "data": "8466" } ], - "local-index": [ + "active-route-count": [ { - "data": "142" + "data": "8466" } ], - "snmp-index": [ + "holddown-route-count": [ { - "data": "557" + "data": "0" } ], - "if-type": [ + "hidden-route-count": [ { - "data": "FTI" + "data": "0" } ], - "link-level-type": [ + "restart-state": [ { - "data": "Flexible-tunnel-Interface" + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn.0" } ], - "mtu": [ + "destination-count": [ { - "data": "Unlimited" + "data": "365319" } ], - "speed": [ + "total-route-count": [ { - "data": "Unlimited" + "data": "730638" } ], - "if-device-flags": [ + "active-route-count": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "365319" } ], - "ifd-specific-config-flags": [ + "holddown-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "0" } ], - "if-config-flags": [ + "hidden-route-count": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "0" } ], - "link-type": [ + "restart-state": [ { - "data": "Full-Duplex" + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "inet6.0" } ], - "if-media-flags": [ + "destination-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "2" } ], - "interface-flapped": [ + "total-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "2" } ], - "traffic-statistics": [ + "active-route-count": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "fe80::6af3:8e0f:fc30:d2ae/128", + "attributes": { + "junos:emit": "emit" + } } ], - "output-packets": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "107w5d 11:05:43", + "attributes": { + "junos:seconds": "65185543" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] } ] } ] }, { - "name": [ + "table-name": [ { - "data": "fti2" + "data": "inet6.3" } ], - "admin-status": [ + "destination-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "97" } ], - "oper-status": [ + "total-route-count": [ { - "data": "up" + "data": "97" } ], - "local-index": [ + "active-route-count": [ { - "data": "143" + "data": "97" } ], - "snmp-index": [ + "holddown-route-count": [ { - "data": "561" + "data": "0" } ], - "if-type": [ + "hidden-route-count": [ { - "data": "FTI" + "data": "0" } ], - "link-level-type": [ + "restart-state": [ { - "data": "Flexible-tunnel-Interface" + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "INTERNET.inet6.0" } ], - "mtu": [ + "destination-count": [ { - "data": "Unlimited" + "data": "61899" } ], - "speed": [ + "total-route-count": [ { - "data": "Unlimited" + "data": "311722" } ], - "if-device-flags": [ + "active-route-count": [ { - "ifdf-present": [ + "data": "61899" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "2620:16d:ff00:40b0::/64", + "attributes": { + "junos:emit": "emit" + } } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "12w4d 10:41:55", + "attributes": { + "junos:seconds": "7641715" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae19.2000" + } + ] + } ] } ] - } - ], - "ifd-specific-config-flags": [ + }, { - "internal-flags": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "0x0" + "data": "2620:16d:ff00:40b1::/64", + "attributes": { + "junos:emit": "emit" + } } - ] - } - ], - "if-config-flags": [ - { - "iff-snmp-traps": [ + ], + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "12w4d 10:41:55", + "attributes": { + "junos:seconds": "7641715" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae19.2001" + } + ] + } ] } ] - } - ], - "link-type": [ - { - "data": "Full-Duplex" - } - ], - "if-media-flags": [ + }, { - "ifmf-none": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null + "data": "2620:16d:ff00:40b2::/64", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "12w4d 10:41:55", + "attributes": { + "junos:seconds": "7641715" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae19.2003" + } + ] + } ] } ] - } - ], - "interface-flapped": [ - { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } - } - ], - "traffic-statistics": [ + }, { "attributes": { "junos:style": "brief" }, - "input-packets": [ + "rt-destination": [ { - "data": "0" + "data": "2620:16d:ff00:4106::/64", + "attributes": { + "junos:emit": "emit" + } } ], - "output-packets": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "107w5d 11:02:13", + "attributes": { + "junos:seconds": "65185333" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae17.2100" + } + ] + } + ] } ] } ] }, { - "name": [ + "table-name": [ { - "data": "fti3" + "data": "L3ACME-REG.inet6.0" } ], - "admin-status": [ + "destination-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "1" } ], - "oper-status": [ + "total-route-count": [ { - "data": "up" + "data": "1" } ], - "local-index": [ + "active-route-count": [ { - "data": "144" + "data": "1" } ], - "snmp-index": [ + "holddown-route-count": [ { - "data": "562" + "data": "0" } ], - "if-type": [ + "hidden-route-count": [ { - "data": "FTI" + "data": "0" } - ], - "link-level-type": [ + ] + }, + { + "table-name": [ { - "data": "Flexible-tunnel-Interface" + "data": "L3ACME-COMMSVCS.inet6.0" } ], - "mtu": [ + "destination-count": [ { - "data": "Unlimited" + "data": "1" } ], - "speed": [ + "total-route-count": [ { - "data": "Unlimited" + "data": "1" } ], - "if-device-flags": [ + "active-route-count": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "1" } ], - "ifd-specific-config-flags": [ + "holddown-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "0" } ], - "if-config-flags": [ + "hidden-route-count": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "0" } - ], - "link-type": [ + ] + }, + { + "table-name": [ { - "data": "Full-Duplex" + "data": "L3ACME-CORP.inet6.0" } ], - "if-media-flags": [ + "destination-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "18" } ], - "interface-flapped": [ + "total-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } - } - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] - } - ] - }, - { - "name": [ - { - "data": "fti4" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ - { - "data": "145" - } - ], - "snmp-index": [ - { - "data": "574" - } - ], - "if-type": [ - { - "data": "FTI" + "data": "70" } ], - "link-level-type": [ + "active-route-count": [ { - "data": "Flexible-tunnel-Interface" + "data": "17" } ], - "mtu": [ + "holddown-route-count": [ { - "data": "Unlimited" + "data": "0" } ], - "speed": [ + "hidden-route-count": [ { - "data": "Unlimited" + "data": "1" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "2620:16d:ff00:1010::/64", + "attributes": { + "junos:emit": "emit" + } } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:25", + "attributes": { + "junos:seconds": "31917325" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3100" + } + ] + } ] } ] } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DEVICES.inet6.0" + } ], - "ifd-specific-config-flags": [ + "destination-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "23" } ], - "if-config-flags": [ + "total-route-count": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "82" } ], - "link-type": [ + "active-route-count": [ { - "data": "Full-Duplex" + "data": "22" } ], - "if-media-flags": [ + "holddown-route-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "0" } ], - "interface-flapped": [ + "hidden-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "1" } ], - "traffic-statistics": [ + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-packets": [ + "rt-destination": [ { - "data": "0" + "data": "2620:16d:ff00:1014::/64", + "attributes": { + "junos:emit": "emit" + } } ], - "output-packets": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:25", + "attributes": { + "junos:seconds": "31917325" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3104" + } + ] + } + ] } ] } ] }, { - "name": [ + "table-name": [ { - "data": "fti5" + "data": "L3ACME-ETC.inet6.0" } ], - "admin-status": [ + "destination-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "1" } ], - "oper-status": [ + "total-route-count": [ { - "data": "up" + "data": "1" } ], - "local-index": [ + "active-route-count": [ { - "data": "146" + "data": "1" } ], - "snmp-index": [ + "holddown-route-count": [ { - "data": "584" + "data": "0" } ], - "if-type": [ + "hidden-route-count": [ { - "data": "FTI" + "data": "0" } - ], - "link-level-type": [ + ] + }, + { + "table-name": [ { - "data": "Flexible-tunnel-Interface" + "data": "L3ACME-EXTMGMT.inet6.0" } ], - "mtu": [ + "destination-count": [ { - "data": "Unlimited" + "data": "1" } ], - "speed": [ + "total-route-count": [ { - "data": "Unlimited" + "data": "1" } ], - "if-device-flags": [ + "active-route-count": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "1" } ], - "ifd-specific-config-flags": [ + "holddown-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "0" } ], - "if-config-flags": [ + "hidden-route-count": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "0" } - ], - "link-type": [ + ] + }, + { + "table-name": [ { - "data": "Full-Duplex" + "data": "L3ACME-EXTRANET-IC.inet6.0" } ], - "if-media-flags": [ + "destination-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "1" } ], - "interface-flapped": [ + "total-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "1" } ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] - } - ] - }, - { - "name": [ + "active-route-count": [ { - "data": "fti6" + "data": "1" } ], - "admin-status": [ + "holddown-route-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "0" } ], - "oper-status": [ + "hidden-route-count": [ { - "data": "up" + "data": "0" } - ], - "local-index": [ + ] + }, + { + "table-name": [ { - "data": "147" + "data": "L3ACME-GUEST.inet6.0" } ], - "snmp-index": [ + "destination-count": [ { - "data": "585" + "data": "24" } ], - "if-type": [ + "total-route-count": [ { - "data": "FTI" + "data": "86" } ], - "link-level-type": [ + "active-route-count": [ { - "data": "Flexible-tunnel-Interface" + "data": "23" } ], - "mtu": [ + "holddown-route-count": [ { - "data": "Unlimited" + "data": "0" } ], - "speed": [ + "hidden-route-count": [ { - "data": "Unlimited" + "data": "1" } ], - "if-device-flags": [ + "rt": [ { - "ifdf-present": [ + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": [ - null - ] + "data": "2620:16d:ff00:1011::/64", + "attributes": { + "junos:emit": "emit" + } } ], - "ifdf-running": [ + "rt-entry": [ { - "data": [ - null + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:25", + "attributes": { + "junos:seconds": "31917325" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3101" + } + ] + } ] } ] } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-IND.inet6.0" + } ], - "ifd-specific-config-flags": [ + "destination-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "17" } ], - "if-config-flags": [ + "total-route-count": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "66" } ], - "link-type": [ + "active-route-count": [ { - "data": "Full-Duplex" + "data": "16" } ], - "if-media-flags": [ + "holddown-route-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "0" } ], - "interface-flapped": [ + "hidden-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "1" } ], - "traffic-statistics": [ + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-packets": [ + "rt-destination": [ { - "data": "0" + "data": "2620:16d:ff00:1012::/64", + "attributes": { + "junos:emit": "emit" + } } ], - "output-packets": [ + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:25", + "attributes": { + "junos:seconds": "31917325" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3102" + } + ] + } + ] } ] } ] }, { - "name": [ + "table-name": [ { - "data": "fti7" + "data": "L3ACME-MGMT-MCBU.inet6.0" } ], - "admin-status": [ + "destination-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "1" } ], - "oper-status": [ + "total-route-count": [ { - "data": "up" + "data": "1" } ], - "local-index": [ + "active-route-count": [ { - "data": "148" + "data": "1" } ], - "snmp-index": [ + "holddown-route-count": [ { - "data": "586" + "data": "0" } ], - "if-type": [ + "hidden-route-count": [ { - "data": "FTI" + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NBL-ICS.inet6.0" } ], - "link-level-type": [ + "destination-count": [ { - "data": "Flexible-tunnel-Interface" + "data": "1" } ], - "mtu": [ + "total-route-count": [ { - "data": "Unlimited" + "data": "1" } ], - "speed": [ + "active-route-count": [ { - "data": "Unlimited" + "data": "1" } ], - "if-device-flags": [ + "holddown-route-count": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "0" } ], - "ifd-specific-config-flags": [ + "hidden-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NBLX.inet6.0" } ], - "if-config-flags": [ + "destination-count": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "1" } ], - "link-type": [ + "total-route-count": [ { - "data": "Full-Duplex" + "data": "1" } ], - "if-media-flags": [ + "active-route-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "1" } ], - "interface-flapped": [ + "holddown-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "0" } ], - "traffic-statistics": [ + "hidden-route-count": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "0" } ] }, { - "name": [ + "table-name": [ { - "data": "fxp0" + "data": "L3ACME-NETMGMT.inet6.0" } ], - "admin-status": [ + "destination-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "1" } ], - "oper-status": [ + "total-route-count": [ { - "data": "up" + "data": "1" } ], - "local-index": [ + "active-route-count": [ { - "data": "64" + "data": "1" } ], - "snmp-index": [ + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-PC-DEF.inet6.0" + } + ], + "destination-count": [ { "data": "1" } ], - "if-type": [ + "total-route-count": [ { - "data": "Ethernet" + "data": "1" } ], - "link-level-type": [ + "active-route-count": [ { - "data": "Ethernet" + "data": "1" } ], - "mtu": [ + "holddown-route-count": [ { - "data": "1514" + "data": "0" } ], - "speed": [ + "hidden-route-count": [ { - "data": "1000mbps" + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-PC-ABC.inet6.0" } ], - "if-device-flags": [ + "destination-count": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "1" } ], - "ifd-specific-config-flags": [ + "total-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "1" } ], - "if-config-flags": [ + "active-route-count": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "1" } ], - "link-type": [ + "holddown-route-count": [ { - "data": "Full-Duplex" + "data": "0" } ], - "if-media-flags": [ + "hidden-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RED.inet6.0" } ], - "current-physical-address": [ + "destination-count": [ { - "data": "28:8a:1c:56:72:ff", - "attributes": { - "junos:format": "MAC 28:8a:1c:56:72:ff" - } + "data": "17" } ], - "hardware-physical-address": [ + "total-route-count": [ { - "data": "28:8a:1c:56:72:ff", - "attributes": { - "junos:format": "MAC 28:8a:1c:56:72:ff" - } + "data": "56" } ], - "interface-flapped": [ + "active-route-count": [ { - "data": "2022-12-23 14:26:12 UTC (74w6d 03:23 ago)", - "attributes": { - "junos:seconds": "45285834" - } + "data": "16" } ], - "traffic-statistics": [ + "holddown-route-count": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "23683758" - } - ], - "output-packets": [ - { - "data": "1631858" - } - ] + "data": "0" } ], - "logical-interface": [ + "hidden-route-count": [ { - "name": [ - { - "data": "fxp0.0" - } - ], - "local-index": [ - { - "data": "5" - } - ], - "snmp-index": [ - { - "data": "13" - } - ], - "description": [ + "data": "2" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ { - "data": "MGMT : OOB : ACME9525-MS1 Gig 0/4" + "data": "2620:16d:ff00:1015::/64", + "attributes": { + "junos:emit": "emit" + } } ], - "if-config-flags": [ + "rt-entry": [ { - "iff-up": [ + "active-tag": [ { - "data": [ - null - ] + "data": "*" } ], - "iff-snmp-traps": [ + "current-active": [ { "data": [ null ] } ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "23683758" - } - ], - "output-packets": [ - { - "data": "1631858" - } - ] - } - ], - "filter-information": [ - {} - ], - "address-family": [ - { - "address-family-name": [ - { - "data": "inet" - } - ], - "mtu": [ - { - "data": "1500" - } - ], - "max-local-cache": [ - { - "data": "75000" - } - ], - "new-hold-limit": [ + "last-active": [ { - "data": "75000" + "data": [ + null + ] } ], - "intf-curr-cnt": [ + "protocol-name": [ { - "data": "0" + "data": "Direct" } ], - "intf-unresolved-cnt": [ + "preference": [ { "data": "0" } ], - "intf-dropcnt": [ + "age": [ { - "data": "0" + "data": "52w5d 09:55:25", + "attributes": { + "junos:seconds": "31917325" + } } ], - "address-family-flags": [ + "nh": [ { - "ifff-is-primary": [ + "selected-next-hop": [ { "data": [ null ] } ], - "ifff-sendbcast-pkt-to-re": [ + "via": [ { - "data": [ - null - ] + "data": "ae18.3105" } ] } @@ -21894,366 +23910,300 @@ ] }, { - "name": [ + "table-name": [ { - "data": "gre" + "data": "L3ACME-RTSN.inet6.0" } ], - "admin-status": [ + "destination-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "1" } ], - "oper-status": [ + "total-route-count": [ { - "data": "up" + "data": "1" } ], - "local-index": [ + "active-route-count": [ { - "data": "10" + "data": "1" } ], - "snmp-index": [ + "holddown-route-count": [ { - "data": "8" + "data": "0" } ], - "if-type": [ + "hidden-route-count": [ { - "data": "GRE" + "data": "0" } - ], - "link-level-type": [ + ] + }, + { + "table-name": [ { - "data": "GRE" + "data": "L3ACME-USER.inet6.0" } ], - "mtu": [ + "destination-count": [ { - "data": "Unlimited" + "data": "17" } ], - "speed": [ + "total-route-count": [ { - "data": "Unlimited" + "data": "66" } ], - "if-device-flags": [ + "active-route-count": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "16" } ], - "ifd-specific-config-flags": [ + "holddown-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "0" } ], - "if-config-flags": [ + "hidden-route-count": [ { - "iff-point-to-point": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "1" } ], - "traffic-statistics": [ + "rt": [ { "attributes": { "junos:style": "brief" }, - "input-packets": [ + "rt-destination": [ { - "data": "0" - } - ], - "output-packets": [ + "data": "2620:16d:ff00:1013::/64", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ { - "data": "0" + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "52w5d 09:55:25", + "attributes": { + "junos:seconds": "31917325" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae18.3103" + } + ] + } + ] } ] } ] }, { - "name": [ + "table-name": [ { - "data": "ipip" + "data": "L3EXT-SIP.inet6.0" } ], - "admin-status": [ + "destination-count": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "1" } ], - "oper-status": [ + "total-route-count": [ { - "data": "up" + "data": "1" } ], - "local-index": [ + "active-route-count": [ { - "data": "11" + "data": "1" } ], - "snmp-index": [ + "holddown-route-count": [ { - "data": "9" + "data": "0" } ], - "if-type": [ + "hidden-route-count": [ { - "data": "IPIP" + "data": "0" } - ], - "link-level-type": [ + ] + }, + { + "table-name": [ { - "data": "IP-over-IP" + "data": "bgp.l2vpn.0" } ], - "mtu": [ + "destination-count": [ { - "data": "Unlimited" + "data": "19" } ], - "speed": [ + "total-route-count": [ { - "data": "Unlimited" + "data": "38" } ], - "if-device-flags": [ + "active-route-count": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "19" } ], - "ifd-specific-config-flags": [ + "holddown-route-count": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "0" } ], - "if-config-flags": [ + "hidden-route-count": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "0" } ], - "traffic-statistics": [ + "restart-state": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "Complete" } ] }, { - "name": [ - { - "data": "irb" - } - ], - "admin-status": [ - { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } - } - ], - "oper-status": [ - { - "data": "up" - } - ], - "local-index": [ + "table-name": [ { - "data": "137" + "data": "L2ACME-EXTRANET-GLOBAL-1.l2vpn.0" } ], - "snmp-index": [ + "destination-count": [ { - "data": "505" + "data": "23" } ], - "if-type": [ + "total-route-count": [ { - "data": "Ethernet" + "data": "42" } ], - "link-level-type": [ + "active-route-count": [ { - "data": "Ethernet" + "data": "23" } ], - "mtu": [ + "holddown-route-count": [ { - "data": "1514" + "data": "0" } ], - "if-device-flags": [ + "hidden-route-count": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "0" } ], - "ifd-specific-config-flags": [ + "restart-state": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "Complete" } - ], - "if-config-flags": [ + ] + }, + { + "table-name": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "bgp.l3vpn-inet6.0" } ], - "link-type": [ + "destination-count": [ { - "data": "Full-Duplex" + "data": "125215" } ], - "if-media-flags": [ + "total-route-count": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "250430" } ], - "current-physical-address": [ + "active-route-count": [ { - "data": "28:8a:1c:56:72:f0", - "attributes": { - "junos:format": "MAC 28:8a:1c:56:72:f0" - } + "data": "125215" } ], - "hardware-physical-address": [ + "holddown-route-count": [ { - "data": "28:8a:1c:56:72:f0", - "attributes": { - "junos:format": "MAC 28:8a:1c:56:72:f0" - } + "data": "0" } ], - "interface-flapped": [ + "hidden-route-count": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "0" } ], - "traffic-statistics": [ + "restart-state": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "Complete" } ] - }, + } + ] + } + ] + }, + "show interfaces | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/20.4R0/junos-interface", + "junos:style": "normal" + }, + "physical-interface": [ { "name": [ { - "data": "jsrv" + "data": "lc-0/0/0" } ], "admin-status": [ @@ -22271,27 +24221,17 @@ ], "local-index": [ { - "data": "128" + "data": "356" } ], "snmp-index": [ { - "data": "560" - } - ], - "if-type": [ - { - "data": "Ethernet" - } - ], - "link-level-type": [ - { - "data": "Ethernet" + "data": "506" } ], - "mtu": [ + "speed": [ { - "data": "1514" + "data": "800mbps" } ], "if-device-flags": [ @@ -22316,7 +24256,7 @@ { "internal-flags": [ { - "data": "0x0" + "data": "0x200" } ] } @@ -22324,11 +24264,6 @@ "if-config-flags": [ {} ], - "link-type": [ - { - "data": "Full-Duplex" - } - ], "if-media-flags": [ { "ifmf-none": [ @@ -22340,22 +24275,6 @@ ] } ], - "current-physical-address": [ - { - "data": "28:8a:1c:56:72:c0", - "attributes": { - "junos:format": "MAC 28:8a:1c:56:72:c0" - } - } - ], - "hardware-physical-address": [ - { - "data": "28:8a:1c:56:72:c0", - "attributes": { - "junos:format": "MAC 28:8a:1c:56:72:c0" - } - } - ], "interface-flapped": [ { "data": "Never", @@ -22385,17 +24304,17 @@ { "name": [ { - "data": "jsrv.1" + "data": "lc-0/0/0.32769" } ], "local-index": [ { - "data": "324" + "data": "435" } ], "snmp-index": [ { - "data": "563" + "data": "507" } ], "if-config-flags": [ @@ -22406,17 +24325,12 @@ null ] } - ], - "internal-flags": [ - { - "data": "0x0" - } ] } ], "encapsulation": [ { - "data": "unknown" + "data": "ENET2" } ], "policer-overhead": [ @@ -22424,21 +24338,7 @@ ], "logical-interface-bandwidth": [ { - "data": "1Gbps" - } - ], - "irb-domain": [ - { - "irb-routing-instance": [ - { - "data": "None" - } - ], - "irb-bridge": [ - { - "data": "None" - } - ] + "data": "0" } ], "traffic-statistics": [ @@ -22465,97 +24365,19 @@ { "address-family-name": [ { - "data": "inet" + "data": "vpls" } ], "mtu": [ { - "data": "1514" - } - ], - "max-local-cache": [ - { - "data": "75000" - } - ], - "new-hold-limit": [ - { - "data": "75000" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" + "data": "Unlimited" } ], "address-family-flags": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "ifaf-primary": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-preferred": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-destination": [ - { - "data": "128/2" - } - ], - "ifa-local": [ - { - "data": "133.4.74.127" - } - ], - "ifa-broadcast": [ + "internal-flags": [ { - "data": "186.53.226.255" + "data": "0x4000000" } ] } @@ -22568,7 +24390,7 @@ { "name": [ { - "data": "lo0" + "data": "pfe-0/0/0" } ], "admin-status": [ @@ -22586,22 +24408,17 @@ ], "local-index": [ { - "data": "6" + "data": "366" } ], "snmp-index": [ { - "data": "6" - } - ], - "if-type": [ - { - "data": "Loopback" + "data": "510" } ], - "mtu": [ + "speed": [ { - "data": "Unlimited" + "data": "800mbps" } ], "if-device-flags": [ @@ -22619,13 +24436,6 @@ null ] } - ], - "ifdf-loopback": [ - { - "data": [ - null - ] - } ] } ], @@ -22633,21 +24443,13 @@ { "internal-flags": [ { - "data": "0x0" + "data": "0x200" } ] } ], "if-config-flags": [ - { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] - } + {} ], "if-media-flags": [ { @@ -22675,12 +24477,12 @@ }, "input-packets": [ { - "data": "32089668" + "data": "0" } ], "output-packets": [ { - "data": "32089668" + "data": "0" } ] } @@ -22689,21 +24491,28 @@ { "name": [ { - "data": "lo0.0" + "data": "pfe-0/0/0.16383" } ], "local-index": [ { - "data": "322" + "data": "438" } ], "snmp-index": [ { - "data": "16" + "data": "511" } ], "if-config-flags": [ { + "iff-up": [ + { + "data": [ + null + ] + } + ], "iff-snmp-traps": [ { "data": [ @@ -22715,12 +24524,17 @@ ], "encapsulation": [ { - "data": "Unspecified" + "data": "ENET2" } ], "policer-overhead": [ {} ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], "traffic-statistics": [ { "attributes": { @@ -22728,12 +24542,12 @@ }, "input-packets": [ { - "data": "848" + "data": "0" } ], "output-packets": [ { - "data": "848" + "data": "0" } ] } @@ -22780,92 +24594,12 @@ ], "address-family-flags": [ { - "ifff-sendbcast-pkt-to-re": [ + "ifff-none": [ { "data": [ null ] } - ], - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-local": [ - { - "data": "198.51.100.1" - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "ifaf-current-default": [ - { - "data": [ - null - ] - } - ], - "ifaf-current-primary": [ - { - "data": [ - null - ] - } - ] - } - ], - "ifa-local": [ - { - "data": "49.013.0065.0224.0113" - } ] } ] @@ -22908,41 +24642,10 @@ ], "address-family-flags": [ { - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], - "interface-address": [ - { - "ifa-flags": [ - { - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "ifa-local": [ - { - "data": "af06:e3b6:61bb:2fc8:ad6c:c0a1:8292:d9ff" - } - ], - "interface-address": [ + "ifff-none": [ { - "in6-addr-flags": [ - { - "ifaf-none": [ - { - "data": [ - null - ] - } - ] - } + "data": [ + null ] } ] @@ -22950,25 +24653,135 @@ ] } ] - }, + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "365" + } + ], + "snmp-index": [ + { + "data": "508" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ { "name": [ { - "data": "lo0.16384" + "data": "pfh-0/0/0.16383" } ], "local-index": [ { - "data": "321" + "data": "436" } ], "snmp-index": [ { - "data": "21" + "data": "509" } ], "if-config-flags": [ { + "iff-up": [ + { + "data": [ + null + ] + } + ], "iff-snmp-traps": [ { "data": [ @@ -22980,12 +24793,17 @@ ], "encapsulation": [ { - "data": "Unspecified" + "data": "ENET2" } ], "policer-overhead": [ {} ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], "traffic-statistics": [ { "attributes": { @@ -23045,21 +24863,11 @@ ], "address-family-flags": [ { - "internal-flags": [ - { - "data": "0x2" - } - ] - } - ], - "interface-address": [ - { - "attributes": { - "heading": "Addresses" - }, - "ifa-local": [ + "ifff-none": [ { - "data": "66.33.236.1" + "data": [ + null + ] } ] } @@ -23070,21 +24878,28 @@ { "name": [ { - "data": "lo0.16385" + "data": "pfh-0/0/0.16384" } ], "local-index": [ { - "data": "320" + "data": "437" } ], "snmp-index": [ { - "data": "22" + "data": "742" } ], "if-config-flags": [ { + "iff-up": [ + { + "data": [ + null + ] + } + ], "iff-snmp-traps": [ { "data": [ @@ -23096,12 +24911,17 @@ ], "encapsulation": [ { - "data": "Unspecified" + "data": "ENET2" } ], "policer-overhead": [ {} ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], "traffic-statistics": [ { "attributes": { @@ -23109,12 +24929,12 @@ }, "input-packets": [ { - "data": "32088820" + "data": "0" } ], "output-packets": [ { - "data": "32088820" + "data": "0" } ] } @@ -23161,9 +24981,11 @@ ], "address-family-flags": [ { - "internal-flags": [ + "ifff-none": [ { - "data": "0x2" + "data": [ + null + ] } ] } @@ -23176,7 +24998,7 @@ { "name": [ { - "data": "lsi" + "data": "xe-0/0/0" } ], "admin-status": [ @@ -23194,32 +25016,82 @@ ], "local-index": [ { - "data": "4" + "data": "368" } ], "snmp-index": [ { - "data": "4" + "data": "538" } ], - "if-type": [ + "description": [ { - "data": "Software-Pseudo" + "data": "a desc" } ], "link-level-type": [ { - "data": "LSI" + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" } ], "mtu": [ { - "data": "Unlimited" + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" } ], "speed": [ { - "data": "Unlimited" + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" } ], "if-device-flags": [ @@ -23244,30 +25116,70 @@ { "internal-flags": [ { - "data": "0x0" + "data": "0x200" } ] } ], "if-config-flags": [ - {} - ], - "if-media-flags": [ { - "ifmf-none": [ + "iff-snmp-traps": [ { "data": [ null ] } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } ] } ], + "current-physical-address": [ + { + "data": "3e:61:04:03:b3:b5" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:00" + } + ], "interface-flapped": [ { - "data": "Never", + "data": "2024-04-20 05:34:35 UTC (23w6d 08:23 ago)", "attributes": { - "junos:seconds": "0" + "junos:seconds": "14459006" } } ], @@ -23276,33 +25188,104 @@ "attributes": { "junos:style": "brief" }, - "input-packets": [ + "input-bps": [ { - "data": "324364" + "data": "70140616" } ], - "output-packets": [ + "input-pps": [ { - "data": "0" + "data": "9781" + } + ], + "output-bps": [ + { + "data": "655823648" + } + ], + "output-pps": [ + { + "data": "87558" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" } ] } ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], "logical-interface": [ { "name": [ { - "data": "lsi.0" + "data": "xe-0/0/0.2001" } ], "local-index": [ { - "data": "337" + "data": "452" } ], "snmp-index": [ { - "data": "512" + "data": "905" } ], "if-config-flags": [ @@ -23314,13 +25297,6 @@ ] } ], - "iff-point-to-point": [ - { - "data": [ - null - ] - } - ], "iff-snmp-traps": [ { "data": [ @@ -23330,14 +25306,22 @@ ], "internal-flags": [ { - "data": "0x0" + "data": "0x4000" } ] } ], + "link-address": [ + { + "data": "[ 0x8100.2001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2001 ] " + } + } + ], "encapsulation": [ { - "data": "LSI-NULL" + "data": "ENET2" } ], "policer-overhead": [ @@ -23350,12 +25334,12 @@ }, "input-packets": [ { - "data": "0" + "data": "1827" } ], "output-packets": [ { - "data": "0" + "data": "22355057846" } ] } @@ -23367,119 +25351,192 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } ], - "mtu": [ + "ae-bundle-name": [ { - "data": "Unlimited" + "data": "ae25.2001" } - ], - "max-local-cache": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0.2002" + } + ], + "local-index": [ + { + "data": "455" + } + ], + "snmp-index": [ + { + "data": "933" + } + ], + "if-config-flags": [ + { + "iff-up": [ { - "data": "0" + "data": [ + null + ] } ], - "new-hold-limit": [ + "iff-snmp-traps": [ { - "data": "0" + "data": [ + null + ] } ], - "intf-curr-cnt": [ + "internal-flags": [ { - "data": "0" + "data": "0x4000" } - ], - "intf-unresolved-cnt": [ + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2002 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2002 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ { - "data": "0" + "data": "2906" } ], - "intf-dropcnt": [ + "output-packets": [ { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "206647764243" } ] - }, + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "iso" - } - ], - "mtu": [ - { - "data": "Unlimited" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "ae25.2002" } ] - }, + } + ] + }, + { + "name": [ { - "address-family-name": [ - { - "data": "inet6" - } - ], - "mtu": [ + "data": "xe-0/0/0.2011" + } + ], + "local-index": [ + { + "data": "456" + } + ], + "snmp-index": [ + { + "data": "908" + } + ], + "if-config-flags": [ + { + "iff-up": [ { - "data": "Unlimited" + "data": [ + null + ] } ], - "max-local-cache": [ + "iff-snmp-traps": [ { - "data": "0" + "data": [ + null + ] } ], - "new-hold-limit": [ + "internal-flags": [ { - "data": "0" + "data": "0x4000" } - ], - "intf-curr-cnt": [ + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2011 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2011 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ { - "data": "0" + "data": "4000" } ], - "intf-unresolved-cnt": [ + "output-packets": [ { - "data": "0" + "data": "2786487149" } - ], - "intf-dropcnt": [ + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "ae25.2011" } ] } @@ -23488,17 +25545,17 @@ { "name": [ { - "data": "lsi.1" + "data": "xe-0/0/0.3001" } ], "local-index": [ { - "data": "338" + "data": "457" } ], "snmp-index": [ { - "data": "566" + "data": "911" } ], "if-config-flags": [ @@ -23510,25 +25567,31 @@ ] } ], - "iff-point-to-point": [ + "iff-snmp-traps": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "internal-flags": [ { - "data": [ - null - ] + "data": "0x4000" } ] } ], + "link-address": [ + { + "data": "[ 0x8100.3001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3001 ] " + } + } + ], "encapsulation": [ { - "data": "LSI-NULL" + "data": "ENET2" } ], "policer-overhead": [ @@ -23541,12 +25604,12 @@ }, "input-packets": [ { - "data": "649098" + "data": "4527" } ], "output-packets": [ { - "data": "0" + "data": "2329467228155" } ] } @@ -23558,119 +25621,102 @@ { "address-family-name": [ { - "data": "inet" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-none": [ - { - "data": [ - null - ] - } - ] + "data": "ae25.3001" } ] - }, + } + ] + }, + { + "name": [ { - "address-family-name": [ + "data": "xe-0/0/0.3007" + } + ], + "local-index": [ + { + "data": "461" + } + ], + "snmp-index": [ + { + "data": "915" + } + ], + "if-config-flags": [ + { + "iff-up": [ { - "data": "iso" + "data": [ + null + ] } ], - "mtu": [ + "iff-snmp-traps": [ { - "data": "Unlimited" + "data": [ + null + ] } ], - "address-family-flags": [ + "internal-flags": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "0x4000" } ] - }, + } + ], + "link-address": [ { - "address-family-name": [ - { - "data": "inet6" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ + "data": "[ 0x8100.3007 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3007 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ { "data": "0" } ], - "intf-unresolved-cnt": [ + "output-packets": [ { "data": "0" } - ], - "intf-dropcnt": [ + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "ae25.3007" } ] } @@ -23679,17 +25725,17 @@ { "name": [ { - "data": "lsi.2" + "data": "xe-0/0/0.3011" } ], "local-index": [ { - "data": "339" + "data": "462" } ], "snmp-index": [ { - "data": "569" + "data": "923" } ], "if-config-flags": [ @@ -23701,25 +25747,31 @@ ] } ], - "iff-point-to-point": [ + "iff-snmp-traps": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "internal-flags": [ { - "data": [ - null - ] + "data": "0x4000" } ] } ], + "link-address": [ + { + "data": "[ 0x8100.3011 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3011 ] " + } + } + ], "encapsulation": [ { - "data": "LSI-NULL" + "data": "ENET2" } ], "policer-overhead": [ @@ -23732,12 +25784,12 @@ }, "input-packets": [ { - "data": "0" + "data": "28571" } ], "output-packets": [ { - "data": "0" + "data": "1969645377" } ] } @@ -23749,119 +25801,102 @@ { "address-family-name": [ { - "data": "inet" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" + "data": "aenet" } ], - "intf-curr-cnt": [ + "ae-bundle-name": [ { - "data": "0" + "data": "ae25.3011" } - ], - "intf-unresolved-cnt": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0.3015" + } + ], + "local-index": [ + { + "data": "463" + } + ], + "snmp-index": [ + { + "data": "918" + } + ], + "if-config-flags": [ + { + "iff-up": [ { - "data": "0" + "data": [ + null + ] } ], - "intf-dropcnt": [ + "iff-snmp-traps": [ { - "data": "0" + "data": [ + null + ] } ], - "address-family-flags": [ + "internal-flags": [ { - "ifff-none": [ - { - "data": [ - null - ] - } - ] + "data": "0x4000" } ] - }, + } + ], + "link-address": [ { - "address-family-name": [ - { - "data": "iso" - } - ], - "mtu": [ + "data": "[ 0x8100.3015 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3015 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ { - "data": "Unlimited" + "data": "4105" } ], - "address-family-flags": [ + "output-packets": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "10335959249" } ] - }, + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "inet6" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "ae25.3015" } ] } @@ -23870,17 +25905,17 @@ { "name": [ { - "data": "lsi.3" + "data": "xe-0/0/0.3016" } ], "local-index": [ { - "data": "340" + "data": "464" } ], "snmp-index": [ { - "data": "540" + "data": "920" } ], "if-config-flags": [ @@ -23892,25 +25927,31 @@ ] } ], - "iff-point-to-point": [ + "iff-snmp-traps": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "internal-flags": [ { - "data": [ - null - ] + "data": "0x4000" } ] } ], + "link-address": [ + { + "data": "[ 0x8100.3016 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3016 ] " + } + } + ], "encapsulation": [ { - "data": "LSI-NULL" + "data": "ENET2" } ], "policer-overhead": [ @@ -23923,12 +25964,12 @@ }, "input-packets": [ { - "data": "230" + "data": "4025" } ], "output-packets": [ { - "data": "0" + "data": "810870152" } ] } @@ -23940,119 +25981,102 @@ { "address-family-name": [ { - "data": "inet" + "data": "aenet" } ], - "mtu": [ + "ae-bundle-name": [ { - "data": "Unlimited" + "data": "ae25.3016" } - ], - "max-local-cache": [ + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0.3017" + } + ], + "local-index": [ + { + "data": "465" + } + ], + "snmp-index": [ + { + "data": "921" + } + ], + "if-config-flags": [ + { + "iff-up": [ { - "data": "0" + "data": [ + null + ] } ], - "new-hold-limit": [ + "iff-snmp-traps": [ { - "data": "0" + "data": [ + null + ] } ], - "intf-curr-cnt": [ + "internal-flags": [ { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-none": [ - { - "data": [ - null - ] - } - ] + "data": "0x4000" } ] - }, + } + ], + "link-address": [ { - "address-family-name": [ - { - "data": "iso" - } - ], - "mtu": [ + "data": "[ 0x8100.3017 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3017 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ { - "data": "Unlimited" + "data": "35570597108" } ], - "address-family-flags": [ + "output-packets": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "6660847293" } ] - }, + } + ], + "filter-information": [ + {} + ], + "address-family": [ { "address-family-name": [ { - "data": "inet6" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "ae25.3017" } ] } @@ -24061,17 +26085,17 @@ { "name": [ { - "data": "lsi.4" + "data": "xe-0/0/0.3019" } ], "local-index": [ { - "data": "341" + "data": "466" } ], "snmp-index": [ { - "data": "542" + "data": "938" } ], "if-config-flags": [ @@ -24083,25 +26107,31 @@ ] } ], - "iff-point-to-point": [ + "iff-snmp-traps": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "internal-flags": [ { - "data": [ - null - ] + "data": "0x4000" } ] } ], + "link-address": [ + { + "data": "[ 0x8100.3019 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3019 ] " + } + } + ], "encapsulation": [ { - "data": "LSI-NULL" + "data": "ENET2" } ], "policer-overhead": [ @@ -24114,12 +26144,12 @@ }, "input-packets": [ { - "data": "0" + "data": "202047343941" } ], "output-packets": [ { - "data": "0" + "data": "26017050298" } ] } @@ -24131,119 +26161,12 @@ { "address-family-name": [ { - "data": "inet" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-none": [ - { - "data": [ - null - ] - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "inet6" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "ae25.3019" } ] } @@ -24252,17 +26175,17 @@ { "name": [ { - "data": "lsi.5" + "data": "xe-0/0/0.3050" } ], "local-index": [ { - "data": "342" + "data": "467" } ], "snmp-index": [ { - "data": "543" + "data": "945" } ], "if-config-flags": [ @@ -24274,25 +26197,31 @@ ] } ], - "iff-point-to-point": [ + "iff-snmp-traps": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "internal-flags": [ { - "data": [ - null - ] + "data": "0x4000" } ] } ], + "link-address": [ + { + "data": "[ 0x8100.3050 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3050 ] " + } + } + ], "encapsulation": [ { - "data": "LSI-NULL" + "data": "ENET2" } ], "policer-overhead": [ @@ -24305,12 +26234,12 @@ }, "input-packets": [ { - "data": "235" + "data": "0" } ], "output-packets": [ { - "data": "0" + "data": "65749159001" } ] } @@ -24322,119 +26251,12 @@ { "address-family-name": [ { - "data": "inet" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-none": [ - { - "data": [ - null - ] - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "inet6" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "ae25.3050" } ] } @@ -24443,17 +26265,17 @@ { "name": [ { - "data": "lsi.6" + "data": "xe-0/0/0.32767" } ], "local-index": [ { - "data": "343" + "data": "468" } ], "snmp-index": [ { - "data": "544" + "data": "902" } ], "if-config-flags": [ @@ -24465,25 +26287,31 @@ ] } ], - "iff-point-to-point": [ + "iff-snmp-traps": [ { "data": [ null ] } ], - "iff-snmp-traps": [ + "internal-flags": [ { - "data": [ - null - ] + "data": "0x4004000" } ] } ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], "encapsulation": [ { - "data": "LSI-NULL" + "data": "ENET2" } ], "policer-overhead": [ @@ -24496,12 +26324,12 @@ }, "input-packets": [ { - "data": "0" + "data": "21452218" } ], "output-packets": [ { - "data": "0" + "data": "693928" } ] } @@ -24513,1460 +26341,83502 @@ { "address-family-name": [ { - "data": "inet" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "inet6" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" + "data": "aenet" } ], - "address-family-flags": [ + "ae-bundle-name": [ { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] + "data": "ae25.32767" } ] } ] - }, + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "369" + } + ], + "snmp-index": [ + { + "data": "539" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:ce" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:01" + } + ], + "interface-flapped": [ + { + "data": "2024-07-08 03:15:43 UTC (12w4d 10:42 ago)", + "attributes": { + "junos:seconds": "7641738" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1567601056" + } + ], + "input-pps": [ + { + "data": "173217" + } + ], + "output-bps": [ + { + "data": "565289432" + } + ], + "output-pps": [ + { + "data": "103250" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/1.2000" + } + ], + "local-index": [ + { + "data": "469" + } + ], + "snmp-index": [ + { + "data": "637" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "664684976027" + } + ], + "output-packets": [ + { + "data": "388397427031" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2000" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1.2001" + } + ], + "local-index": [ + { + "data": "470" + } + ], + "snmp-index": [ + { + "data": "636" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "476397908103" + } + ], + "output-packets": [ + { + "data": "608687275728" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2001" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1.2003" + } + ], + "local-index": [ + { + "data": "471" + } + ], + "snmp-index": [ + { + "data": "707" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2003 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2003 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "369875235491" + } + ], + "output-packets": [ + { + "data": "1424027125998" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2003" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1.32767" + } + ], + "local-index": [ + { + "data": "472" + } + ], + "snmp-index": [ + { + "data": "634" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "19953101" + } + ], + "output-packets": [ + { + "data": "693990" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "370" + } + ], + "snmp-index": [ + { + "data": "540" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b3:02" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:02" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 16:03:09 UTC (31w5d 21:54 ago)", + "attributes": { + "junos:seconds": "19259692" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "38631112" + } + ], + "input-pps": [ + { + "data": "7235" + } + ], + "output-bps": [ + { + "data": "16123328" + } + ], + "output-pps": [ + { + "data": "4653" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/2.2004" + } + ], + "local-index": [ + { + "data": "473" + } + ], + "snmp-index": [ + { + "data": "882" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2004 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2004 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "7076215269" + } + ], + "output-packets": [ + { + "data": "9707609462" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.155.52/30" + } + ], + "ifa-local": [ + { + "data": "123.65.155.53" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.155.55" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2005" + } + ], + "local-index": [ + { + "data": "474" + } + ], + "snmp-index": [ + { + "data": "885" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2005 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2005 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "150mbps" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "13237855158" + } + ], + "output-packets": [ + { + "data": "16232683814" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.155.68/30" + } + ], + "ifa-local": [ + { + "data": "123.65.155.69" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.155.71" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2006" + } + ], + "local-index": [ + { + "data": "475" + } + ], + "snmp-index": [ + { + "data": "849" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2006 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2006 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "100mbps" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "9419945837" + } + ], + "output-packets": [ + { + "data": "12484401715" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.155.72/30" + } + ], + "ifa-local": [ + { + "data": "123.65.155.73" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.155.75" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2007" + } + ], + "local-index": [ + { + "data": "519" + } + ], + "snmp-index": [ + { + "data": "879" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2007 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2007 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "100mbps" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "11333608386" + } + ], + "output-packets": [ + { + "data": "16357879481" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.19.96/30" + } + ], + "ifa-local": [ + { + "data": "123.65.19.97" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.19.99" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2008" + } + ], + "local-index": [ + { + "data": "579" + } + ], + "snmp-index": [ + { + "data": "888" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2008 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2008 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "19864835166" + } + ], + "output-packets": [ + { + "data": "21698118479" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.155.44/30" + } + ], + "ifa-local": [ + { + "data": "123.65.155.45" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.155.47" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2011" + } + ], + "local-index": [ + { + "data": "580" + } + ], + "snmp-index": [ + { + "data": "887" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2011 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2011 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "100mbps" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.156.56/30" + } + ], + "ifa-local": [ + { + "data": "123.65.156.57" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.156.59" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2012" + } + ], + "local-index": [ + { + "data": "581" + } + ], + "snmp-index": [ + { + "data": "886" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2012 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2012 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "100mbps" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "15854754677" + } + ], + "output-packets": [ + { + "data": "13249902287" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.156.84/30" + } + ], + "ifa-local": [ + { + "data": "123.65.156.85" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.156.87" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3010" + } + ], + "local-index": [ + { + "data": "582" + } + ], + "snmp-index": [ + { + "data": "632" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3010 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3010 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "9628943" + } + ], + "output-packets": [ + { + "data": "330" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.18.16/30" + } + ], + "ifa-local": [ + { + "data": "123.65.18.17" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.18.19" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3030" + } + ], + "local-index": [ + { + "data": "583" + } + ], + "snmp-index": [ + { + "data": "642" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3030 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3030 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "8269126469" + } + ], + "output-packets": [ + { + "data": "6937679564" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.19.104/30" + } + ], + "ifa-local": [ + { + "data": "123.65.19.105" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.19.107" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3031" + } + ], + "local-index": [ + { + "data": "584" + } + ], + "snmp-index": [ + { + "data": "874" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3031 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3031 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "372259413" + } + ], + "output-packets": [ + { + "data": "4135834461" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.36.248/30" + } + ], + "ifa-local": [ + { + "data": "123.65.36.249" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.36.251" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3032" + } + ], + "local-index": [ + { + "data": "585" + } + ], + "snmp-index": [ + { + "data": "884" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3032 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3032 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "178392284" + } + ], + "output-packets": [ + { + "data": "432797615" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.8/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.9" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.11" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.32767" + } + ], + "local-index": [ + { + "data": "586" + } + ], + "snmp-index": [ + { + "data": "641" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "645163" + } + ], + "output-packets": [ + { + "data": "694019" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "371" + } + ], + "snmp-index": [ + { + "data": "541" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1610" + } + ], + "mru": [ + { + "data": "1618" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-scheduler": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cf" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:03" + } + ], + "interface-flapped": [ + { + "data": "2024-04-20 05:33:55 UTC (23w6d 08:24 ago)", + "attributes": { + "junos:seconds": "14459046" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "247146176" + } + ], + "input-pps": [ + { + "data": "39106" + } + ], + "output-bps": [ + { + "data": "21496560" + } + ], + "output-pps": [ + { + "data": "9319" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/3.4006" + } + ], + "local-index": [ + { + "data": "612" + } + ], + "snmp-index": [ + { + "data": "927" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.4006 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.4006 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "990986439803" + } + ], + "output-packets": [ + { + "data": "377232950911" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.4006" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/3.32767" + } + ], + "local-index": [ + { + "data": "613" + } + ], + "snmp-index": [ + { + "data": "892" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "21452636" + } + ], + "output-packets": [ + { + "data": "694059" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "372" + } + ], + "snmp-index": [ + { + "data": "542" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1610" + } + ], + "mru": [ + { + "data": "1618" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-scheduler": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cf" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:04" + } + ], + "interface-flapped": [ + { + "data": "2024-04-20 05:34:35 UTC (23w6d 08:23 ago)", + "attributes": { + "junos:seconds": "14459006" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "992" + } + ], + "input-pps": [ + { + "data": "1" + } + ], + "output-bps": [ + { + "data": "30015776" + } + ], + "output-pps": [ + { + "data": "9401" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/4.4006" + } + ], + "local-index": [ + { + "data": "614" + } + ], + "snmp-index": [ + { + "data": "928" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.4006 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.4006 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "376698788871" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.4006" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/4.32767" + } + ], + "local-index": [ + { + "data": "615" + } + ], + "snmp-index": [ + { + "data": "893" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "21452240" + } + ], + "output-packets": [ + { + "data": "694035" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "373" + } + ], + "snmp-index": [ + { + "data": "543" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b3:05" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:05" + } + ], + "interface-flapped": [ + { + "data": "2024-09-30 16:25:44 UTC (3d 21:32 ago)", + "attributes": { + "junos:seconds": "336737" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "87257688" + } + ], + "input-pps": [ + { + "data": "8635" + } + ], + "output-bps": [ + { + "data": "3340496" + } + ], + "output-pps": [ + { + "data": "2652" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "55" + } + ], + "errored-blocks-seconds": [ + { + "data": "56" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/5.3200" + } + ], + "local-index": [ + { + "data": "616" + } + ], + "snmp-index": [ + { + "data": "823" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3200 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3200 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "191430273247" + } + ], + "output-packets": [ + { + "data": "46180101988" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.32.208/30" + } + ], + "ifa-local": [ + { + "data": "123.65.32.209" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.32.211" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.3201" + } + ], + "local-index": [ + { + "data": "617" + } + ], + "snmp-index": [ + { + "data": "847" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3201 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3201 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2106047" + } + ], + "output-packets": [ + { + "data": "1338099" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.32.216/30" + } + ], + "ifa-local": [ + { + "data": "123.65.32.217" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.32.219" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.32767" + } + ], + "local-index": [ + { + "data": "618" + } + ], + "snmp-index": [ + { + "data": "845" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "639751" + } + ], + "output-packets": [ + { + "data": "691632" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "374" + } + ], + "snmp-index": [ + { + "data": "544" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c8" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:06" + } + ], + "interface-flapped": [ + { + "data": "2024-09-10 22:09:53 UTC (3w2d 15:48 ago)", + "attributes": { + "junos:seconds": "2044088" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "59949720" + } + ], + "input-pps": [ + { + "data": "6961" + } + ], + "output-bps": [ + { + "data": "53422320" + } + ], + "output-pps": [ + { + "data": "27826" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "250" + } + ], + "errored-blocks-seconds": [ + { + "data": "254" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/6.0" + } + ], + "local-index": [ + { + "data": "621" + } + ], + "snmp-index": [ + { + "data": "610" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "68937414567" + } + ], + "output-packets": [ + { + "data": "261145330502" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae8.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "375" + } + ], + "snmp-index": [ + { + "data": "545" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cc" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:07" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 16:03:13 UTC (31w5d 21:54 ago)", + "attributes": { + "junos:seconds": "19259688" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "283990416" + } + ], + "input-pps": [ + { + "data": "62744" + } + ], + "output-bps": [ + { + "data": "1421727472" + } + ], + "output-pps": [ + { + "data": "154267" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/7.2100" + } + ], + "local-index": [ + { + "data": "622" + } + ], + "snmp-index": [ + { + "data": "814" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "937322291844" + } + ], + "output-packets": [ + { + "data": "1271548658394" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.2100" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/7.32767" + } + ], + "local-index": [ + { + "data": "623" + } + ], + "snmp-index": [ + { + "data": "805" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "20772126" + } + ], + "output-packets": [ + { + "data": "693985" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "376" + } + ], + "snmp-index": [ + { + "data": "546" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c0" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:08" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 16:03:13 UTC (31w5d 21:54 ago)", + "attributes": { + "junos:seconds": "19259688" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "34385688" + } + ], + "input-pps": [ + { + "data": "14625" + } + ], + "output-bps": [ + { + "data": "113786648" + } + ], + "output-pps": [ + { + "data": "14234" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/8.0" + } + ], + "local-index": [ + { + "data": "624" + } + ], + "snmp-index": [ + { + "data": "623" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "537252484187" + } + ], + "output-packets": [ + { + "data": "246817704147" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "377" + } + ], + "snmp-index": [ + { + "data": "547" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c0" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:09" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 16:03:13 UTC (31w5d 21:54 ago)", + "attributes": { + "junos:seconds": "19259688" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "32912224" + } + ], + "input-pps": [ + { + "data": "16725" + } + ], + "output-bps": [ + { + "data": "178065768" + } + ], + "output-pps": [ + { + "data": "19819" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/9.0" + } + ], + "local-index": [ + { + "data": "625" + } + ], + "snmp-index": [ + { + "data": "612" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "536140872873" + } + ], + "output-packets": [ + { + "data": "293078087873" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gr-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "359" + } + ], + "snmp-index": [ + { + "data": "680" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ip-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "360" + } + ], + "snmp-index": [ + { + "data": "681" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "363" + } + ], + "snmp-index": [ + { + "data": "676" + } + ], + "if-type": [ + { + "data": "Logical-tunnel" + } + ], + "link-level-type": [ + { + "data": "Logical-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-information": [ + { + "data": "13" + } + ], + "current-physical-address": [ + { + "data": "3e:61:04:03:b3:00", + "attributes": { + "junos:format": "MAC 3e:61:04:03:b3:00" + } + } + ], + "hardware-physical-address": [ + { + "data": "3e:61:04:03:b3:00", + "attributes": { + "junos:format": "MAC 3e:61:04:03:b3:00" + } + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 16:02:45 UTC (31w5d 21:55 ago)", + "attributes": { + "junos:seconds": "19259716" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "mt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "362" + } + ], + "snmp-index": [ + { + "data": "675" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pd-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "357" + } + ], + "snmp-index": [ + { + "data": "678" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pe-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "358" + } + ], + "snmp-index": [ + { + "data": "679" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ud-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "367" + } + ], + "snmp-index": [ + { + "data": "671" + } + ], + "if-type": [ + { + "data": "UDPT" + } + ], + "link-level-type": [ + { + "data": "UDP-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ut-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "364" + } + ], + "snmp-index": [ + { + "data": "677" + } + ], + "if-type": [ + { + "data": "Uplink-tunnel" + } + ], + "link-level-type": [ + { + "data": "Uplink-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-information": [ + { + "data": "13" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 16:02:45 UTC (31w5d 21:55 ago)", + "attributes": { + "junos:seconds": "19259716" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "361" + } + ], + "snmp-index": [ + { + "data": "674" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "link-level-type": [ + { + "data": "Virtual-loopback-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vt-0/0/10.2097664" + } + ], + "local-index": [ + { + "data": "443" + } + ], + "snmp-index": [ + { + "data": "744" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "Virtual-loopback-tunnel" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lc-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "343" + } + ], + "snmp-index": [ + { + "data": "512" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-1/0/0.32769" + } + ], + "local-index": [ + { + "data": "439" + } + ], + "snmp-index": [ + { + "data": "513" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "345" + } + ], + "snmp-index": [ + { + "data": "516" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "local-index": [ + { + "data": "440" + } + ], + "snmp-index": [ + { + "data": "517" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "344" + } + ], + "snmp-index": [ + { + "data": "514" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "local-index": [ + { + "data": "441" + } + ], + "snmp-index": [ + { + "data": "515" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "local-index": [ + { + "data": "442" + } + ], + "snmp-index": [ + { + "data": "743" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "346" + } + ], + "snmp-index": [ + { + "data": "548" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b3:a5" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:a5" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:53:14 UTC (31w5d 22:04 ago)", + "attributes": { + "junos:seconds": "19260287" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "123806824" + } + ], + "input-pps": [ + { + "data": "13582" + } + ], + "output-bps": [ + { + "data": "18388344" + } + ], + "output-pps": [ + { + "data": "3240" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "8" + } + ], + "errored-blocks-seconds": [ + { + "data": "9" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/0.0" + } + ], + "local-index": [ + { + "data": "482" + } + ], + "snmp-index": [ + { + "data": "865" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "68186033127" + } + ], + "output-packets": [ + { + "data": "65633811896" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.35.112/30" + } + ], + "ifa-local": [ + { + "data": "123.65.35.113" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.35.115" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "347" + } + ], + "snmp-index": [ + { + "data": "549" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b3:a6" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:a6" + } + ], + "interface-flapped": [ + { + "data": "2024-07-29 15:00:06 UTC (9w3d 22:57 ago)", + "attributes": { + "junos:seconds": "5785075" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "18" + } + ], + "errored-blocks-seconds": [ + { + "data": "16" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "348" + } + ], + "snmp-index": [ + { + "data": "550" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c7" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:a7" + } + ], + "interface-flapped": [ + { + "data": "2024-08-08 05:35:28 UTC (8w1d 08:22 ago)", + "attributes": { + "junos:seconds": "4954953" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "111824" + } + ], + "input-pps": [ + { + "data": "78" + } + ], + "output-bps": [ + { + "data": "110840" + } + ], + "output-pps": [ + { + "data": "63" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "6" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/2.0" + } + ], + "local-index": [ + { + "data": "485" + } + ], + "snmp-index": [ + { + "data": "925" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "152983852708" + } + ], + "output-packets": [ + { + "data": "175048575747" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae7.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "349" + } + ], + "snmp-index": [ + { + "data": "551" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b3:a8" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:a8" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:53:09 UTC (31w5d 22:04 ago)", + "attributes": { + "junos:seconds": "19260292" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "350" + } + ], + "snmp-index": [ + { + "data": "552" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c5" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:a9" + } + ], + "interface-flapped": [ + { + "data": "2024-09-19 22:28:14 UTC (2w0d 15:29 ago)", + "attributes": { + "junos:seconds": "1265387" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "207098192" + } + ], + "input-pps": [ + { + "data": "27405" + } + ], + "output-bps": [ + { + "data": "78991928" + } + ], + "output-pps": [ + { + "data": "21303" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "773" + } + ], + "errored-blocks-seconds": [ + { + "data": "103688" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/4.0" + } + ], + "local-index": [ + { + "data": "486" + } + ], + "snmp-index": [ + { + "data": "613" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "636585513479" + } + ], + "output-packets": [ + { + "data": "389837439515" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae5.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "351" + } + ], + "snmp-index": [ + { + "data": "553" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1610" + } + ], + "mru": [ + { + "data": "1618" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-scheduler": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cb" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:aa" + } + ], + "interface-flapped": [ + { + "data": "2024-04-20 05:33:54 UTC (23w6d 08:24 ago)", + "attributes": { + "junos:seconds": "14459047" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "25217576" + } + ], + "input-pps": [ + { + "data": "5762" + } + ], + "output-bps": [ + { + "data": "21067608" + } + ], + "output-pps": [ + { + "data": "3350" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/5.4000" + } + ], + "local-index": [ + { + "data": "487" + } + ], + "snmp-index": [ + { + "data": "809" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.4000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.4000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "58154483790" + } + ], + "output-packets": [ + { + "data": "24009493560" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae15.4000" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/5.4002" + } + ], + "local-index": [ + { + "data": "488" + } + ], + "snmp-index": [ + { + "data": "852" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.4002 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.4002 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "42090298040" + } + ], + "output-packets": [ + { + "data": "44107454869" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae15.4002" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/5.32767" + } + ], + "local-index": [ + { + "data": "489" + } + ], + "snmp-index": [ + { + "data": "785" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "21452892" + } + ], + "output-packets": [ + { + "data": "694047" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae15.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "352" + } + ], + "snmp-index": [ + { + "data": "554" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:ce" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:ab" + } + ], + "interface-flapped": [ + { + "data": "2024-07-08 03:15:45 UTC (12w4d 10:42 ago)", + "attributes": { + "junos:seconds": "7641736" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "692126872" + } + ], + "input-pps": [ + { + "data": "94250" + } + ], + "output-bps": [ + { + "data": "558797512" + } + ], + "output-pps": [ + { + "data": "92253" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/6.2000" + } + ], + "local-index": [ + { + "data": "490" + } + ], + "snmp-index": [ + { + "data": "857" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "887201060376" + } + ], + "output-packets": [ + { + "data": "524817124588" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2000" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/6.2001" + } + ], + "local-index": [ + { + "data": "491" + } + ], + "snmp-index": [ + { + "data": "858" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "257218645657" + } + ], + "output-packets": [ + { + "data": "613224760251" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2001" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/6.2003" + } + ], + "local-index": [ + { + "data": "492" + } + ], + "snmp-index": [ + { + "data": "859" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2003 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2003 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "371497263516" + } + ], + "output-packets": [ + { + "data": "1243476114051" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.2003" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/6.32767" + } + ], + "local-index": [ + { + "data": "493" + } + ], + "snmp-index": [ + { + "data": "860" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "19953760" + } + ], + "output-packets": [ + { + "data": "694009" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae19.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "353" + } + ], + "snmp-index": [ + { + "data": "555" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cd" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:ac" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:53:14 UTC (31w5d 22:04 ago)", + "attributes": { + "junos:seconds": "19260287" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "399749832" + } + ], + "input-pps": [ + { + "data": "44543" + } + ], + "output-bps": [ + { + "data": "95681704" + } + ], + "output-pps": [ + { + "data": "20375" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/7.3100" + } + ], + "local-index": [ + { + "data": "494" + } + ], + "snmp-index": [ + { + "data": "837" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "345462316314" + } + ], + "output-packets": [ + { + "data": "414685274046" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3100" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3101" + } + ], + "local-index": [ + { + "data": "495" + } + ], + "snmp-index": [ + { + "data": "836" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3101 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3101 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "108331495653" + } + ], + "output-packets": [ + { + "data": "56129641313" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3101" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3102" + } + ], + "local-index": [ + { + "data": "496" + } + ], + "snmp-index": [ + { + "data": "835" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3102 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3102 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2615129891" + } + ], + "output-packets": [ + { + "data": "3207075808" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3102" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3103" + } + ], + "local-index": [ + { + "data": "497" + } + ], + "snmp-index": [ + { + "data": "834" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3103 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3103 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "15660522874" + } + ], + "output-packets": [ + { + "data": "1964785851" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3103" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3104" + } + ], + "local-index": [ + { + "data": "498" + } + ], + "snmp-index": [ + { + "data": "833" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3104 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3104 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "361464836" + } + ], + "output-packets": [ + { + "data": "831528188" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3104" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3105" + } + ], + "local-index": [ + { + "data": "499" + } + ], + "snmp-index": [ + { + "data": "832" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3105 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3105 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "56441684" + } + ], + "output-packets": [ + { + "data": "1" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3105" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.3600" + } + ], + "local-index": [ + { + "data": "500" + } + ], + "snmp-index": [ + { + "data": "897" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3600 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3600 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "9580338" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3600" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.32767" + } + ], + "local-index": [ + { + "data": "574" + } + ], + "snmp-index": [ + { + "data": "812" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "21368892" + } + ], + "output-packets": [ + { + "data": "693992" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "354" + } + ], + "snmp-index": [ + { + "data": "556" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c0" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:ad" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:53:14 UTC (31w5d 22:04 ago)", + "attributes": { + "junos:seconds": "19260287" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "73018656" + } + ], + "input-pps": [ + { + "data": "17535" + } + ], + "output-bps": [ + { + "data": "59685184" + } + ], + "output-pps": [ + { + "data": "9056" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/8.0" + } + ], + "local-index": [ + { + "data": "575" + } + ], + "snmp-index": [ + { + "data": "616" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "530014638771" + } + ], + "output-packets": [ + { + "data": "234028894936" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "355" + } + ], + "snmp-index": [ + { + "data": "557" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c0" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:ae" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:53:14 UTC (31w5d 22:04 ago)", + "attributes": { + "junos:seconds": "19260287" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "33060184" + } + ], + "input-pps": [ + { + "data": "11215" + } + ], + "output-bps": [ + { + "data": "90623752" + } + ], + "output-pps": [ + { + "data": "16347" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/9.0" + } + ], + "local-index": [ + { + "data": "599" + } + ], + "snmp-index": [ + { + "data": "617" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "532975149770" + } + ], + "output-packets": [ + { + "data": "249444568838" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lc-2/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "213" + } + ], + "snmp-index": [ + { + "data": "606" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-2/0/0.32769" + } + ], + "local-index": [ + { + "data": "476" + } + ], + "snmp-index": [ + { + "data": "607" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-2/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "216" + } + ], + "snmp-index": [ + { + "data": "749" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-2/0/0.16383" + } + ], + "local-index": [ + { + "data": "478" + } + ], + "snmp-index": [ + { + "data": "751" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-2/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "215" + } + ], + "snmp-index": [ + { + "data": "748" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-2/0/0.16383" + } + ], + "local-index": [ + { + "data": "480" + } + ], + "snmp-index": [ + { + "data": "753" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-2/0/0.16384" + } + ], + "local-index": [ + { + "data": "481" + } + ], + "snmp-index": [ + { + "data": "754" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-2/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "248" + } + ], + "snmp-index": [ + { + "data": "755" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b4:4a" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b4:4a" + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:56:27 UTC (107w5d 11:01 ago)", + "attributes": { + "junos:seconds": "65185294" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-2/0/0.16386" + } + ], + "local-index": [ + { + "data": "564" + } + ], + "snmp-index": [ + { + "data": "759" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "xe-2/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "249" + } + ], + "snmp-index": [ + { + "data": "756" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b4:4b" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b4:4b" + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:56:27 UTC (107w5d 11:01 ago)", + "attributes": { + "junos:seconds": "65185294" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-2/0/1.16386" + } + ], + "local-index": [ + { + "data": "565" + } + ], + "snmp-index": [ + { + "data": "768" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "et-2/1/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "250" + } + ], + "snmp-index": [ + { + "data": "762" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "100Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c2" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b4:73" + } + ], + "interface-flapped": [ + { + "data": "2024-09-30 19:53:19 UTC (3d 18:04 ago)", + "attributes": { + "junos:seconds": "324282" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1374479152" + } + ], + "input-pps": [ + { + "data": "195973" + } + ], + "output-bps": [ + { + "data": "1262767008" + } + ], + "output-pps": [ + { + "data": "175404" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "916" + } + ], + "errored-blocks-seconds": [ + { + "data": "31964" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "et-2/1/0.0" + } + ], + "local-index": [ + { + "data": "566" + } + ], + "snmp-index": [ + { + "data": "777" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "12254259679212" + } + ], + "output-packets": [ + { + "data": "11370587922426" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae2.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lc-2/2/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "214" + } + ], + "snmp-index": [ + { + "data": "614" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-2/2/0.32769" + } + ], + "local-index": [ + { + "data": "477" + } + ], + "snmp-index": [ + { + "data": "615" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-2/2/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "217" + } + ], + "snmp-index": [ + { + "data": "750" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-2/2/0.16383" + } + ], + "local-index": [ + { + "data": "479" + } + ], + "snmp-index": [ + { + "data": "752" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-2/2/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "251" + } + ], + "snmp-index": [ + { + "data": "763" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b4:9c" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b4:9c" + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:57:10 UTC (107w5d 11:00 ago)", + "attributes": { + "junos:seconds": "65185251" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-2/2/0.16386" + } + ], + "local-index": [ + { + "data": "567" + } + ], + "snmp-index": [ + { + "data": "769" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "xe-2/2/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "252" + } + ], + "snmp-index": [ + { + "data": "764" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b4:9d" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b4:9d" + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:57:10 UTC (107w5d 11:00 ago)", + "attributes": { + "junos:seconds": "65185251" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-2/2/1.16386" + } + ], + "local-index": [ + { + "data": "568" + } + ], + "snmp-index": [ + { + "data": "774" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "et-2/3/0" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "253" + } + ], + "snmp-index": [ + { + "data": "765" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "100Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b4:c5" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b4:c5" + } + ], + "interface-flapped": [ + { + "data": "2023-03-21 06:07:43 UTC (80w3d 07:50 ago)", + "attributes": { + "junos:seconds": "48671418" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "lc-10/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "320" + } + ], + "snmp-index": [ + { + "data": "645" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-10/0/0.32769" + } + ], + "local-index": [ + { + "data": "326" + } + ], + "snmp-index": [ + { + "data": "648" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-10/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "322" + } + ], + "snmp-index": [ + { + "data": "651" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-10/0/0.16383" + } + ], + "local-index": [ + { + "data": "445" + } + ], + "snmp-index": [ + { + "data": "683" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-10/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "321" + } + ], + "snmp-index": [ + { + "data": "650" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-10/0/0.16383" + } + ], + "local-index": [ + { + "data": "409" + } + ], + "snmp-index": [ + { + "data": "673" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-10/0/0.16384" + } + ], + "local-index": [ + { + "data": "444" + } + ], + "snmp-index": [ + { + "data": "746" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "323" + } + ], + "snmp-index": [ + { + "data": "684" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:72" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:72" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:00 UTC (31w5d 22:14 ago)", + "attributes": { + "junos:seconds": "19260841" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "27538432" + } + ], + "input-pps": [ + { + "data": "4432" + } + ], + "output-bps": [ + { + "data": "9455680" + } + ], + "output-pps": [ + { + "data": "2376" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/0.3001" + } + ], + "local-index": [ + { + "data": "446" + } + ], + "snmp-index": [ + { + "data": "709" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "134276393454" + } + ], + "output-packets": [ + { + "data": "47959933784" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.20.56/30" + } + ], + "ifa-local": [ + { + "data": "123.65.20.57" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.20.59" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/0.32767" + } + ], + "local-index": [ + { + "data": "447" + } + ], + "snmp-index": [ + { + "data": "710" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1290247" + } + ], + "output-packets": [ + { + "data": "694020" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "324" + } + ], + "snmp-index": [ + { + "data": "685" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:73" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:73" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:00 UTC (31w5d 22:14 ago)", + "attributes": { + "junos:seconds": "19260841" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1824" + } + ], + "input-pps": [ + { + "data": "3" + } + ], + "output-bps": [ + { + "data": "1824" + } + ], + "output-pps": [ + { + "data": "3" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/1.3004" + } + ], + "local-index": [ + { + "data": "448" + } + ], + "snmp-index": [ + { + "data": "726" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3004 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3004 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3377347894" + } + ], + "output-packets": [ + { + "data": "2750715045" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.20.72/30" + } + ], + "ifa-local": [ + { + "data": "123.65.20.73" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.20.75" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/1.32767" + } + ], + "local-index": [ + { + "data": "453" + } + ], + "snmp-index": [ + { + "data": "727" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1290244" + } + ], + "output-packets": [ + { + "data": "694052" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "325" + } + ], + "snmp-index": [ + { + "data": "686" + } + ], + "description": [ + { + "data": "UMI" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:74" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:74" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:06 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260835" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "272" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/2.1" + } + ], + "local-index": [ + { + "data": "458" + } + ], + "snmp-index": [ + { + "data": "704" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.1 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.1 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "9986148" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/2.32767" + } + ], + "local-index": [ + { + "data": "501" + } + ], + "snmp-index": [ + { + "data": "705" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "694027" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "326" + } + ], + "snmp-index": [ + { + "data": "687" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:75" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:75" + } + ], + "interface-flapped": [ + { + "data": "2024-07-29 14:59:41 UTC (9w3d 22:58 ago)", + "attributes": { + "junos:seconds": "5785100" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "327" + } + ], + "snmp-index": [ + { + "data": "688" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:76" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:76" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:06 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260835" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "212984" + } + ], + "input-pps": [ + { + "data": "119" + } + ], + "output-bps": [ + { + "data": "240664" + } + ], + "output-pps": [ + { + "data": "139" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/4.2000" + } + ], + "local-index": [ + { + "data": "504" + } + ], + "snmp-index": [ + { + "data": "716" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "14641745818" + } + ], + "output-packets": [ + { + "data": "14251605095" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.5.68/31" + } + ], + "ifa-local": [ + { + "data": "123.65.5.68" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/4.32767" + } + ], + "local-index": [ + { + "data": "505" + } + ], + "snmp-index": [ + { + "data": "713" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "694076" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "328" + } + ], + "snmp-index": [ + { + "data": "689" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3e:61:04:03:b3:b5" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:77" + } + ], + "interface-flapped": [ + { + "data": "2024-04-20 05:33:54 UTC (23w6d 08:24 ago)", + "attributes": { + "junos:seconds": "14459047" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "934558888" + } + ], + "input-pps": [ + { + "data": "132205" + } + ], + "output-bps": [ + { + "data": "1007511968" + } + ], + "output-pps": [ + { + "data": "124446" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/5.2001" + } + ], + "local-index": [ + { + "data": "506" + } + ], + "snmp-index": [ + { + "data": "880" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "12832282048" + } + ], + "output-packets": [ + { + "data": "3098689132" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.2001" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.2002" + } + ], + "local-index": [ + { + "data": "507" + } + ], + "snmp-index": [ + { + "data": "934" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2002 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2002 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "129206040531" + } + ], + "output-packets": [ + { + "data": "5856686510" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.2002" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.2011" + } + ], + "local-index": [ + { + "data": "508" + } + ], + "snmp-index": [ + { + "data": "895" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2011 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2011 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1476421007" + } + ], + "output-packets": [ + { + "data": "2779156986" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.2011" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3001" + } + ], + "local-index": [ + { + "data": "520" + } + ], + "snmp-index": [ + { + "data": "730" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "6411782464456" + } + ], + "output-packets": [ + { + "data": "2365200716270" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3001" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3007" + } + ], + "local-index": [ + { + "data": "521" + } + ], + "snmp-index": [ + { + "data": "766" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3007 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3007 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3007" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3011" + } + ], + "local-index": [ + { + "data": "522" + } + ], + "snmp-index": [ + { + "data": "890" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3011 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3011 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "8218302128" + } + ], + "output-packets": [ + { + "data": "2019328043" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3011" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3015" + } + ], + "local-index": [ + { + "data": "523" + } + ], + "snmp-index": [ + { + "data": "784" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3015 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3015 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "37109973110" + } + ], + "output-packets": [ + { + "data": "9969014536" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3015" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3016" + } + ], + "local-index": [ + { + "data": "524" + } + ], + "snmp-index": [ + { + "data": "862" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3016 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3016 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "27426975552" + } + ], + "output-packets": [ + { + "data": "721474306" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3016" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3017" + } + ], + "local-index": [ + { + "data": "525" + } + ], + "snmp-index": [ + { + "data": "881" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3017 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3017 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "85893934" + } + ], + "output-packets": [ + { + "data": "7247452090" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3017" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3019" + } + ], + "local-index": [ + { + "data": "526" + } + ], + "snmp-index": [ + { + "data": "939" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3019 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3019 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "10237760" + } + ], + "output-packets": [ + { + "data": "25643017601" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3019" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.3050" + } + ], + "local-index": [ + { + "data": "527" + } + ], + "snmp-index": [ + { + "data": "946" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3050 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3050 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "32813790994" + } + ], + "output-packets": [ + { + "data": "81875445432" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.3050" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/5.32767" + } + ], + "local-index": [ + { + "data": "528" + } + ], + "snmp-index": [ + { + "data": "731" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "21453302" + } + ], + "output-packets": [ + { + "data": "694010" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae25.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "329" + } + ], + "snmp-index": [ + { + "data": "690" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:78" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:78" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:06 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260835" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "73198056" + } + ], + "input-pps": [ + { + "data": "18760" + } + ], + "output-bps": [ + { + "data": "241340736" + } + ], + "output-pps": [ + { + "data": "29459" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/6.3200" + } + ], + "local-index": [ + { + "data": "529" + } + ], + "snmp-index": [ + { + "data": "866" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3200 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3200 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "192743464875" + } + ], + "output-packets": [ + { + "data": "202554011599" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.35.120/30" + } + ], + "ifa-local": [ + { + "data": "123.65.35.121" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.35.123" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3201" + } + ], + "local-index": [ + { + "data": "530" + } + ], + "snmp-index": [ + { + "data": "867" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3201 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3201 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "113140278179" + } + ], + "output-packets": [ + { + "data": "157307660409" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.35.124/30" + } + ], + "ifa-local": [ + { + "data": "123.65.35.125" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.35.127" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3202" + } + ], + "local-index": [ + { + "data": "531" + } + ], + "snmp-index": [ + { + "data": "868" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3202 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3202 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "6889740374" + } + ], + "output-packets": [ + { + "data": "2966543706" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.35.128/30" + } + ], + "ifa-local": [ + { + "data": "123.65.35.129" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.35.131" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3203" + } + ], + "local-index": [ + { + "data": "532" + } + ], + "snmp-index": [ + { + "data": "869" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3203 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3203 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3952383581" + } + ], + "output-packets": [ + { + "data": "8597963436" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.35.132/30" + } + ], + "ifa-local": [ + { + "data": "123.65.35.133" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.35.135" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3204" + } + ], + "local-index": [ + { + "data": "533" + } + ], + "snmp-index": [ + { + "data": "870" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3204 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3204 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1715906053" + } + ], + "output-packets": [ + { + "data": "924112944" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.35.136/30" + } + ], + "ifa-local": [ + { + "data": "123.65.35.137" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.35.139" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3205" + } + ], + "local-index": [ + { + "data": "534" + } + ], + "snmp-index": [ + { + "data": "871" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3205 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3205 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1383783" + } + ], + "output-packets": [ + { + "data": "1386034" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.35.140/30" + } + ], + "ifa-local": [ + { + "data": "123.65.35.141" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.35.143" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3206" + } + ], + "local-index": [ + { + "data": "535" + } + ], + "snmp-index": [ + { + "data": "896" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3206 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3206 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "12949092" + } + ], + "output-packets": [ + { + "data": "11059972" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.38.176/30" + } + ], + "ifa-local": [ + { + "data": "123.65.38.177" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.38.179" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3207" + } + ], + "local-index": [ + { + "data": "536" + } + ], + "snmp-index": [ + { + "data": "944" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3207 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3207 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "13066798" + } + ], + "output-packets": [ + { + "data": "12723573" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.41.0/30" + } + ], + "ifa-local": [ + { + "data": "123.65.41.1" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.41.3" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.32767" + } + ], + "local-index": [ + { + "data": "537" + } + ], + "snmp-index": [ + { + "data": "872" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "645224" + } + ], + "output-packets": [ + { + "data": "694003" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "330" + } + ], + "snmp-index": [ + { + "data": "691" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cc" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:79" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:06 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260835" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "454293976" + } + ], + "input-pps": [ + { + "data": "62952" + } + ], + "output-bps": [ + { + "data": "736817224" + } + ], + "output-pps": [ + { + "data": "96753" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/7.2100" + } + ], + "local-index": [ + { + "data": "538" + } + ], + "snmp-index": [ + { + "data": "815" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "776115035136" + } + ], + "output-packets": [ + { + "data": "1286132830247" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.2100" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/7.32767" + } + ], + "local-index": [ + { + "data": "539" + } + ], + "snmp-index": [ + { + "data": "806" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "20773109" + } + ], + "output-packets": [ + { + "data": "694029" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/8" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "331" + } + ], + "snmp-index": [ + { + "data": "692" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:7a" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:7a" + } + ], + "interface-flapped": [ + { + "data": "2024-02-27 10:53:22 UTC (31w3d 03:04 ago)", + "attributes": { + "junos:seconds": "19019079" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "5" + } + ], + "errored-blocks-seconds": [ + { + "data": "5" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/9" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "332" + } + ], + "snmp-index": [ + { + "data": "693" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:7b" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:7b" + } + ], + "interface-flapped": [ + { + "data": "2024-02-27 11:09:20 UTC (31w3d 02:48 ago)", + "attributes": { + "junos:seconds": "19018121" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "5" + } + ], + "errored-blocks-seconds": [ + { + "data": "8" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "333" + } + ], + "snmp-index": [ + { + "data": "698" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:c4" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:c4" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:14 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260827" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "45808" + } + ], + "input-pps": [ + { + "data": "5" + } + ], + "output-bps": [ + { + "data": "3545912" + } + ], + "output-pps": [ + { + "data": "1596" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/0.3002" + } + ], + "local-index": [ + { + "data": "550" + } + ], + "snmp-index": [ + { + "data": "711" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3002 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3002 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "124037042" + } + ], + "output-packets": [ + { + "data": "45155528997" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.20.64/30" + } + ], + "ifa-local": [ + { + "data": "123.65.20.65" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.20.67" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/0.32767" + } + ], + "local-index": [ + { + "data": "551" + } + ], + "snmp-index": [ + { + "data": "712" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1290308" + } + ], + "output-packets": [ + { + "data": "694048" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "334" + } + ], + "snmp-index": [ + { + "data": "699" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:c5" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:c5" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:14 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260827" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "134872" + } + ], + "input-pps": [ + { + "data": "84" + } + ], + "output-bps": [ + { + "data": "1084152" + } + ], + "output-pps": [ + { + "data": "158" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/1.3003" + } + ], + "local-index": [ + { + "data": "552" + } + ], + "snmp-index": [ + { + "data": "724" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3003 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3003 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "28153835888" + } + ], + "output-packets": [ + { + "data": "8414768840" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.20.80/30" + } + ], + "ifa-local": [ + { + "data": "123.65.20.81" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.20.83" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/1.3005" + } + ], + "local-index": [ + { + "data": "553" + } + ], + "snmp-index": [ + { + "data": "761" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3005 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3005 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2676827" + } + ], + "output-packets": [ + { + "data": "1384960" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.19.248/30" + } + ], + "ifa-local": [ + { + "data": "123.65.19.249" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.19.251" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/1.3006" + } + ], + "local-index": [ + { + "data": "554" + } + ], + "snmp-index": [ + { + "data": "850" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3006 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3006 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "5466373" + } + ], + "output-packets": [ + { + "data": "3500181" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.20.20/30" + } + ], + "ifa-local": [ + { + "data": "123.65.20.21" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.20.23" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/1.32767" + } + ], + "local-index": [ + { + "data": "555" + } + ], + "snmp-index": [ + { + "data": "725" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2580480" + } + ], + "output-packets": [ + { + "data": "693959" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "335" + } + ], + "snmp-index": [ + { + "data": "694" + } + ], + "description": [ + { + "data": "UMI" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:c6" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:c6" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:14 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260827" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "8" + } + ], + "errored-blocks-seconds": [ + { + "data": "19" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "336" + } + ], + "snmp-index": [ + { + "data": "695" + } + ], + "description": [ + { + "data": "UMI" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:c7" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:c7" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:14 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260827" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "6" + } + ], + "errored-blocks-seconds": [ + { + "data": "7" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "337" + } + ], + "snmp-index": [ + { + "data": "696" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:c8" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:c8" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:07 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260834" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/4.16386" + } + ], + "local-index": [ + { + "data": "556" + } + ], + "snmp-index": [ + { + "data": "861" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "338" + } + ], + "snmp-index": [ + { + "data": "697" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet-VPLS" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:c9" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:c9" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:14 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260827" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "984" + } + ], + "input-pps": [ + { + "data": "1" + } + ], + "output-bps": [ + { + "data": "272" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/5.0" + } + ], + "local-index": [ + { + "data": "557" + } + ], + "snmp-index": [ + { + "data": "735" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-VPLS" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "35501317" + } + ], + "output-packets": [ + { + "data": "25796319" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "339" + } + ], + "snmp-index": [ + { + "data": "700" + } + ], + "description": [ + { + "data": "UMI - reserved for Ixia E1S" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:ca" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:ca" + } + ], + "interface-flapped": [ + { + "data": "2024-04-20 05:33:55 UTC (23w6d 08:24 ago)", + "attributes": { + "junos:seconds": "14459046" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "324568400" + } + ], + "input-pps": [ + { + "data": "47520" + } + ], + "output-bps": [ + { + "data": "3784" + } + ], + "output-pps": [ + { + "data": "2" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/6.3111" + } + ], + "local-index": [ + { + "data": "558" + } + ], + "snmp-index": [ + { + "data": "991" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3111 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3111 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "158693482144" + } + ], + "output-packets": [ + { + "data": "37853927" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.41.240/29" + } + ], + "ifa-local": [ + { + "data": "123.65.41.241" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.41.247" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.41.240/29" + } + ], + "ifa-local": [ + { + "data": "123.65.41.242" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.41.247" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/6.32767" + } + ], + "local-index": [ + { + "data": "559" + } + ], + "snmp-index": [ + { + "data": "992" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "645226" + } + ], + "output-packets": [ + { + "data": "694019" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "340" + } + ], + "snmp-index": [ + { + "data": "701" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cd" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:cb" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:14 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260827" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "166626240" + } + ], + "input-pps": [ + { + "data": "23218" + } + ], + "output-bps": [ + { + "data": "40561208" + } + ], + "output-pps": [ + { + "data": "13891" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/7.3100" + } + ], + "local-index": [ + { + "data": "572" + } + ], + "snmp-index": [ + { + "data": "844" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "294121609390" + } + ], + "output-packets": [ + { + "data": "408228437001" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3100" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.3101" + } + ], + "local-index": [ + { + "data": "573" + } + ], + "snmp-index": [ + { + "data": "843" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3101 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3101 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "108886590248" + } + ], + "output-packets": [ + { + "data": "57087314212" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3101" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.3102" + } + ], + "local-index": [ + { + "data": "589" + } + ], + "snmp-index": [ + { + "data": "842" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3102 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3102 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2728705188" + } + ], + "output-packets": [ + { + "data": "3694159526" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3102" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.3103" + } + ], + "local-index": [ + { + "data": "591" + } + ], + "snmp-index": [ + { + "data": "841" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3103 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3103 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "15232335877" + } + ], + "output-packets": [ + { + "data": "2038805846" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3103" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.3104" + } + ], + "local-index": [ + { + "data": "600" + } + ], + "snmp-index": [ + { + "data": "840" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3104 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3104 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "831309193" + } + ], + "output-packets": [ + { + "data": "887355198" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3104" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.3105" + } + ], + "local-index": [ + { + "data": "601" + } + ], + "snmp-index": [ + { + "data": "839" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3105 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3105 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "344215" + } + ], + "output-packets": [ + { + "data": "2871922" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3105" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.3600" + } + ], + "local-index": [ + { + "data": "602" + } + ], + "snmp-index": [ + { + "data": "899" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3600 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3600 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "245" + } + ], + "output-packets": [ + { + "data": "190" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.3600" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/7.32767" + } + ], + "local-index": [ + { + "data": "603" + } + ], + "snmp-index": [ + { + "data": "810" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "21369400" + } + ], + "output-packets": [ + { + "data": "694011" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae18.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/8" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "341" + } + ], + "snmp-index": [ + { + "data": "702" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:cc" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:cc" + } + ], + "interface-flapped": [ + { + "data": "2024-06-04 06:31:37 UTC (17w3d 07:26 ago)", + "attributes": { + "junos:seconds": "10567584" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "342" + } + ], + "snmp-index": [ + { + "data": "703" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b9:cd" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b9:cd" + } + ], + "interface-flapped": [ + { + "data": "2024-02-24 15:44:14 UTC (31w5d 22:13 ago)", + "attributes": { + "junos:seconds": "19260827" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "29949640" + } + ], + "input-pps": [ + { + "data": "7855" + } + ], + "output-bps": [ + { + "data": "63691264" + } + ], + "output-pps": [ + { + "data": "9846" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/9.2003" + } + ], + "local-index": [ + { + "data": "605" + } + ], + "snmp-index": [ + { + "data": "722" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2003 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2003 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "184942445145" + } + ], + "output-packets": [ + { + "data": "242573063574" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.5.74/31" + } + ], + "ifa-local": [ + { + "data": "123.65.5.74" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/9.32767" + } + ], + "local-index": [ + { + "data": "606" + } + ], + "snmp-index": [ + { + "data": "723" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "694062" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "280" + } + ], + "snmp-index": [ + { + "data": "571" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:17" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:17" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "62015808" + } + ], + "input-pps": [ + { + "data": "11906" + } + ], + "output-bps": [ + { + "data": "1405424" + } + ], + "output-pps": [ + { + "data": "2046" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/0.2950" + } + ], + "local-index": [ + { + "data": "398" + } + ], + "snmp-index": [ + { + "data": "620" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2950 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2950 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "7359774039" + } + ], + "output-packets": [ + { + "data": "4918885444" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "18" + } + ], + "intf-unresolved-cnt": [ + { + "data": "1" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.212.0/26" + } + ], + "ifa-local": [ + { + "data": "123.65.212.1" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.212.63" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.212.0/26" + } + ], + "ifa-local": [ + { + "data": "123.65.212.2" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.212.63" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.2951" + } + ], + "local-index": [ + { + "data": "399" + } + ], + "snmp-index": [ + { + "data": "622" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2951 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2951 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3847587902" + } + ], + "output-packets": [ + { + "data": "1480319180" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "3" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "134.248.215.64/28" + } + ], + "ifa-local": [ + { + "data": "134.248.215.65" + } + ], + "ifa-broadcast": [ + { + "data": "134.248.215.79" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "134.248.215.64/28" + } + ], + "ifa-local": [ + { + "data": "134.248.215.66" + } + ], + "ifa-broadcast": [ + { + "data": "134.248.215.79" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.2952" + } + ], + "local-index": [ + { + "data": "400" + } + ], + "snmp-index": [ + { + "data": "717" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2952 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2952 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "8626623092" + } + ], + "output-packets": [ + { + "data": "24760224" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.0.192/29" + } + ], + "ifa-local": [ + { + "data": "123.65.0.193" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.0.199" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.0.192/29" + } + ], + "ifa-local": [ + { + "data": "123.65.0.194" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.0.199" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.2953" + } + ], + "local-index": [ + { + "data": "401" + } + ], + "snmp-index": [ + { + "data": "782" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2953 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2953 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2340314797" + } + ], + "output-packets": [ + { + "data": "1420992081" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.132.8/29" + } + ], + "ifa-local": [ + { + "data": "123.65.132.9" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.132.15" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.132.8/29" + } + ], + "ifa-local": [ + { + "data": "123.65.132.11" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.132.15" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.2960" + } + ], + "local-index": [ + { + "data": "402" + } + ], + "snmp-index": [ + { + "data": "644" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2960 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2960 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "146915260894" + } + ], + "output-packets": [ + { + "data": "14832536755" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "30" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "124.46.189.128/26" + } + ], + "ifa-local": [ + { + "data": "124.46.189.129" + } + ], + "ifa-broadcast": [ + { + "data": "124.46.189.191" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "124.46.189.128/26" + } + ], + "ifa-local": [ + { + "data": "124.46.189.130" + } + ], + "ifa-broadcast": [ + { + "data": "124.46.189.191" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.32767" + } + ], + "local-index": [ + { + "data": "403" + } + ], + "snmp-index": [ + { + "data": "619" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "725911" + } + ], + "output-packets": [ + { + "data": "780891" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lc-11/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "277" + } + ], + "snmp-index": [ + { + "data": "558" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-11/0/0.32769" + } + ], + "local-index": [ + { + "data": "325" + } + ], + "snmp-index": [ + { + "data": "559" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-11/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "279" + } + ], + "snmp-index": [ + { + "data": "561" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-11/0/0.16383" + } + ], + "local-index": [ + { + "data": "395" + } + ], + "snmp-index": [ + { + "data": "563" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-11/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "278" + } + ], + "snmp-index": [ + { + "data": "560" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-11/0/0.16383" + } + ], + "local-index": [ + { + "data": "396" + } + ], + "snmp-index": [ + { + "data": "562" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-11/0/0.16384" + } + ], + "local-index": [ + { + "data": "397" + } + ], + "snmp-index": [ + { + "data": "736" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "281" + } + ], + "snmp-index": [ + { + "data": "572" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c6" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:18" + } + ], + "interface-flapped": [ + { + "data": "2024-08-02 22:55:30 UTC (8w6d 15:02 ago)", + "attributes": { + "junos:seconds": "5410951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "26296" + } + ], + "input-pps": [ + { + "data": "16" + } + ], + "output-bps": [ + { + "data": "315640" + } + ], + "output-pps": [ + { + "data": "222" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/1.0" + } + ], + "local-index": [ + { + "data": "404" + } + ], + "snmp-index": [ + { + "data": "733" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3293579104" + } + ], + "output-packets": [ + { + "data": "4117769415" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae6.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "282" + } + ], + "snmp-index": [ + { + "data": "573" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "disabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:19" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:19" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "367184" + } + ], + "input-pps": [ + { + "data": "252" + } + ], + "output-bps": [ + { + "data": "29784" + } + ], + "output-pps": [ + { + "data": "27" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/2.3001" + } + ], + "local-index": [ + { + "data": "405" + } + ], + "snmp-index": [ + { + "data": "708" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "5162685941" + } + ], + "output-packets": [ + { + "data": "1410558972" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.19.80/30" + } + ], + "ifa-local": [ + { + "data": "123.65.19.82" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.19.83" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/2.32767" + } + ], + "local-index": [ + { + "data": "406" + } + ], + "snmp-index": [ + { + "data": "672" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "780891" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "283" + } + ], + "snmp-index": [ + { + "data": "564" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "disabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:1a" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:1a" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:19 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672162" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "284" + } + ], + "snmp-index": [ + { + "data": "565" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:1b" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:1b" + } + ], + "interface-flapped": [ + { + "data": "2024-04-04 17:14:24 UTC (26w0d 20:43 ago)", + "attributes": { + "junos:seconds": "15799417" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "416" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/4.900" + } + ], + "local-index": [ + { + "data": "407" + } + ], + "snmp-index": [ + { + "data": "737" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.900 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.900 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1575725" + } + ], + "output-packets": [ + { + "data": "13150365" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.21.240/30" + } + ], + "ifa-local": [ + { + "data": "123.65.21.241" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.21.243" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/4.902" + } + ], + "local-index": [ + { + "data": "408" + } + ], + "snmp-index": [ + { + "data": "741" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.902 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.902 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1557037" + } + ], + "output-packets": [ + { + "data": "12396047" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.22.40/30" + } + ], + "ifa-local": [ + { + "data": "123.65.22.41" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.22.43" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/4.32767" + } + ], + "local-index": [ + { + "data": "410" + } + ], + "snmp-index": [ + { + "data": "738" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1157833" + } + ], + "output-packets": [ + { + "data": "780841" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "285" + } + ], + "snmp-index": [ + { + "data": "566" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:ca" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:1c" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "168" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/5.0" + } + ], + "local-index": [ + { + "data": "411" + } + ], + "snmp-index": [ + { + "data": "721" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1053742331" + } + ], + "output-packets": [ + { + "data": "4022943543" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae10.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "286" + } + ], + "snmp-index": [ + { + "data": "567" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "disabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:1d" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:1d" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2621688" + } + ], + "input-pps": [ + { + "data": "1922" + } + ], + "output-bps": [ + { + "data": "2563416" + } + ], + "output-pps": [ + { + "data": "1886" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/6.2000" + } + ], + "local-index": [ + { + "data": "412" + } + ], + "snmp-index": [ + { + "data": "647" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "180mbps" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "24121194331" + } + ], + "output-packets": [ + { + "data": "23579918928" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.8.0/30" + } + ], + "ifa-local": [ + { + "data": "123.65.8.2" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.8.3" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/6.32767" + } + ], + "local-index": [ + { + "data": "413" + } + ], + "snmp-index": [ + { + "data": "646" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "780949" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "287" + } + ], + "snmp-index": [ + { + "data": "568" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:1e" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:1e" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2562536" + } + ], + "input-pps": [ + { + "data": "1883" + } + ], + "output-bps": [ + { + "data": "2622648" + } + ], + "output-pps": [ + { + "data": "1922" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/7.2000" + } + ], + "local-index": [ + { + "data": "414" + } + ], + "snmp-index": [ + { + "data": "652" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "23522163519" + } + ], + "output-packets": [ + { + "data": "24113432803" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "3" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "124.22.0.0/28" + } + ], + "ifa-local": [ + { + "data": "124.22.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "124.22.0.15" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "124.22.0.0/28" + } + ], + "ifa-local": [ + { + "data": "124.22.0.2" + } + ], + "ifa-broadcast": [ + { + "data": "124.22.0.15" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/7.32767" + } + ], + "local-index": [ + { + "data": "415" + } + ], + "snmp-index": [ + { + "data": "653" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "726009" + } + ], + "output-packets": [ + { + "data": "780945" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "288" + } + ], + "snmp-index": [ + { + "data": "569" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:1f" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:1f" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/9" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "289" + } + ], + "snmp-index": [ + { + "data": "570" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:20" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:20" + } + ], + "interface-flapped": [ + { + "data": "2024-07-29 14:59:27 UTC (9w3d 22:58 ago)", + "attributes": { + "junos:seconds": "5785114" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "290" + } + ], + "snmp-index": [ + { + "data": "581" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "disabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:40" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:40" + } + ], + "interface-flapped": [ + { + "data": "2024-06-12 20:06:03 UTC (16w1d 17:51 ago)", + "attributes": { + "junos:seconds": "9827518" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "291" + } + ], + "snmp-index": [ + { + "data": "582" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c3" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:41" + } + ], + "interface-flapped": [ + { + "data": "2024-08-22 09:57:19 UTC (6w1d 04:00 ago)", + "attributes": { + "junos:seconds": "3729642" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "6183536" + } + ], + "input-pps": [ + { + "data": "1761" + } + ], + "output-bps": [ + { + "data": "3472512" + } + ], + "output-pps": [ + { + "data": "1167" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/1/1.0" + } + ], + "local-index": [ + { + "data": "418" + } + ], + "snmp-index": [ + { + "data": "941" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "127228129771" + } + ], + "output-packets": [ + { + "data": "26415757788" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae3.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/2" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "292" + } + ], + "snmp-index": [ + { + "data": "583" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:42" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:42" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:19 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672162" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "293" + } + ], + "snmp-index": [ + { + "data": "574" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:43" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:43" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:19 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672162" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "294" + } + ], + "snmp-index": [ + { + "data": "575" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "disabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:44" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:44" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "8599024" + } + ], + "input-pps": [ + { + "data": "2154" + } + ], + "output-bps": [ + { + "data": "5652824" + } + ], + "output-pps": [ + { + "data": "2025" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/1/4.2901" + } + ], + "local-index": [ + { + "data": "420" + } + ], + "snmp-index": [ + { + "data": "780" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2901 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2901 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "44829645" + } + ], + "output-packets": [ + { + "data": "44853941" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.19.200/30" + } + ], + "ifa-local": [ + { + "data": "123.65.19.202" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.19.203" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/4.2902" + } + ], + "local-index": [ + { + "data": "421" + } + ], + "snmp-index": [ + { + "data": "781" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2902 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2902 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "44847705" + } + ], + "output-packets": [ + { + "data": "44872009" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.19.208/30" + } + ], + "ifa-local": [ + { + "data": "123.65.19.210" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.19.211" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/4.3005" + } + ], + "local-index": [ + { + "data": "422" + } + ], + "snmp-index": [ + { + "data": "732" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3005 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3005 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "84680308830" + } + ], + "output-packets": [ + { + "data": "111837313524" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.19.84/30" + } + ], + "ifa-local": [ + { + "data": "123.65.19.86" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.19.87" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/4.32767" + } + ], + "local-index": [ + { + "data": "423" + } + ], + "snmp-index": [ + { + "data": "719" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "780934" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/5" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "295" + } + ], + "snmp-index": [ + { + "data": "576" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:45" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:45" + } + ], + "interface-flapped": [ + { + "data": "2024-02-27 11:31:24 UTC (31w3d 02:26 ago)", + "attributes": { + "junos:seconds": "19016797" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "296" + } + ], + "snmp-index": [ + { + "data": "577" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "disabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:46" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:46" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "22105728" + } + ], + "input-pps": [ + { + "data": "5655" + } + ], + "output-bps": [ + { + "data": "9469144" + } + ], + "output-pps": [ + { + "data": "3487" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/1/6.3007" + } + ], + "local-index": [ + { + "data": "433" + } + ], + "snmp-index": [ + { + "data": "942" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3007 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3007 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "51722794716" + } + ], + "output-packets": [ + { + "data": "7315032147" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.8.76/30" + } + ], + "ifa-local": [ + { + "data": "123.65.8.77" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.8.79" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/6.32767" + } + ], + "local-index": [ + { + "data": "434" + } + ], + "snmp-index": [ + { + "data": "943" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "780917" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "297" + } + ], + "snmp-index": [ + { + "data": "578" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:47" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:47" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2302880" + } + ], + "input-pps": [ + { + "data": "1738" + } + ], + "output-bps": [ + { + "data": "1452344" + } + ], + "output-pps": [ + { + "data": "1159" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/1/7.3000" + } + ], + "local-index": [ + { + "data": "451" + } + ], + "snmp-index": [ + { + "data": "669" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "19255493312" + } + ], + "output-packets": [ + { + "data": "11379372779" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "6" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "124.34.0.0/28" + } + ], + "ifa-local": [ + { + "data": "124.34.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "124.34.0.15" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "124.34.0.0/28" + } + ], + "ifa-local": [ + { + "data": "124.34.0.2" + } + ], + "ifa-broadcast": [ + { + "data": "124.34.0.15" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/7.32767" + } + ], + "local-index": [ + { + "data": "454" + } + ], + "snmp-index": [ + { + "data": "670" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "726010" + } + ], + "output-packets": [ + { + "data": "780911" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/8" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "298" + } + ], + "snmp-index": [ + { + "data": "579" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:48" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:48" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:19 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672162" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/9" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "299" + } + ], + "snmp-index": [ + { + "data": "580" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:49" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:49" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:19 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672162" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "300" + } + ], + "snmp-index": [ + { + "data": "956" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:69" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:69" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/0.16386" + } + ], + "local-index": [ + { + "data": "459" + } + ], + "snmp-index": [ + { + "data": "964" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "301" + } + ], + "snmp-index": [ + { + "data": "957" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:6a" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:6a" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/1.16386" + } + ], + "local-index": [ + { + "data": "460" + } + ], + "snmp-index": [ + { + "data": "958" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "302" + } + ], + "snmp-index": [ + { + "data": "959" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:6b" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:6b" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/2.16386" + } + ], + "local-index": [ + { + "data": "509" + } + ], + "snmp-index": [ + { + "data": "960" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "303" + } + ], + "snmp-index": [ + { + "data": "961" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:6c" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:6c" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/3.16386" + } + ], + "local-index": [ + { + "data": "511" + } + ], + "snmp-index": [ + { + "data": "962" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "304" + } + ], + "snmp-index": [ + { + "data": "963" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:6d" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:6d" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/4.16386" + } + ], + "local-index": [ + { + "data": "512" + } + ], + "snmp-index": [ + { + "data": "965" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "305" + } + ], + "snmp-index": [ + { + "data": "951" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:6e" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:6e" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/5.16386" + } + ], + "local-index": [ + { + "data": "513" + } + ], + "snmp-index": [ + { + "data": "966" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "306" + } + ], + "snmp-index": [ + { + "data": "952" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:6f" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:6f" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/6.16386" + } + ], + "local-index": [ + { + "data": "514" + } + ], + "snmp-index": [ + { + "data": "970" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "307" + } + ], + "snmp-index": [ + { + "data": "953" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:70" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:70" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/7.16386" + } + ], + "local-index": [ + { + "data": "515" + } + ], + "snmp-index": [ + { + "data": "967" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "308" + } + ], + "snmp-index": [ + { + "data": "954" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:71" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:71" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/8.16386" + } + ], + "local-index": [ + { + "data": "516" + } + ], + "snmp-index": [ + { + "data": "968" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/2/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "309" + } + ], + "snmp-index": [ + { + "data": "955" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:72" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:72" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/2/9.16386" + } + ], + "local-index": [ + { + "data": "517" + } + ], + "snmp-index": [ + { + "data": "969" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "310" + } + ], + "snmp-index": [ + { + "data": "971" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:92" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:92" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:32 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672149" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/0.16386" + } + ], + "local-index": [ + { + "data": "518" + } + ], + "snmp-index": [ + { + "data": "981" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "311" + } + ], + "snmp-index": [ + { + "data": "972" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:93" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:93" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:32 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672149" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/1.16386" + } + ], + "local-index": [ + { + "data": "560" + } + ], + "snmp-index": [ + { + "data": "982" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "312" + } + ], + "snmp-index": [ + { + "data": "973" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:94" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:94" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:32 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672149" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/2.16386" + } + ], + "local-index": [ + { + "data": "561" + } + ], + "snmp-index": [ + { + "data": "983" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "313" + } + ], + "snmp-index": [ + { + "data": "974" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:95" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:95" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/3.16386" + } + ], + "local-index": [ + { + "data": "562" + } + ], + "snmp-index": [ + { + "data": "984" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "314" + } + ], + "snmp-index": [ + { + "data": "975" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:96" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:96" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/4.16386" + } + ], + "local-index": [ + { + "data": "563" + } + ], + "snmp-index": [ + { + "data": "985" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "315" + } + ], + "snmp-index": [ + { + "data": "976" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:97" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:97" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/5.16386" + } + ], + "local-index": [ + { + "data": "569" + } + ], + "snmp-index": [ + { + "data": "986" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "316" + } + ], + "snmp-index": [ + { + "data": "977" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:98" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:98" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:29 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672152" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/6.16386" + } + ], + "local-index": [ + { + "data": "570" + } + ], + "snmp-index": [ + { + "data": "987" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "317" + } + ], + "snmp-index": [ + { + "data": "978" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:99" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:99" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:32 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672149" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/7.16386" + } + ], + "local-index": [ + { + "data": "571" + } + ], + "snmp-index": [ + { + "data": "988" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "318" + } + ], + "snmp-index": [ + { + "data": "979" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:9a" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:9a" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:32 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672149" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/8.16386" + } + ], + "local-index": [ + { + "data": "576" + } + ], + "snmp-index": [ + { + "data": "989" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-11/3/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "319" + } + ], + "snmp-index": [ + { + "data": "980" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:9b" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:9b" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:32 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672149" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/3/9.16386" + } + ], + "local-index": [ + { + "data": "577" + } + ], + "snmp-index": [ + { + "data": "990" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "128" + } + ], + "snmp-index": [ + { + "data": "588" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "40Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c0" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c0" + } + ], + "interface-flapped": [ + { + "data": "2024-02-10 15:56:14 UTC (33w5d 22:01 ago)", + "attributes": { + "junos:seconds": "20469707" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "173376752" + } + ], + "input-pps": [ + { + "data": "60100" + } + ], + "output-bps": [ + { + "data": "442171344" + } + ], + "output-pps": [ + { + "data": "59461" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "local-index": [ + { + "data": "323" + } + ], + "snmp-index": [ + { + "data": "604" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "4420502536826" + } + ], + "input-pps": [ + { + "data": "60100" + } + ], + "input-bytes": [ + { + "data": "3642696258070400" + } + ], + "input-bps": [ + { + "data": "173375392" + } + ], + "output-packets": [ + { + "data": "1994595851266" + } + ], + "output-pps": [ + { + "data": "59454" + } + ], + "output-bytes": [ + { + "data": "1633925020267001" + } + ], + "output-bps": [ + { + "data": "442159560" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.4/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.5" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "129" + } + ], + "snmp-index": [ + { + "data": "589" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Unspecified" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c1" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c1" + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:52:12 UTC (107w5d 11:05 ago)", + "attributes": { + "junos:seconds": "65185549" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "130" + } + ], + "snmp-index": [ + { + "data": "775" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "100Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c2" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c2" + } + ], + "interface-flapped": [ + { + "data": "2024-09-30 19:53:22 UTC (3d 18:04 ago)", + "attributes": { + "junos:seconds": "324279" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1374479152" + } + ], + "input-pps": [ + { + "data": "195973" + } + ], + "output-bps": [ + { + "data": "1262797704" + } + ], + "output-pps": [ + { + "data": "175404" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae2.0" + } + ], + "local-index": [ + { + "data": "324" + } + ], + "snmp-index": [ + { + "data": "776" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "12366791716113" + } + ], + "input-pps": [ + { + "data": "195973" + } + ], + "input-bytes": [ + { + "data": "13630786958294728" + } + ], + "input-bps": [ + { + "data": "1374479152" + } + ], + "output-packets": [ + { + "data": "11441256776942" + } + ], + "output-pps": [ + { + "data": "174765" + } + ], + "output-bytes": [ + { + "data": "12964946676803909" + } + ], + "output-bps": [ + { + "data": "1259468648" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.166/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.167" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "131" + } + ], + "snmp-index": [ + { + "data": "783" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c3" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c3" + } + ], + "interface-flapped": [ + { + "data": "2024-08-22 09:57:22 UTC (6w1d 04:00 ago)", + "attributes": { + "junos:seconds": "3729639" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "6183536" + } + ], + "input-pps": [ + { + "data": "1761" + } + ], + "output-bps": [ + { + "data": "3472512" + } + ], + "output-pps": [ + { + "data": "1167" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae3.0" + } + ], + "local-index": [ + { + "data": "510" + } + ], + "snmp-index": [ + { + "data": "788" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "144413877458" + } + ], + "input-pps": [ + { + "data": "1761" + } + ], + "input-bytes": [ + { + "data": "178945904406291" + } + ], + "input-bps": [ + { + "data": "6182104" + } + ], + "output-packets": [ + { + "data": "44113701663" + } + ], + "output-pps": [ + { + "data": "1167" + } + ], + "output-bytes": [ + { + "data": "17511669891965" + } + ], + "output-bps": [ + { + "data": "3472512" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.26/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.27" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "133" + } + ], + "snmp-index": [ + { + "data": "593" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c5" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c5" + } + ], + "interface-flapped": [ + { + "data": "2024-09-19 22:28:16 UTC (2w0d 15:29 ago)", + "attributes": { + "junos:seconds": "1265385" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "207098192" + } + ], + "input-pps": [ + { + "data": "27405" + } + ], + "output-bps": [ + { + "data": "78989384" + } + ], + "output-pps": [ + { + "data": "21301" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae5.0" + } + ], + "local-index": [ + { + "data": "327" + } + ], + "snmp-index": [ + { + "data": "608" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "2296260879264" + } + ], + "input-pps": [ + { + "data": "27405" + } + ], + "input-bytes": [ + { + "data": "2514392462169369" + } + ], + "input-bps": [ + { + "data": "207098192" + } + ], + "output-packets": [ + { + "data": "900830331667" + } + ], + "output-pps": [ + { + "data": "21299" + } + ], + "output-bytes": [ + { + "data": "588497356815361" + } + ], + "output-bps": [ + { + "data": "78987400" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.126/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.127" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "134" + } + ], + "snmp-index": [ + { + "data": "594" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c6" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c6" + } + ], + "interface-flapped": [ + { + "data": "2024-09-27 11:51:17 UTC (1w0d 02:06 ago)", + "attributes": { + "junos:seconds": "612404" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "26296" + } + ], + "input-pps": [ + { + "data": "16" + } + ], + "output-bps": [ + { + "data": "315664" + } + ], + "output-pps": [ + { + "data": "222" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae6.0" + } + ], + "local-index": [ + { + "data": "328" + } + ], + "snmp-index": [ + { + "data": "734" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "200mbps" + } + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "9965734689" + } + ], + "input-pps": [ + { + "data": "16" + } + ], + "input-bytes": [ + { + "data": "8665424747286" + } + ], + "input-bps": [ + { + "data": "26296" + } + ], + "output-packets": [ + { + "data": "9272751681" + } + ], + "output-pps": [ + { + "data": "222" + } + ], + "output-bytes": [ + { + "data": "6030451379984" + } + ], + "output-bps": [ + { + "data": "315280" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.228/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.229" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "135" + } + ], + "snmp-index": [ + { + "data": "584" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c7" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c7" + } + ], + "interface-flapped": [ + { + "data": "2024-08-20 19:09:17 UTC (6w2d 18:48 ago)", + "attributes": { + "junos:seconds": "3869324" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "111824" + } + ], + "input-pps": [ + { + "data": "78" + } + ], + "output-bps": [ + { + "data": "110840" + } + ], + "output-pps": [ + { + "data": "63" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae7.0" + } + ], + "local-index": [ + { + "data": "598" + } + ], + "snmp-index": [ + { + "data": "926" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "157503873043" + } + ], + "input-pps": [ + { + "data": "78" + } + ], + "input-bytes": [ + { + "data": "148156039599239" + } + ], + "input-bps": [ + { + "data": "111824" + } + ], + "output-packets": [ + { + "data": "181472569730" + } + ], + "output-pps": [ + { + "data": "63" + } + ], + "output-bytes": [ + { + "data": "206867104484956" + } + ], + "output-bps": [ + { + "data": "110840" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.236/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.236" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "136" + } + ], + "snmp-index": [ + { + "data": "585" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c8" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c8" + } + ], + "interface-flapped": [ + { + "data": "2024-09-10 22:09:55 UTC (3w2d 15:48 ago)", + "attributes": { + "junos:seconds": "2044086" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "59949720" + } + ], + "input-pps": [ + { + "data": "6961" + } + ], + "output-bps": [ + { + "data": "53422608" + } + ], + "output-pps": [ + { + "data": "27826" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae8.0" + } + ], + "local-index": [ + { + "data": "329" + } + ], + "snmp-index": [ + { + "data": "609" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "40899880631" + } + ], + "input-pps": [ + { + "data": "6961" + } + ], + "input-bytes": [ + { + "data": "34810003159669" + } + ], + "input-bps": [ + { + "data": "59949720" + } + ], + "output-packets": [ + { + "data": "110867568412" + } + ], + "output-pps": [ + { + "data": "27821" + } + ], + "output-bytes": [ + { + "data": "52115617263247" + } + ], + "output-bps": [ + { + "data": "53413320" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.122/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.123" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae9" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "137" + } + ], + "snmp-index": [ + { + "data": "586" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Unspecified" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c9" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c9" + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:52:12 UTC (107w5d 11:05 ago)", + "attributes": { + "junos:seconds": "65185549" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "138" + } + ], + "snmp-index": [ + { + "data": "587" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:ca" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:ca" + } + ], + "interface-flapped": [ + { + "data": "2024-01-27 17:55:21 UTC (35w5d 20:02 ago)", + "attributes": { + "junos:seconds": "21672160" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "192" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae10.0" + } + ], + "local-index": [ + { + "data": "330" + } + ], + "snmp-index": [ + { + "data": "720" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "100mbps" + } + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "2867426786" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "input-bytes": [ + { + "data": "1983396840638" + } + ], + "input-bps": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "6828594922" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "5327177372655" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "1" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.56/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.57" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae15" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "139" + } + ], + "snmp-index": [ + { + "data": "786" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cb" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:cb" + } + ], + "interface-flapped": [ + { + "data": "2024-04-20 05:33:59 UTC (23w6d 08:24 ago)", + "attributes": { + "junos:seconds": "14459042" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "25217576" + } + ], + "input-pps": [ + { + "data": "5762" + } + ], + "output-bps": [ + { + "data": "21075624" + } + ], + "output-pps": [ + { + "data": "3351" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae15.4000" + } + ], + "local-index": [ + { + "data": "331" + } + ], + "snmp-index": [ + { + "data": "848" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.4000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.4000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "200614005192" + } + ], + "input-pps": [ + { + "data": "3116" + } + ], + "input-bytes": [ + { + "data": "147025847053982" + } + ], + "input-bps": [ + { + "data": "10307240" + } + ], + "output-packets": [ + { + "data": "102372915080" + } + ], + "output-pps": [ + { + "data": "1897" + } + ], + "output-bytes": [ + { + "data": "46121037389584" + } + ], + "output-bps": [ + { + "data": "17615624" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.196/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.196" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae15.4002" + } + ], + "local-index": [ + { + "data": "332" + } + ], + "snmp-index": [ + { + "data": "851" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.4002 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.4002 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "200mbps" + } + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "109026356479" + } + ], + "input-pps": [ + { + "data": "2645" + } + ], + "input-bytes": [ + { + "data": "77071020094120" + } + ], + "input-bps": [ + { + "data": "14909344" + } + ], + "output-packets": [ + { + "data": "88809683974" + } + ], + "output-pps": [ + { + "data": "1451" + } + ], + "output-bytes": [ + { + "data": "68954742746339" + } + ], + "output-bps": [ + { + "data": "3449776" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.200/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.200" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae15.32767" + } + ], + "local-index": [ + { + "data": "333" + } + ], + "snmp-index": [ + { + "data": "787" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "48124776" + } + ], + "input-pps": [ + { + "data": "1" + } + ], + "input-bytes": [ + { + "data": "5967472224" + } + ], + "input-bps": [ + { + "data": "992" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae17" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "140" + } + ], + "snmp-index": [ + { + "data": "804" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "20Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cc" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:cc" + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:55:36 UTC (107w5d 11:02 ago)", + "attributes": { + "junos:seconds": "65185345" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "738284392" + } + ], + "input-pps": [ + { + "data": "125696" + } + ], + "output-bps": [ + { + "data": "2158544696" + } + ], + "output-pps": [ + { + "data": "251020" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae17.2100" + } + ], + "local-index": [ + { + "data": "367" + } + ], + "snmp-index": [ + { + "data": "813" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "3395649936279" + } + ], + "input-pps": [ + { + "data": "125694" + } + ], + "input-bytes": [ + { + "data": "3404090773813278" + } + ], + "input-bps": [ + { + "data": "738282408" + } + ], + "output-packets": [ + { + "data": "4668238361027" + } + ], + "output-pps": [ + { + "data": "251020" + } + ], + "output-bytes": [ + { + "data": "4117739288305409" + } + ], + "output-bps": [ + { + "data": "2158544696" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.5.208/29" + } + ], + "ifa-local": [ + { + "data": "123.65.5.210" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.5.215" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "4" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:4106::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:4106:0:6:5457:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:408:3403:bacc" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae17.32767" + } + ], + "local-index": [ + { + "data": "334" + } + ], + "snmp-index": [ + { + "data": "807" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "96086637" + } + ], + "input-pps": [ + { + "data": "2" + } + ], + "input-bytes": [ + { + "data": "11914742988" + } + ], + "input-bps": [ + { + "data": "1984" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae18" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "141" + } + ], + "snmp-index": [ + { + "data": "808" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "20Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cd" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:cd" + } + ], + "interface-flapped": [ + { + "data": "2023-10-01 04:02:24 UTC (52w5d 09:55 ago)", + "attributes": { + "junos:seconds": "31917337" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "566376072" + } + ], + "input-pps": [ + { + "data": "67761" + } + ], + "output-bps": [ + { + "data": "136243032" + } + ], + "output-pps": [ + { + "data": "34266" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae18.3100" + } + ], + "local-index": [ + { + "data": "370" + } + ], + "snmp-index": [ + { + "data": "830" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "1192168403723" + } + ], + "input-pps": [ + { + "data": "39035" + } + ], + "input-bytes": [ + { + "data": "906945707059322" + } + ], + "input-bps": [ + { + "data": "297123968" + } + ], + "output-packets": [ + { + "data": "1504811431170" + } + ], + "output-pps": [ + { + "data": "27298" + } + ], + "output-bytes": [ + { + "data": "1675258375256457" + } + ], + "output-bps": [ + { + "data": "121568040" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.27.232/29" + } + ], + "ifa-local": [ + { + "data": "123.65.27.233" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.27.239" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:1010::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:1010:0:6:5456:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:40c:1c03:bacd" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae18.3101" + } + ], + "local-index": [ + { + "data": "372" + } + ], + "snmp-index": [ + { + "data": "829" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3101 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3101 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "397627622658" + } + ], + "input-pps": [ + { + "data": "24210" + } + ], + "input-bytes": [ + { + "data": "449367730219089" + } + ], + "input-bps": [ + { + "data": "226239624" + } + ], + "output-packets": [ + { + "data": "182487726429" + } + ], + "output-pps": [ + { + "data": "5618" + } + ], + "output-bytes": [ + { + "data": "61627402694334" + } + ], + "output-bps": [ + { + "data": "10645112" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.27.240/29" + } + ], + "ifa-local": [ + { + "data": "123.65.27.241" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.27.247" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:1011::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:1011:0:6:5456:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:40c:1d03:bacd" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae18.3102" + } + ], + "local-index": [ + { + "data": "373" + } + ], + "snmp-index": [ + { + "data": "828" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3102 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3102 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "10565194313" + } + ], + "input-pps": [ + { + "data": "32" + } + ], + "input-bytes": [ + { + "data": "11036770748803" + } + ], + "input-bps": [ + { + "data": "44600" + } + ], + "output-packets": [ + { + "data": "10410005217" + } + ], + "output-pps": [ + { + "data": "906" + } + ], + "output-bytes": [ + { + "data": "3114765695183" + } + ], + "output-bps": [ + { + "data": "1192704" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.27.248/29" + } + ], + "ifa-local": [ + { + "data": "123.65.27.249" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.27.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:1012::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:1012:0:6:5456:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:40c:1e03:bacd" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae18.3103" + } + ], + "local-index": [ + { + "data": "375" + } + ], + "snmp-index": [ + { + "data": "827" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3103 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3103 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "51993060112" + } + ], + "input-pps": [ + { + "data": "4435" + } + ], + "input-bytes": [ + { + "data": "58350894289626" + } + ], + "input-bps": [ + { + "data": "42875960" + } + ], + "output-packets": [ + { + "data": "5511538291" + } + ], + "output-pps": [ + { + "data": "298" + } + ], + "output-bytes": [ + { + "data": "2289437749996" + } + ], + "output-bps": [ + { + "data": "1697560" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.28.0/29" + } + ], + "ifa-local": [ + { + "data": "123.65.28.1" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.28.7" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:1013::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:1013:0:6:5456:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:40c:1f03:bacd" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae18.3104" + } + ], + "local-index": [ + { + "data": "371" + } + ], + "snmp-index": [ + { + "data": "826" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3104 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3104 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "1972039477" + } + ], + "input-pps": [ + { + "data": "44" + } + ], + "input-bytes": [ + { + "data": "1641808603052" + } + ], + "input-bps": [ + { + "data": "87840" + } + ], + "output-packets": [ + { + "data": "2532340822" + } + ], + "output-pps": [ + { + "data": "144" + } + ], + "output-bytes": [ + { + "data": "1780903583769" + } + ], + "output-bps": [ + { + "data": "1137472" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.28.8/29" + } + ], + "ifa-local": [ + { + "data": "123.65.28.9" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.28.15" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:1014::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:1014:0:6:5456:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:40c:2003:bacd" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae18.3105" + } + ], + "local-index": [ + { + "data": "374" + } + ], + "snmp-index": [ + { + "data": "825" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3105 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3105 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "143475131" + } + ], + "input-pps": [ + { + "data": "3" + } + ], + "input-bytes": [ + { + "data": "9024811417" + } + ], + "input-bps": [ + { + "data": "1824" + } + ], + "output-packets": [ + { + "data": "22116455" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "1450447653" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.28.16/29" + } + ], + "ifa-local": [ + { + "data": "123.65.28.17" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.28.23" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:1015::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:1015:0:6:5456:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:40c:2103:bacd" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae18.3600" + } + ], + "local-index": [ + { + "data": "369" + } + ], + "snmp-index": [ + { + "data": "898" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3600 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3600 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "22162573" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "input-bytes": [ + { + "data": "1507015400" + } + ], + "input-bps": [ + { + "data": "272" + } + ], + "output-packets": [ + { + "data": "274619" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "19532640" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.17.192/30" + } + ], + "ifa-local": [ + { + "data": "123.65.17.193" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.17.195" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae18.32767" + } + ], + "local-index": [ + { + "data": "335" + } + ], + "snmp-index": [ + { + "data": "811" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "95853761" + } + ], + "input-pps": [ + { + "data": "2" + } + ], + "input-bytes": [ + { + "data": "11885866364" + } + ], + "input-bps": [ + { + "data": "1984" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae19" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "142" + } + ], + "snmp-index": [ + { + "data": "603" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "20Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:ce" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:ce" + } + ], + "interface-flapped": [ + { + "data": "2024-07-08 03:15:54 UTC (12w4d 10:42 ago)", + "attributes": { + "junos:seconds": "7641727" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2259727928" + } + ], + "input-pps": [ + { + "data": "267467" + } + ], + "output-bps": [ + { + "data": "1124086968" + } + ], + "output-pps": [ + { + "data": "195503" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae19.2000" + } + ], + "local-index": [ + { + "data": "366" + } + ], + "snmp-index": [ + { + "data": "640" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "2852004662130" + } + ], + "input-pps": [ + { + "data": "119273" + } + ], + "input-bytes": [ + { + "data": "2878813029134108" + } + ], + "input-bps": [ + { + "data": "1017077168" + } + ], + "output-packets": [ + { + "data": "1745845907983" + } + ], + "output-pps": [ + { + "data": "81852" + } + ], + "output-bytes": [ + { + "data": "1324951435857740" + } + ], + "output-bps": [ + { + "data": "496027568" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.4.0/31" + } + ], + "ifa-local": [ + { + "data": "123.65.4.0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:40b0::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:40b0:0:6:5457:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:407:d003:bace" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae19.2001" + } + ], + "local-index": [ + { + "data": "365" + } + ], + "snmp-index": [ + { + "data": "639" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "1575324812904" + } + ], + "input-pps": [ + { + "data": "44083" + } + ], + "input-bytes": [ + { + "data": "1430979649107344" + } + ], + "input-bps": [ + { + "data": "309328704" + } + ], + "output-packets": [ + { + "data": "2625304936591" + } + ], + "output-pps": [ + { + "data": "60465" + } + ], + "output-bytes": [ + { + "data": "2032464412221297" + } + ], + "output-bps": [ + { + "data": "313015264" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.4.4/31" + } + ], + "ifa-local": [ + { + "data": "123.65.4.4" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:40b1::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:40b1:0:6:5457:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:407:d103:bace" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae19.2003" + } + ], + "local-index": [ + { + "data": "364" + } + ], + "snmp-index": [ + { + "data": "706" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2003 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2003 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "1330054590628" + } + ], + "input-pps": [ + { + "data": "104109" + } + ], + "input-bytes": [ + { + "data": "843848600032027" + } + ], + "input-bps": [ + { + "data": "933320072" + } + ], + "output-packets": [ + { + "data": "6183689520470" + } + ], + "output-pps": [ + { + "data": "53186" + } + ], + "output-bytes": [ + { + "data": "7599443183173079" + } + ], + "output-bps": [ + { + "data": "315043760" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.4.96/31" + } + ], + "ifa-local": [ + { + "data": "123.65.4.96" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "2620:16d:ff00:40b2::/64" + } + ], + "ifa-local": [ + { + "data": "2620:16d:ff00:40b2:0:6:5457:1" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::3e61:407:d303:bace" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae19.32767" + } + ], + "local-index": [ + { + "data": "336" + } + ], + "snmp-index": [ + { + "data": "633" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "89080414" + } + ], + "input-pps": [ + { + "data": "2" + } + ], + "input-bytes": [ + { + "data": "11045971336" + } + ], + "input-bps": [ + { + "data": "1984" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "254" + } + ], + "snmp-index": [ + { + "data": "903" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "20Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3e:61:04:03:b3:b5" + } + ], + "hardware-physical-address": [ + { + "data": "3e:61:04:03:b3:b5" + } + ], + "interface-flapped": [ + { + "data": "2024-04-20 05:33:59 UTC (23w6d 08:24 ago)", + "attributes": { + "junos:seconds": "14459042" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1004699504" + } + ], + "input-pps": [ + { + "data": "141986" + } + ], + "output-bps": [ + { + "data": "1663335952" + } + ], + "output-pps": [ + { + "data": "212004" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae25.2001" + } + ], + "local-index": [ + { + "data": "578" + } + ], + "snmp-index": [ + { + "data": "906" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "20305777461" + } + ], + "input-pps": [ + { + "data": "1032" + } + ], + "input-bytes": [ + { + "data": "6828892862376" + } + ], + "input-bps": [ + { + "data": "2421920" + } + ], + "output-packets": [ + { + "data": "43880095788" + } + ], + "output-pps": [ + { + "data": "1765" + } + ], + "output-bytes": [ + { + "data": "56190669663216" + } + ], + "output-bps": [ + { + "data": "16873000" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.6.72/29" + } + ], + "ifa-local": [ + { + "data": "123.65.6.73" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.6.79" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.2002" + } + ], + "local-index": [ + { + "data": "587" + } + ], + "snmp-index": [ + { + "data": "932" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2002 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2002 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "152397776866" + } + ], + "input-pps": [ + { + "data": "8835" + } + ], + "input-bytes": [ + { + "data": "117102520515814" + } + ], + "input-bps": [ + { + "data": "74667264" + } + ], + "output-packets": [ + { + "data": "232162754390" + } + ], + "output-pps": [ + { + "data": "7976" + } + ], + "output-bytes": [ + { + "data": "246430864201519" + } + ], + "output-bps": [ + { + "data": "59125728" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.6.160/29" + } + ], + "ifa-local": [ + { + "data": "123.65.6.161" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.6.167" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.2011" + } + ], + "local-index": [ + { + "data": "588" + } + ], + "snmp-index": [ + { + "data": "907" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2011 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2011 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "3385633114" + } + ], + "input-pps": [ + { + "data": "59" + } + ], + "input-bytes": [ + { + "data": "2214184416005" + } + ], + "input-bps": [ + { + "data": "184576" + } + ], + "output-packets": [ + { + "data": "9408503200" + } + ], + "output-pps": [ + { + "data": "185" + } + ], + "output-bytes": [ + { + "data": "3326440193761" + } + ], + "output-bps": [ + { + "data": "313640" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.6.96/30" + } + ], + "ifa-local": [ + { + "data": "123.65.6.97" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.6.99" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.3001" + } + ], + "local-index": [ + { + "data": "590" + } + ], + "snmp-index": [ + { + "data": "912" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "7520853945367" + } + ], + "input-pps": [ + { + "data": "120431" + } + ], + "input-bytes": [ + { + "data": "8754643936985568" + } + ], + "input-bps": [ + { + "data": "848184728" + } + ], + "output-packets": [ + { + "data": "7070901543941" + } + ], + "output-pps": [ + { + "data": "191339" + } + ], + "output-bytes": [ + { + "data": "7965007770997367" + } + ], + "output-bps": [ + { + "data": "1554867344" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.21.120/30" + } + ], + "ifa-local": [ + { + "data": "123.65.21.121" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.21.123" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.3007" + } + ], + "local-index": [ + { + "data": "592" + } + ], + "snmp-index": [ + { + "data": "916" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3007 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3007 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "input-bytes": [ + { + "data": "0" + } + ], + "input-bps": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "1" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "46" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.22.228/30" + } + ], + "ifa-local": [ + { + "data": "123.65.22.229" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.22.231" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.3011" + } + ], + "local-index": [ + { + "data": "593" + } + ], + "snmp-index": [ + { + "data": "924" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3011 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3011 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "10695439681" + } + ], + "input-pps": [ + { + "data": "98" + } + ], + "input-bytes": [ + { + "data": "8192160837925" + } + ], + "input-bps": [ + { + "data": "1006976" + } + ], + "output-packets": [ + { + "data": "4366798886" + } + ], + "output-pps": [ + { + "data": "11" + } + ], + "output-bytes": [ + { + "data": "979138274983" + } + ], + "output-bps": [ + { + "data": "3680" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "4" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.248/29" + } + ], + "ifa-local": [ + { + "data": "123.65.37.249" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.248/29" + } + ], + "ifa-local": [ + { + "data": "123.65.37.250" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.3015" + } + ], + "local-index": [ + { + "data": "594" + } + ], + "snmp-index": [ + { + "data": "917" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3015 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3015 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "41109518107" + } + ], + "input-pps": [ + { + "data": "386" + } + ], + "input-bytes": [ + { + "data": "39191728635142" + } + ], + "input-bps": [ + { + "data": "1288360" + } + ], + "output-packets": [ + { + "data": "28318933307" + } + ], + "output-pps": [ + { + "data": "252" + } + ], + "output-bytes": [ + { + "data": "13194526105493" + } + ], + "output-bps": [ + { + "data": "530672" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.35.64/30" + } + ], + "ifa-local": [ + { + "data": "123.65.35.65" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.35.67" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.3016" + } + ], + "local-index": [ + { + "data": "595" + } + ], + "snmp-index": [ + { + "data": "919" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3016 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3016 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "33403346725" + } + ], + "input-pps": [ + { + "data": "45" + } + ], + "input-bytes": [ + { + "data": "46675620088084" + } + ], + "input-bps": [ + { + "data": "195448" + } + ], + "output-packets": [ + { + "data": "2997930827" + } + ], + "output-pps": [ + { + "data": "21" + } + ], + "output-bytes": [ + { + "data": "1522899865509" + } + ], + "output-bps": [ + { + "data": "13824" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.36.168/30" + } + ], + "ifa-local": [ + { + "data": "123.65.36.169" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.36.171" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.3017" + } + ], + "local-index": [ + { + "data": "596" + } + ], + "snmp-index": [ + { + "data": "922" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3017 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3017 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "57156139495" + } + ], + "input-pps": [ + { + "data": "2132" + } + ], + "input-bytes": [ + { + "data": "66185552907243" + } + ], + "input-bps": [ + { + "data": "17969832" + } + ], + "output-packets": [ + { + "data": "20831589510" + } + ], + "output-pps": [ + { + "data": "1105" + } + ], + "output-bytes": [ + { + "data": "4355799721598" + } + ], + "output-bps": [ + { + "data": "1525576" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "3" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.28.24/29" + } + ], + "ifa-local": [ + { + "data": "123.65.28.25" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.28.31" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.3019" + } + ], + "local-index": [ + { + "data": "597" + } + ], + "snmp-index": [ + { + "data": "940" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3019 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3019 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "221145546439" + } + ], + "input-pps": [ + { + "data": "7652" + } + ], + "input-bytes": [ + { + "data": "219796954667941" + } + ], + "input-bps": [ + { + "data": "52171504" + } + ], + "output-packets": [ + { + "data": "62838156320" + } + ], + "output-pps": [ + { + "data": "1004" + } + ], + "output-bytes": [ + { + "data": "44843115290476" + } + ], + "output-bps": [ + { + "data": "2666840" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.40.240/29" + } + ], + "ifa-local": [ + { + "data": "123.65.40.241" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.40.247" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.3050" + } + ], + "local-index": [ + { + "data": "619" + } + ], + "snmp-index": [ + { + "data": "947" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3050 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3050 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "300mbps" + } + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "55234578316" + } + ], + "input-pps": [ + { + "data": "1314" + } + ], + "input-bytes": [ + { + "data": "45049495182780" + } + ], + "input-bps": [ + { + "data": "6606416" + } + ], + "output-packets": [ + { + "data": "245919523511" + } + ], + "output-pps": [ + { + "data": "8339" + } + ], + "output-bytes": [ + { + "data": "97002113405319" + } + ], + "output-bps": [ + { + "data": "27409864" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.16.72/30" + } + ], + "ifa-local": [ + { + "data": "123.65.16.74" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.16.75" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae25.32767" + } + ], + "local-index": [ + { + "data": "620" + } + ], + "snmp-index": [ + { + "data": "904" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "69777975" + } + ], + "input-pps": [ + { + "data": "2" + } + ], + "input-bytes": [ + { + "data": "8652468900" + } + ], + "input-bps": [ + { + "data": "2480" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae99" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "143" + } + ], + "snmp-index": [ + { + "data": "891" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "20Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:cf" + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:cf" + } + ], + "interface-flapped": [ + { + "data": "2024-04-20 05:33:59 UTC (23w6d 08:24 ago)", + "attributes": { + "junos:seconds": "14459042" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "247147168" + } + ], + "input-pps": [ + { + "data": "39107" + } + ], + "output-bps": [ + { + "data": "51512408" + } + ], + "output-pps": [ + { + "data": "18720" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae99.4006" + } + ], + "local-index": [ + { + "data": "449" + } + ], + "snmp-index": [ + { + "data": "929" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.4006 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.4006 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "2282668808183" + } + ], + "input-pps": [ + { + "data": "39105" + } + ], + "input-bytes": [ + { + "data": "2023348438511917" + } + ], + "input-bps": [ + { + "data": "247144688" + } + ], + "output-packets": [ + { + "data": "1976159080529" + } + ], + "output-pps": [ + { + "data": "18719" + } + ], + "output-bytes": [ + { + "data": "1298899057012844" + } + ], + "output-bps": [ + { + "data": "51511064" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.58/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.59" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae99.32767" + } + ], + "local-index": [ + { + "data": "450" + } + ], + "snmp-index": [ + { + "data": "894" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "95533234" + } + ], + "input-pps": [ + { + "data": "2" + } + ], + "input-bytes": [ + { + "data": "12309907132" + } + ], + "input-bps": [ + { + "data": "2480" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "145" + } + ], + "snmp-index": [ + { + "data": "502" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:b3:11", + "attributes": { + "junos:format": "MAC 3c:61:04:03:b3:11" + } + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:b3:11", + "attributes": { + "junos:format": "MAC 3c:61:04:03:b3:11" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "144" + } + ], + "snmp-index": [ + { + "data": "501" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "clocking": [ + { + "data": "1" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "5" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "em0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "67" + } + ], + "snmp-index": [ + { + "data": "17" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "52:54:00:9b:de:32", + "attributes": { + "junos:format": "MAC 52:54:00:9b:de:32" + } + } + ], + "hardware-physical-address": [ + { + "data": "52:54:00:9b:de:32", + "attributes": { + "junos:format": "MAC 52:54:00:9b:de:32" + } + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:45:47 UTC (107w5d 11:12 ago)", + "attributes": { + "junos:seconds": "65185934" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "68331895" + } + ], + "output-packets": [ + { + "data": "57254247" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em0.32768" + } + ], + "local-index": [ + { + "data": "7" + } + ], + "snmp-index": [ + { + "data": "682" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "68331895" + } + ], + "output-packets": [ + { + "data": "57254247" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "192.168.1/24" + } + ], + "ifa-local": [ + { + "data": "192.168.1.1" + } + ], + "ifa-broadcast": [ + { + "data": "192.168.1.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "150" + } + ], + "snmp-index": [ + { + "data": "618" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "152" + } + ], + "snmp-index": [ + { + "data": "590" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "153" + } + ], + "snmp-index": [ + { + "data": "591" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "154" + } + ], + "snmp-index": [ + { + "data": "595" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "155" + } + ], + "snmp-index": [ + { + "data": "596" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "156" + } + ], + "snmp-index": [ + { + "data": "597" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "157" + } + ], + "snmp-index": [ + { + "data": "598" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "158" + } + ], + "snmp-index": [ + { + "data": "599" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "159" + } + ], + "snmp-index": [ + { + "data": "600" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "66" + } + ], + "snmp-index": [ + { + "data": "1" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "68:f3:8e:30:d2:ae", + "attributes": { + "junos:format": "MAC 68:f3:8e:30:d2:ae" + } + } + ], + "hardware-physical-address": [ + { + "data": "68:f3:8e:30:d2:ae", + "attributes": { + "junos:format": "MAC 68:f3:8e:30:d2:ae" + } + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:45:58 UTC (107w5d 11:12 ago)", + "attributes": { + "junos:seconds": "65185923" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "108917582" + } + ], + "output-packets": [ + { + "data": "1605151" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "13" + } + ], + "description": [ + { + "data": "MGMT : OOB : DALQX3-MS1 Gig 0/1" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "108917584" + } + ], + "output-packets": [ + { + "data": "1605152" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "10" + } + ], + "snmp-index": [ + { + "data": "8" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "igb0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "65" + } + ], + "snmp-index": [ + { + "data": "745" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:01:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:01:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:01:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:01:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:45:42 UTC (107w5d 11:12 ago)", + "attributes": { + "junos:seconds": "65185939" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "265498051" + } + ], + "output-packets": [ + { + "data": "12048601878" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "igb0.0" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "747" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "95" + } + ], + "output-packets": [ + { + "data": "12048601767" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "3" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::200:1ff:fe00:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "fec0::/64" + } + ], + "ifa-local": [ + { + "data": "fec0::a:0:0:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "11" + } + ], + "snmp-index": [ + { + "data": "9" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "148" + } + ], + "snmp-index": [ + { + "data": "505" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:f0", + "attributes": { + "junos:format": "MAC 3c:61:04:03:ba:f0" + } + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:f0", + "attributes": { + "junos:format": "MAC 3c:61:04:03:ba:f0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "irb.222" + } + ], + "local-index": [ + { + "data": "368" + } + ], + "snmp-index": [ + { + "data": "770" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "None" + } + ], + "irb-bridge": [ + { + "data": "None" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.132.40/29" + } + ], + "ifa-local": [ + { + "data": "123.65.132.43" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.132.47" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ixlv0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "64" + } + ], + "snmp-index": [ + { + "data": "758" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2022-09-11 02:45:42 UTC (107w5d 11:12 ago)", + "attributes": { + "junos:seconds": "65185939" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "24673234130" + } + ], + "output-packets": [ + { + "data": "15538657707" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ixlv0.0" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "767" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "24332415567" + } + ], + "output-packets": [ + { + "data": "15538094460" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "5" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "5" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "fec0::/64" + } + ], + "ifa-local": [ + { + "data": "fec0::a:0:0:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "161" + } + ], + "snmp-index": [ + { + "data": "635" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:c0", + "attributes": { + "junos:format": "MAC 3c:61:04:03:ba:c0" + } + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:c0", + "attributes": { + "junos:format": "MAC 3c:61:04:03:ba:c0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "local-index": [ + { + "data": "339" + } + ], + "snmp-index": [ + { + "data": "638" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x24004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "unknown" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "None" + } + ], + "irb-bridge": [ + { + "data": "None" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.127" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "6" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-loopback": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1266151807" + } + ], + "output-packets": [ + { + "data": "1266151807" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "local-index": [ + { + "data": "322" + } + ], + "snmp-index": [ + { + "data": "16" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1947" + } + ], + "output-packets": [ + { + "data": "1947" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "198.51.100.1" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "49.0123.0065.0224.0011" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-local": [ + { + "data": "fe80::6af3:8e0f:fc30:d2ae" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "local-index": [ + { + "data": "321" + } + ], + "snmp-index": [ + { + "data": "21" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "32" + } + ], + "output-packets": [ + { + "data": "32" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "127.0.0.1" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "local-index": [ + { + "data": "320" + } + ], + "snmp-index": [ + { + "data": "22" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1266145486" + } + ], + "output-packets": [ + { + "data": "1266145486" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "4" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "LSI" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "70052059" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "local-index": [ + { + "data": "376" + } + ], + "snmp-index": [ + { + "data": "715" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "112" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "local-index": [ + { + "data": "377" + } + ], + "snmp-index": [ + { + "data": "621" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "local-index": [ + { + "data": "378" + } + ], + "snmp-index": [ + { + "data": "624" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "141122229" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "local-index": [ + { + "data": "379" + } + ], + "snmp-index": [ + { + "data": "630" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "357" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "local-index": [ + { + "data": "380" + } + ], + "snmp-index": [ + { + "data": "631" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "local-index": [ + { + "data": "381" + } + ], + "snmp-index": [ + { + "data": "643" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "7286" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "local-index": [ + { + "data": "382" + } + ], + "snmp-index": [ + { + "data": "649" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "330" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "local-index": [ + { + "data": "383" + } + ], + "snmp-index": [ + { + "data": "718" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "42240" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.8" + } + ], + "local-index": [ + { + "data": "384" + } + ], + "snmp-index": [ + { + "data": "654" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "835" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.9" + } + ], + "local-index": [ + { + "data": "385" + } + ], + "snmp-index": [ + { + "data": "740" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "12" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.10" + } + ], + "local-index": [ + { + "data": "386" + } + ], + "snmp-index": [ + { + "data": "779" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "310" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.11" + } + ], + "local-index": [ + { + "data": "387" + } + ], + "snmp-index": [ + { + "data": "601" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "158" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.12" + } + ], + "local-index": [ + { + "data": "388" + } + ], + "snmp-index": [ + { + "data": "757" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2869" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.13" + } + ], + "local-index": [ + { + "data": "389" + } + ], + "snmp-index": [ + { + "data": "760" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.14" + } + ], + "local-index": [ + { + "data": "390" + } + ], + "snmp-index": [ + { + "data": "800" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "475" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.15" + } + ], + "local-index": [ + { + "data": "391" + } + ], + "snmp-index": [ + { + "data": "801" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.16" + } + ], + "local-index": [ + { + "data": "392" + } + ], + "snmp-index": [ + { + "data": "846" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "831" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.17" + } + ], + "local-index": [ + { + "data": "393" + } + ], + "snmp-index": [ + { + "data": "873" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "6971" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.18" + } + ], + "local-index": [ + { + "data": "394" + } + ], + "snmp-index": [ + { + "data": "883" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.19" + } + ], + "local-index": [ + { + "data": "419" + } + ], + "snmp-index": [ + { + "data": "930" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "126" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1048845" + } + ], + "local-index": [ + { + "data": "425" + } + ], + "snmp-index": [ + { + "data": "778" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1048849" + } + ], + "local-index": [ + { + "data": "427" + } + ], + "snmp-index": [ + { + "data": "831" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1048852" + } + ], + "local-index": [ + { + "data": "426" + } + ], + "snmp-index": [ + { + "data": "993" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1048853" + } + ], + "local-index": [ + { + "data": "424" + } + ], + "snmp-index": [ + { + "data": "771" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1048856" + } + ], + "local-index": [ + { + "data": "416" + } + ], + "snmp-index": [ + { + "data": "772" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "mif" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "160" + } + ], + "snmp-index": [ + { + "data": "602" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "1440" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "68" + } + ], + "snmp-index": [ + { + "data": "12" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "26" + } + ], + "snmp-index": [ + { + "data": "11" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "25" + } + ], + "snmp-index": [ + { + "data": "10" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "146" + } + ], + "snmp-index": [ + { + "data": "503" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "3c:61:04:03:ba:b0", + "attributes": { + "junos:format": "MAC 3c:61:04:03:ba:b0" + } + } + ], + "hardware-physical-address": [ + { + "data": "3c:61:04:03:ba:b0", + "attributes": { + "junos:format": "MAC 3c:61:04:03:ba:b0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "147" + } + ], + "snmp-index": [ + { + "data": "504" + } + ], + "if-type": [ + { + "data": "PPPoE" + } + ], + "link-level-type": [ + { + "data": "PPPoE" + } + ], + "mtu": [ + { + "data": "1532" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "151" + } + ], + "snmp-index": [ + { + "data": "605" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Remote-BEB" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "12" + } + ], + "snmp-index": [ + { + "data": "7" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "149" + } + ], + "snmp-index": [ + { + "data": "728" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + } + ] + } + ] + }, + "show interfaces routing-instance all terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/20.4R0/junos-interface", + "junos:style": "vrf" + }, + "physical-interface": [ + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/2.2004" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.155.53/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2005" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.155.69/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2006" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.155.73/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2007" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.97/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2008" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.155.45/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2011" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.156.57/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.2012" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.156.85/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3010" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.17/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3030" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.105/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3031" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.36.249/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NBLX" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3032" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.9/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NBL-ICS" + } + ] + } + ] + }, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/5.3200" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.32.209/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.3201" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.32.217/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-ETC" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "vt-0/0/10.2097664" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-1/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.113/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-2/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-2/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-2/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-2/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-2/2/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-2/2/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-10/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-10/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-10/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-10/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/0.3001" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.20.57/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/1.3004" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.20.73/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-EXTRANET-IC" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/2.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/4.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.5.68/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/0/6.3200" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.121/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3201" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.125/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3202" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.129/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3203" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.133/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3204" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.137/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3205" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.141/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RED" + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3206" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.38.177/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-PC-ABC" + } + ] + }, + { + "name": [ + { + "data": "xe-10/0/6.3207" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.41.1/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-REG" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/0.3002" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.20.65/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/1.3003" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.20.81/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RTSN" + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/1.3005" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.249/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "xe-10/2/1.3006" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.20.21/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "L2ACME-EXTRANET-GLOBAL-1" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/6.3111" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.41.241/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.41.242/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-10/2/9.2003" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.5.74/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/0.2950" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.212.1/26", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.212.2/26", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.2951" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "134.248.215.65/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "134.248.215.66/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.2952" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.0.193/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.0.194/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.2953" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.132.9/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.132.11/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/0.2960" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "124.46.189.129/26", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "124.46.189.130/26", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-EXTMGMT" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-11/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-11/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-11/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-11/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/2.3001" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.82/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/4.900" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.21.241/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-PC-ABC" + } + ] + }, + { + "name": [ + { + "data": "ge-11/0/4.902" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.22.41/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-PC-DEF" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/6.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.8.2/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3EXT-SIP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/0/7.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "124.22.0.1/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "124.22.0.2/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3EXT-SIP" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/1/4.2901" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.202/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-PC-ABC" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/4.2902" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.210/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-MGMT-MCBU" + } + ] + }, + { + "name": [ + { + "data": "ge-11/1/4.3005" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.86/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/1/6.3007" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.8.77/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-11/1/7.3000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "124.34.0.1/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "124.34.0.2/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.5/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.167/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.27/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.127/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae6.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.229/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.236/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.123/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae10.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.57/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae15.4000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.196/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + }, + { + "name": [ + { + "data": "ae15.4002" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.200/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae17.2100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.5.210/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:4106:0:6:5457:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:408:3403:bacc/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae18.3100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.27.233/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1010:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:1c03:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "ae18.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.27.241/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1011:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:1d03:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "ae18.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.27.249/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1012:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:1e03:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "ae18.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.28.1/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1013:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:1f03:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + }, + { + "name": [ + { + "data": "ae18.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.28.9/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1014:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:2003:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + }, + { + "name": [ + { + "data": "ae18.3105" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.28.17/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:1015:0:6:5456:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:40c:2103:bacd/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RED" + } + ] + }, + { + "name": [ + { + "data": "ae18.3600" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.17.193/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae19.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.4.0/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:40b0:0:6:5457:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:407:d003:bace/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + }, + { + "name": [ + { + "data": "ae19.2001" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.4.4/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:40b1:0:6:5457:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:407:d103:bace/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + }, + { + "name": [ + { + "data": "ae19.2003" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.4.96/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "2620:16d:ff00:40b2:0:6:5457:1/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fe80::3e61:407:d303:bace/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae25.2001" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.6.73/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + }, + { + "name": [ + { + "data": "ae25.2002" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.6.161/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + }, + { + "name": [ + { + "data": "ae25.2011" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.6.97/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + }, + { + "name": [ + { + "data": "ae25.3001" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.21.121/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "ae25.3007" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.22.229/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "ae25.3011" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.249/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.37.250/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "ae25.3015" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.35.65/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RTSN" + } + ] + }, + { + "name": [ + { + "data": "ae25.3016" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.36.169/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "ae25.3017" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.28.25/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "ae25.3019" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.40.241/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "ae25.3050" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.16.74/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae99.4006" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.59/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "em0.32768" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "192.168.1.1/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private5__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "igb0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:1ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "irb.222" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.132.43/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ixlv0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_services__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0224.0011", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::6af3:8e0f:fc30:d2ae" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-COMMSVCS" + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-ETC" + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-EXTMGMT" + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-EXTRANET-IC" + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "lsi.8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "lsi.9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-MGMT-MCBU" + } + ] + }, + { + "name": [ + { + "data": "lsi.10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NBL-ICS" + } + ] + }, + { + "name": [ + { + "data": "lsi.11" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NBLX" + } + ] + }, + { + "name": [ + { + "data": "lsi.12" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "lsi.13" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-PC-DEF" + } + ] + }, + { + "name": [ + { + "data": "lsi.14" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-PC-ABC" + } + ] + }, + { + "name": [ + { + "data": "lsi.15" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RED" + } + ] + }, + { + "name": [ + { + "data": "lsi.16" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RTSN" + } + ] + }, + { + "name": [ + { + "data": "lsi.17" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + }, + { + "name": [ + { + "data": "lsi.18" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3EXT-SIP" + } + ] + }, + { + "name": [ + { + "data": "lsi.19" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-REG" + } + ] + }, + { + "name": [ + { + "data": "lsi.1048845" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "L2ACME-EXTRANET-GLOBAL-1" + } + ] + }, + { + "name": [ + { + "data": "lsi.1048849" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "L2ACME-EXTRANET-GLOBAL-1" + } + ] + }, + { + "name": [ + { + "data": "lsi.1048852" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "L2ACME-EXTRANET-GLOBAL-1" + } + ] + }, + { + "name": [ + { + "data": "lsi.1048853" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "L2ACME-EXTRANET-GLOBAL-1" + } + ] + }, + { + "name": [ + { + "data": "lsi.1048856" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "L2ACME-EXTRANET-GLOBAL-1" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ] + }, + "show vlans | display json": [], + "show lldp neighbors | display json": { + "lldp-neighbors-information": [ + { + "attributes": { + "junos:style": "brief" + }, + "lldp-neighbor-information": [ + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/2" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "00:08:e3:ff:fc:28" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/1/1" + } + ], + "lldp-remote-system-name": [ + { + "data": "DALQX3SG10v.DALQX3.acmetexaco.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/5" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "00:3a:9c:5b:a7:37" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Ethernet1/16" + } + ], + "lldp-remote-system-name": [ + { + "data": "X-DC1-WDST-1.nblenergy.com" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-11/0/4" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "00:6b:f1:ac:d5:80" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Gi0/0/2.900" + } + ], + "lldp-remote-system-name": [ + { + "data": "DALQX3RD11.DALQX3.acmetexaco.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-11/0/4" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "00:6b:f1:ac:d5:80" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Gi0/0/2.902" + } + ], + "lldp-remote-system-name": [ + { + "data": "DALQX3RD11.DALQX3.acmetexaco.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-11/0/4" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "00:6b:f1:ac:d5:80" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Gi0/0/2" + } + ], + "lldp-remote-system-name": [ + { + "data": "DALQX3RD11.DALQX3.acmetexaco.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/2/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "10:05:ca:9c:3f:40" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/14" + } + ], + "lldp-remote-system-name": [ + { + "data": "DALQX3RE2.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/2/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "10:05:ca:9c:3f:40" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/14.3002" + } + ], + "lldp-remote-system-name": [ + { + "data": "DALQX3RE2.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-11/0/7" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "34:62:88:12:4a:80" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Gi1/0/1" + } + ], + "lldp-remote-system-name": [ + { + "data": "DALQX3SS1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-11/1/7" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "34:62:88:12:4a:80" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Gi1/0/2" + } + ], + "lldp-remote-system-name": [ + { + "data": "DALQX3SS1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/1" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae19" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:61:04:02:fa:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/0/0" + } + ], + "lldp-remote-system-name": [ + { + "data": "RI1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/6" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae19" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:61:04:02:fa:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/0/6" + } + ], + "lldp-remote-system-name": [ + { + "data": "RI1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/4" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae5" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:61:04:03:c2:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/0/6" + } + ], + "lldp-remote-system-name": [ + { + "data": "PE1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/8" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:61:04:05:a2:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-0/0/8" + } + ], + "lldp-remote-system-name": [ + { + "data": "3-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/9" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:61:04:05:a2:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-0/0/9" + } + ], + "lldp-remote-system-name": [ + { + "data": "3-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/8" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:61:04:05:a2:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/0/8" + } + ], + "lldp-remote-system-name": [ + { + "data": "3-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/9" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:61:04:05:a2:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/0/9" + } + ], + "lldp-remote-system-name": [ + { + "data": "3-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ { - "name": [ - { - "data": "lsi.7" - } - ], - "local-index": [ - { - "data": "344" - } - ], - "snmp-index": [ - { - "data": "545" - } - ], - "if-config-flags": [ - { - "iff-up": [ - { - "data": [ - null - ] - } - ], - "iff-point-to-point": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] - } - ], - "encapsulation": [ - { - "data": "LSI-NULL" - } - ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "714" - } - ], - "output-packets": [ - { - "data": "0" - } - ] - } - ], - "filter-information": [ - {} - ], - "address-family": [ - { - "address-family-name": [ - { - "data": "inet" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-none": [ - { - "data": [ - null - ] - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "iso" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "address-family-flags": [ - { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] - } - ] - }, - { - "address-family-name": [ - { - "data": "inet6" - } - ], - "mtu": [ - { - "data": "Unlimited" - } - ], - "max-local-cache": [ - { - "data": "0" - } - ], - "new-hold-limit": [ - { - "data": "0" - } - ], - "intf-curr-cnt": [ - { - "data": "0" - } - ], - "intf-unresolved-cnt": [ - { - "data": "0" - } - ], - "intf-dropcnt": [ - { - "data": "0" - } - ], - "address-family-flags": [ - { - "ifff-is-primary": [ - { - "data": [ - null - ] - } - ] - } - ] - } - ] + "data": "xe-0/0/6" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae8" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:61:04:07:b3:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-2/0/7" + } + ], + "lldp-remote-system-name": [ + { + "data": "X1-PE1.mpls0.acme.net" } ] }, { - "name": [ + "lldp-local-port-id": [ { - "data": "me0" + "data": "ge-11/0/1" } ], - "admin-status": [ + "lldp-local-parent-interface-name": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "ae6" } ], - "oper-status": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "up" + "data": "Mac address" } ], - "local-index": [ + "lldp-remote-chassis-id": [ { - "data": "1" + "data": "44:f4:77:9a:23:c0" } ], - "snmp-index": [ + "lldp-remote-port-id-subtype": [ { - "data": "33" + "data": "Interface name" } ], - "if-type": [ + "lldp-remote-port-id": [ { - "data": "Ethernet" + "data": "ge-1/1/7" } ], - "link-level-type": [ + "lldp-remote-system-name": [ { - "data": "Ethernet" + "data": "55-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-11/1/1" } ], - "mtu": [ + "lldp-local-parent-interface-name": [ { - "data": "1514" + "data": "ae3" } ], - "speed": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "1000mbps" + "data": "Mac address" } ], - "if-device-flags": [ + "lldp-remote-chassis-id": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "54:1e:56:f2:b8:c0" } ], - "ifd-specific-config-flags": [ + "lldp-remote-port-id-subtype": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "Interface name" } ], - "if-config-flags": [ + "lldp-remote-port-id": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "ge-1/1/7" } ], - "link-type": [ + "lldp-remote-system-name": [ { - "data": "Full-Duplex" + "data": "5-PE1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "fxp0" } ], - "if-media-flags": [ + "lldp-local-parent-interface-name": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "-" } ], - "current-physical-address": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "02:00:00:00:00:0b", - "attributes": { - "junos:format": "MAC 02:00:00:00:00:0b" - } + "data": "Mac address" } ], - "hardware-physical-address": [ + "lldp-remote-chassis-id": [ { - "data": "02:00:00:00:00:0b", - "attributes": { - "junos:format": "MAC 02:00:00:00:00:0b" - } + "data": "68:87:c6:eb:da:80" } ], - "interface-flapped": [ + "lldp-remote-port-id-subtype": [ { - "data": "2022-12-23 14:26:12 UTC (74w6d 03:23 ago)", - "attributes": { - "junos:seconds": "45285834" - } + "data": "Interface name" } ], - "traffic-statistics": [ + "lldp-remote-port-id": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "1631918" - } - ] + "data": "Gi1/0/1" } ], - "logical-interface": [ + "lldp-remote-system-name": [ { - "name": [ - { - "data": "me0.0" - } - ], - "local-index": [ - { - "data": "6" - } - ], - "snmp-index": [ - { - "data": "34" - } - ], - "if-config-flags": [ - { - "iff-up": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ], - "internal-flags": [ - { - "data": "0x0" - } - ] - } - ], - "encapsulation": [ - { - "data": "ENET2" - } - ], - "policer-overhead": [ - {} - ], - "traffic-statistics": [ - { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "1631918" - } - ] - } - ], - "filter-information": [ - {} - ] + "data": "ABC3.acme.net" } ] }, { - "name": [ + "lldp-local-port-id": [ { - "data": "mtun" + "data": "ge-11/0/0" } ], - "admin-status": [ + "lldp-local-parent-interface-name": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "-" } ], - "oper-status": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "up" + "data": "Mac address" } ], - "local-index": [ + "lldp-remote-chassis-id": [ { - "data": "66" + "data": "68:87:c6:eb:da:80" } ], - "snmp-index": [ + "lldp-remote-port-id-subtype": [ { - "data": "12" + "data": "Interface name" } ], - "if-type": [ + "lldp-remote-port-id": [ { - "data": "Multicast-GRE" + "data": "Gi1/0/45" } ], - "link-level-type": [ + "lldp-remote-system-name": [ { - "data": "GRE" + "data": "DAL3.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/0/5" } ], - "mtu": [ + "lldp-local-parent-interface-name": [ { - "data": "Unlimited" + "data": "ae25" } ], - "speed": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "Unlimited" + "data": "Mac address" } ], - "if-device-flags": [ + "lldp-remote-chassis-id": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "ac:bc:d9:99:c9:e0" } ], - "ifd-specific-config-flags": [ + "lldp-remote-port-id-subtype": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "Interface name" } ], - "if-config-flags": [ + "lldp-remote-port-id": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "Twe1/0/1" } ], - "traffic-statistics": [ + "lldp-remote-system-name": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "E01V.gmn0.acme.net" } ] }, { - "name": [ + "lldp-local-port-id": [ { - "data": "pimd" + "data": "xe-0/0/3" } ], - "admin-status": [ + "lldp-local-parent-interface-name": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "ae99" } ], - "oper-status": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "up" + "data": "Mac address" } ], - "local-index": [ + "lldp-remote-chassis-id": [ { - "data": "26" + "data": "ac:bc:d9:99:c9:e0" } ], - "snmp-index": [ + "lldp-remote-port-id-subtype": [ { - "data": "11" + "data": "Interface name" } ], - "if-type": [ + "lldp-remote-port-id": [ { - "data": "PIMD" + "data": "Twe1/0/3" } ], - "link-level-type": [ + "lldp-remote-system-name": [ { - "data": "PIM-Decapsulator" + "data": "E01V.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/5" } ], - "mtu": [ + "lldp-local-parent-interface-name": [ { - "data": "Unlimited" + "data": "ae15" } ], - "speed": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "Unlimited" + "data": "Mac address" } ], - "if-device-flags": [ + "lldp-remote-chassis-id": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "ac:bc:d9:99:c9:e0" } ], - "ifd-specific-config-flags": [ + "lldp-remote-port-id-subtype": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "Interface name" } ], - "if-config-flags": [ - {} + "lldp-remote-port-id": [ + { + "data": "Twe1/0/5" + } ], - "traffic-statistics": [ + "lldp-remote-system-name": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "E01V.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/2/6" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "ac:bc:d9:99:c9:e0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Twe1/0/8" + } + ], + "lldp-remote-system-name": [ + { + "data": "E01V.gmn0.acme.net" } ] }, { - "name": [ + "lldp-local-port-id": [ { - "data": "pime" + "data": "xe-0/0/0" } ], - "admin-status": [ + "lldp-local-parent-interface-name": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "ae25" } ], - "oper-status": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "up" + "data": "Mac address" } ], - "local-index": [ + "lldp-remote-chassis-id": [ { - "data": "25" + "data": "ac:bc:d9:99:c9:e0" } ], - "snmp-index": [ + "lldp-remote-port-id-subtype": [ { - "data": "10" + "data": "Interface name" } ], - "if-type": [ + "lldp-remote-port-id": [ { - "data": "PIME" + "data": "Twe2/0/1" } ], - "link-level-type": [ + "lldp-remote-system-name": [ { - "data": "PIM-Encapsulator" + "data": "E01V.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/4" } ], - "mtu": [ + "lldp-local-parent-interface-name": [ { - "data": "Unlimited" + "data": "ae99" } ], - "speed": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "Unlimited" + "data": "Mac address" } ], - "if-device-flags": [ + "lldp-remote-chassis-id": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "ac:bc:d9:99:c9:e0" } ], - "ifd-specific-config-flags": [ + "lldp-remote-port-id-subtype": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "Interface name" } ], - "if-config-flags": [ - {} + "lldp-remote-port-id": [ + { + "data": "Twe2/0/3" + } ], - "traffic-statistics": [ + "lldp-remote-system-name": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "E01V.gmn0.acme.net" } ] }, { - "name": [ + "lldp-local-port-id": [ { - "data": "pip0" + "data": "xe-1/0/0" } ], - "admin-status": [ + "lldp-local-parent-interface-name": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "-" } ], - "oper-status": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "up" + "data": "Mac address" } ], - "local-index": [ + "lldp-remote-chassis-id": [ { - "data": "135" + "data": "b8:a3:77:12:5f:80" } ], - "snmp-index": [ + "lldp-remote-port-id-subtype": [ { - "data": "503" + "data": "Interface name" } ], - "if-type": [ + "lldp-remote-port-id": [ { - "data": "Ethernet" + "data": "Te0/1/0" } ], - "link-level-type": [ + "lldp-remote-system-name": [ { - "data": "Ethernet" + "data": "URB01" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/0/6" } ], - "mtu": [ + "lldp-local-parent-interface-name": [ { - "data": "9192" + "data": "-" } ], - "if-device-flags": [ + "lldp-remote-chassis-id-subtype": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "Mac address" } ], - "ifd-specific-config-flags": [ + "lldp-remote-chassis-id": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "b8:a3:77:12:5f:80" } ], - "if-config-flags": [ + "lldp-remote-port-id-subtype": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "Interface name" } ], - "link-type": [ + "lldp-remote-port-id": [ { - "data": "Full-Duplex" + "data": "Te0/1/3" } ], - "if-media-flags": [ + "lldp-remote-system-name": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "URB01" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/0/0" } ], - "current-physical-address": [ + "lldp-local-parent-interface-name": [ { - "data": "28:8a:1c:56:72:b0", - "attributes": { - "junos:format": "MAC 28:8a:1c:56:72:b0" - } + "data": "-" } ], - "hardware-physical-address": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "28:8a:1c:56:72:b0", - "attributes": { - "junos:format": "MAC 28:8a:1c:56:72:b0" - } + "data": "Mac address" } ], - "interface-flapped": [ + "lldp-remote-chassis-id": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "bc:16:65:fa:1f:40" } ], - "traffic-statistics": [ + "lldp-remote-port-id-subtype": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/14.3001" + } + ], + "lldp-remote-system-name": [ + { + "data": "DALQX3RE1.gmn0.acme.net" } ] }, { - "name": [ + "lldp-local-port-id": [ { - "data": "pp0" + "data": "xe-10/0/0" } ], - "admin-status": [ + "lldp-local-parent-interface-name": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "-" } ], - "oper-status": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "up" + "data": "Mac address" } ], - "local-index": [ + "lldp-remote-chassis-id": [ { - "data": "136" + "data": "bc:16:65:fa:1f:40" } ], - "snmp-index": [ + "lldp-remote-port-id-subtype": [ { - "data": "504" + "data": "Interface name" } ], - "if-type": [ + "lldp-remote-port-id": [ { - "data": "PPPoE" + "data": "Te1/14" } ], - "link-level-type": [ + "lldp-remote-system-name": [ { - "data": "PPPoE" + "data": "DALQX3RE1.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/7" } ], - "mtu": [ + "lldp-local-parent-interface-name": [ { - "data": "1532" + "data": "ae18" } ], - "if-device-flags": [ + "lldp-remote-chassis-id-subtype": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "Mac address" } ], - "ifd-specific-config-flags": [ + "lldp-remote-chassis-id": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "bc:16:65:fa:1f:40" } ], - "if-config-flags": [ + "lldp-remote-port-id-subtype": [ { - "iff-point-to-point": [ - { - "data": [ - null - ] - } - ], - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "Interface name" } ], - "link-type": [ + "lldp-remote-port-id": [ { - "data": "Full-Duplex" + "data": "Te2/10" } ], - "if-media-flags": [ + "lldp-remote-system-name": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "DALQX3RE1.gmn0.acme.net" } ] }, { - "name": [ + "lldp-local-port-id": [ { - "data": "rbeb" + "data": "xe-10/2/1" } ], - "admin-status": [ + "lldp-local-parent-interface-name": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "-" } ], - "oper-status": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "up" + "data": "Mac address" } ], - "local-index": [ + "lldp-remote-chassis-id": [ { - "data": "140" + "data": "bc:16:65:fa:1f:40" } ], - "snmp-index": [ + "lldp-remote-port-id-subtype": [ { - "data": "555" + "data": "Interface name" } ], - "if-type": [ + "lldp-remote-port-id": [ { - "data": "Software-Pseudo" + "data": "Te2/13" } ], - "link-level-type": [ + "lldp-remote-system-name": [ { - "data": "Remote-BEB" + "data": "DALQX3RE1.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/2/1" } ], - "mtu": [ + "lldp-local-parent-interface-name": [ { - "data": "Unlimited" + "data": "-" } ], - "speed": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "Unlimited" + "data": "Mac address" } ], - "if-device-flags": [ + "lldp-remote-chassis-id": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "bc:16:65:fa:1f:40" } ], - "ifd-specific-config-flags": [ + "lldp-remote-port-id-subtype": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "Interface name" } ], - "if-config-flags": [ + "lldp-remote-port-id": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "Te2/13.3003" } ], - "link-type": [ + "lldp-remote-system-name": [ { - "data": "Full-Duplex" + "data": "DALQX3RE1.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/2/1" } ], - "if-media-flags": [ + "lldp-local-parent-interface-name": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "-" } ], - "interface-flapped": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "Mac address" } ], - "traffic-statistics": [ + "lldp-remote-chassis-id": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "bc:16:65:fa:1f:40" } - ] - }, - { - "name": [ + ], + "lldp-remote-port-id-subtype": [ { - "data": "tap" + "data": "Interface name" } ], - "admin-status": [ + "lldp-remote-port-id": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "Te2/13.3005" } ], - "oper-status": [ + "lldp-remote-system-name": [ { - "data": "up" + "data": "DALQX3RE1.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/2/1" } ], - "local-index": [ + "lldp-local-parent-interface-name": [ { - "data": "12" + "data": "-" } ], - "snmp-index": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "7" + "data": "Mac address" } ], - "if-type": [ + "lldp-remote-chassis-id": [ { - "data": "Software-Pseudo" + "data": "bc:16:65:fa:1f:40" } ], - "link-level-type": [ + "lldp-remote-port-id-subtype": [ { - "data": "Interface-Specific" + "data": "Interface name" } ], - "mtu": [ + "lldp-remote-port-id": [ { - "data": "Unlimited" + "data": "Te2/13.3006" } ], - "speed": [ + "lldp-remote-system-name": [ { - "data": "Unlimited" + "data": "DALQX3RE1.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/2/7" } ], - "if-device-flags": [ + "lldp-local-parent-interface-name": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "ae18" } ], - "ifd-specific-config-flags": [ + "lldp-remote-chassis-id-subtype": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "Mac address" } ], - "if-config-flags": [ + "lldp-remote-chassis-id": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "bc:16:65:fa:1f:40" } ], - "if-media-flags": [ + "lldp-remote-port-id-subtype": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "Interface name" } ], - "interface-flapped": [ + "lldp-remote-port-id": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "Te5/10" } ], - "traffic-statistics": [ + "lldp-remote-system-name": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "DALQX3RE1.gmn0.acme.net" } ] }, { - "name": [ + "lldp-local-port-id": [ { - "data": "vtep" + "data": "xe-10/0/1" } ], - "admin-status": [ + "lldp-local-parent-interface-name": [ { - "data": "up", - "attributes": { - "junos:format": "Enabled" - } + "data": "-" } ], - "oper-status": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "up" + "data": "Mac address" } ], - "local-index": [ + "lldp-remote-chassis-id": [ { - "data": "138" + "data": "bc:16:65:fa:1f:40" } ], - "snmp-index": [ + "lldp-remote-port-id-subtype": [ { - "data": "577" + "data": "Interface name" } ], - "if-type": [ + "lldp-remote-port-id": [ { - "data": "Software-Pseudo" + "data": "Te5/12.3004" } ], - "link-level-type": [ + "lldp-remote-system-name": [ { - "data": "VxLAN-Tunnel-Endpoint" + "data": "DALQX3RE1.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-10/0/1" } ], - "mtu": [ + "lldp-local-parent-interface-name": [ { - "data": "Unlimited" + "data": "-" } ], - "speed": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "Unlimited" + "data": "Mac address" } ], - "if-device-flags": [ + "lldp-remote-chassis-id": [ { - "ifdf-present": [ - { - "data": [ - null - ] - } - ], - "ifdf-running": [ - { - "data": [ - null - ] - } - ] + "data": "bc:16:65:fa:1f:40" } ], - "ifd-specific-config-flags": [ + "lldp-remote-port-id-subtype": [ { - "internal-flags": [ - { - "data": "0x0" - } - ] + "data": "Interface name" } ], - "if-config-flags": [ + "lldp-remote-port-id": [ { - "iff-snmp-traps": [ - { - "data": [ - null - ] - } - ] + "data": "Te5/12" } ], - "link-type": [ + "lldp-remote-system-name": [ { - "data": "Full-Duplex" + "data": "DALQX3RE1.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "et-2/1/0" } ], - "if-media-flags": [ + "lldp-local-parent-interface-name": [ { - "ifmf-none": [ - { - "data": [ - null - ] - } - ] + "data": "ae2" } ], - "interface-flapped": [ + "lldp-remote-chassis-id-subtype": [ { - "data": "Never", - "attributes": { - "junos:seconds": "0" - } + "data": "Mac address" } ], - "traffic-statistics": [ + "lldp-remote-chassis-id": [ { - "attributes": { - "junos:style": "brief" - }, - "input-packets": [ - { - "data": "0" - } - ], - "output-packets": [ - { - "data": "0" - } - ] + "data": "dc:38:e1:13:47:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "et-2/1/0" + } + ], + "lldp-remote-system-name": [ + { + "data": "0-PE1.mpls0.acme.net" } ] } ] } ] - }, - "show vlans | display json": [] + } } \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_2.json b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_2.json new file mode 100755 index 00000000..0bd8ebf6 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_2.json @@ -0,0 +1,26716 @@ +{ + "show configuration interfaces | display json": { + "configuration": { + "@": { + "junos:commit-seconds": "1726277279", + "junos:commit-localtime": "2024-09-14 01:27:59 UTC", + "junos:commit-user": "lkfk" + }, + "interfaces": { + "interface": [ + { + "name": "et-0/0/2", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" + } + } + }, + { + "name": "xe-0/1/0", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3100, + "description": "a desc", + "vlan-id": 3100, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.105/30" + } + ] + } + } + }, + { + "name": 3101, + "description": "a desc", + "vlan-id": 3101, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.109/30" + } + ] + } + } + }, + { + "name": 3102, + "description": "a desc", + "vlan-id": 3102, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.113/30" + } + ] + } + } + }, + { + "name": 3103, + "description": "a desc", + "vlan-id": 3103, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.117/30" + } + ] + } + } + }, + { + "name": 3104, + "description": "a desc", + "vlan-id": 3104, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.121/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-0/1/1", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae1" + } + }, + "optics-options": { + "wavelength": "1542.94" + } + }, + { + "name": "xe-0/1/2", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae2" + } + } + }, + { + "name": "xe-0/1/3", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae3" + } + }, + "optics-options": { + "wavelength": "1558.98" + } + }, + { + "name": "xe-0/1/5", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.153/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-0/1/6", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3200, + "description": "a desc", + "vlan-id": 3200, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.161/30" + } + ] + } + } + }, + { + "name": 3201, + "description": "a desc", + "vlan-id": 3201, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.165/30" + } + ] + } + } + }, + { + "name": 3202, + "description": "a desc", + "vlan-id": 3202, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.169/30" + } + ] + } + } + }, + { + "name": 3203, + "description": "a desc", + "vlan-id": 3203, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.173/30" + } + ] + } + } + }, + { + "name": 3204, + "description": "a desc", + "vlan-id": 3204, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.177/30" + } + ] + } + } + }, + { + "name": 3205, + "description": "a desc", + "vlan-id": 3205, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.181/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-0/1/7", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "mtu": 1522, + "gigether-options": { + "no-auto-negotiation": [ + null + ], + "speed": "1g" + }, + "unit": [ + { + "name": 2950, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "a desc", + "vlan-id": 2950, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.210.226/27", + "vrrp-group": [ + { + "name": 1, + "virtual-address": [ + "123.65.210.225" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } + } + ] + }, + { + "name": "ae0", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.68/31" + } + ] + } + } + } + ] + }, + { + "name": "ae1", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.70/31" + } + ] + } + } + } + ] + }, + { + "name": "ae2", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "bandwidth": "1g", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.150/31" + } + ] + } + } + } + ] + }, + { + "name": "ae3", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.230.25/31" + } + ] + } + } + } + ] + }, + { + "name": "fxp0", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "dhcp": { + "vendor-id": "Juniper:mx204:FH577" + } + }, + "inet6": { + "dhcpv6-client": { + "client-type": "stateful", + "client-ia-type": [ + { + "name": "ia-na" + } + ], + "client-identifier": { + "duid-type": "duid-ll" + }, + "vendor-id": "Juniper:mx204:FH577" + } + } + } + } + ] + }, + { + "name": "lo0", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "filter": { + "input": { + "filter-name": "ACME-FW-CPP-01" + } + }, + "address": [ + { + "name": "198.51.100.1/32" + } + ] + }, + "iso": { + "address": [ + { + "name": "49.0123.0065.0226.0116.00" + } + ] + }, + "inet6": { + "filter": { + "input": { + "filter-name": "ACME-FW6-CPP-01" + } + } + } + } + } + ] + } + ] + } + } + }, + "show system information | display json": { + "system-information": [ + { + "hardware-model": [ + { + "data": "mx204" + } + ], + "os-name": [ + { + "data": "junos" + } + ], + "os-version": [ + { + "data": "22.4R3.25" + } + ], + "serial-number": [ + { + "data": "FH577" + } + ], + "host-name": [ + { + "data": "JUNOS_MX204" + } + ] + } + ] + }, + "show interfaces terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-interface", + "junos:style": "terse" + }, + "physical-interface": [ + { + "name": [ + { + "data": "et-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "et-0/0/0.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "lc-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "et-0/0/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "et-0/0/1.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "et-0/0/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "et-0/0/2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "et-0/0/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "et-0/0/3.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "gr-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ip-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "lt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "mt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pd-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pe-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ud-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ut-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "vt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vt-0/0/10.2097152" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/0.3100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.105/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.109/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.113/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.117/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.121/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae1.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae2.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae3.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/4.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.153/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/6.3200" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.161/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3201" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.165/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3202" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.169/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3203" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.173/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3204" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.177/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3205" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.181/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/7.2950" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.210.225/27", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.210.226/27", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/7.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.68/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.70/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.150/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.230.25/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "em2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em2.32768" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "192.168.1.1/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.1/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em4.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.1/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::e65d:37ff:fefb:794a/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0226.0116", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::e65d:370f:fcfb:794a" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "mif" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + } + ] + } + ] + }, + "show route protocol direct | display json": { + "route-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-routing" + }, + "route-table": [ + { + "comment": "keepalive", + "table-name": [ + { + "data": "inet.0" + } + ], + "destination-count": [ + { + "data": "307" + } + ], + "total-route-count": [ + { + "data": "307" + } + ], + "active-route-count": [ + { + "data": "297" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "10" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "198.51.100.1/32" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:29:04", + "attributes": { + "junos:seconds": "3032944" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.229.68/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:25:44", + "attributes": { + "junos:seconds": "3032744" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.229.70/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:05", + "attributes": { + "junos:seconds": "3032765" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae1.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.229.150/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:05", + "attributes": { + "junos:seconds": "3032765" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae2.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.230.24/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:01", + "attributes": { + "junos:seconds": "3032761" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae3.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "inet.3" + } + ], + "destination-count": [ + { + "data": "97" + } + ], + "total-route-count": [ + { + "data": "97" + } + ], + "active-route-count": [ + { + "data": "97" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-CORP.inet.0" + } + ], + "destination-count": [ + { + "data": "7587" + } + ], + "total-route-count": [ + { + "data": "41056" + } + ], + "active-route-count": [ + { + "data": "7576" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "24" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.104/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:08", + "attributes": { + "junos:seconds": "3032768" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/0.3100" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.152/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:06", + "attributes": { + "junos:seconds": "3032766" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/5.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.160/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:06", + "attributes": { + "junos:seconds": "3032766" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/6.3200" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DEVICES.inet.0" + } + ], + "destination-count": [ + { + "data": "766" + } + ], + "total-route-count": [ + { + "data": "3978" + } + ], + "active-route-count": [ + { + "data": "762" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "6" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.120/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:08", + "attributes": { + "junos:seconds": "3032768" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/0.3104" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.176/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:06", + "attributes": { + "junos:seconds": "3032766" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/6.3204" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-GUEST.inet.0" + } + ], + "destination-count": [ + { + "data": "892" + } + ], + "total-route-count": [ + { + "data": "4760" + } + ], + "active-route-count": [ + { + "data": "888" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "7" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.108/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:08", + "attributes": { + "junos:seconds": "3032768" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/0.3101" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.164/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:06", + "attributes": { + "junos:seconds": "3032766" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/6.3201" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-IND.inet.0" + } + ], + "destination-count": [ + { + "data": "774" + } + ], + "total-route-count": [ + { + "data": "4032" + } + ], + "active-route-count": [ + { + "data": "769" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "7" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.112/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:08", + "attributes": { + "junos:seconds": "3032768" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/0.3102" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.168/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:06", + "attributes": { + "junos:seconds": "3032766" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/6.3202" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NETMGMT.inet.0" + } + ], + "destination-count": [ + { + "data": "126" + } + ], + "total-route-count": [ + { + "data": "512" + } + ], + "active-route-count": [ + { + "data": "126" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.210.224/27" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "3w5d 23:05:06", + "attributes": { + "junos:seconds": "2329506" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/7.2950" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RED.inet.0" + } + ], + "destination-count": [ + { + "data": "214" + } + ], + "total-route-count": [ + { + "data": "878" + } + ], + "active-route-count": [ + { + "data": "214" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "1" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.180/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:06", + "attributes": { + "junos:seconds": "3032766" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/6.3205" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-USER.inet.0" + } + ], + "destination-count": [ + { + "data": "853" + } + ], + "total-route-count": [ + { + "data": "4485" + } + ], + "active-route-count": [ + { + "data": "849" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "6" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.116/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:08", + "attributes": { + "junos:seconds": "3032768" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/0.3103" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.37.172/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:26:06", + "attributes": { + "junos:seconds": "3032766" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/1/6.3203" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "iso.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "49.0123.0065.0226.0116" + } + ], + "rt-prefix-length": [ + { + "data": "72", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:29:04", + "attributes": { + "junos:seconds": "3032944" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "mpls.0" + } + ], + "destination-count": [ + { + "data": "1017" + } + ], + "total-route-count": [ + { + "data": "1017" + } + ], + "active-route-count": [ + { + "data": "1017" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn.0" + } + ], + "destination-count": [ + { + "data": "28656" + } + ], + "total-route-count": [ + { + "data": "59370" + } + ], + "active-route-count": [ + { + "data": "28656" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "inet6.0" + } + ], + "destination-count": [ + { + "data": "4" + } + ], + "total-route-count": [ + { + "data": "4" + } + ], + "active-route-count": [ + { + "data": "4" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "fe80::e65d:370f:fcfb:794a/128", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:29:04", + "attributes": { + "junos:seconds": "3032944" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "inet6.3" + } + ], + "destination-count": [ + { + "data": "97" + } + ], + "total-route-count": [ + { + "data": "97" + } + ], + "active-route-count": [ + { + "data": "97" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-COMMSVCS.inet6.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-CORP.inet6.0" + } + ], + "destination-count": [ + { + "data": "14" + } + ], + "total-route-count": [ + { + "data": "55" + } + ], + "active-route-count": [ + { + "data": "14" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DEVICES.inet6.0" + } + ], + "destination-count": [ + { + "data": "19" + } + ], + "total-route-count": [ + { + "data": "67" + } + ], + "active-route-count": [ + { + "data": "19" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-GUEST.inet6.0" + } + ], + "destination-count": [ + { + "data": "20" + } + ], + "total-route-count": [ + { + "data": "71" + } + ], + "active-route-count": [ + { + "data": "20" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-IND.inet6.0" + } + ], + "destination-count": [ + { + "data": "13" + } + ], + "total-route-count": [ + { + "data": "51" + } + ], + "active-route-count": [ + { + "data": "13" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NETMGMT.inet6.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RED.inet6.0" + } + ], + "destination-count": [ + { + "data": "13" + } + ], + "total-route-count": [ + { + "data": "51" + } + ], + "active-route-count": [ + { + "data": "13" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-USER.inet6.0" + } + ], + "destination-count": [ + { + "data": "13" + } + ], + "total-route-count": [ + { + "data": "51" + } + ], + "active-route-count": [ + { + "data": "13" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn-inet6.0" + } + ], + "destination-count": [ + { + "data": "164" + } + ], + "total-route-count": [ + { + "data": "340" + } + ], + "active-route-count": [ + { + "data": "164" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + } + ] + } + ] + }, + "show interfaces | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-interface", + "junos:style": "normal" + }, + "physical-interface": [ + { + "name": [ + { + "data": "et-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "162" + } + ], + "snmp-index": [ + { + "data": "587" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "40Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:ed:af" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:ed:af" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:06 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032778" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + { + "data": "NONE" + } + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "et-0/0/0.16386" + } + ], + "local-index": [ + { + "data": "354" + } + ], + "snmp-index": [ + { + "data": "588" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "lc-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "150" + } + ], + "snmp-index": [ + { + "data": "520" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "local-index": [ + { + "data": "349" + } + ], + "snmp-index": [ + { + "data": "521" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "160" + } + ], + "snmp-index": [ + { + "data": "523" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "350" + } + ], + "snmp-index": [ + { + "data": "524" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "159" + } + ], + "snmp-index": [ + { + "data": "522" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "351" + } + ], + "snmp-index": [ + { + "data": "525" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "local-index": [ + { + "data": "352" + } + ], + "snmp-index": [ + { + "data": "526" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "et-0/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "163" + } + ], + "snmp-index": [ + { + "data": "589" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "40Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:ed:b3" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:ed:b3" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:06 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032778" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + { + "data": "NONE" + } + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "et-0/0/1.16386" + } + ], + "local-index": [ + { + "data": "355" + } + ], + "snmp-index": [ + { + "data": "590" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "et-0/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "164" + } + ], + "snmp-index": [ + { + "data": "591" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "40Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f5:91" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:ed:b7" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:34 UTC (5w0d 02:25 ago)", + "attributes": { + "junos:seconds": "3032750" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "28059760" + } + ], + "input-pps": [ + { + "data": "5763" + } + ], + "output-bps": [ + { + "data": "12841208" + } + ], + "output-pps": [ + { + "data": "3581" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + { + "data": "NONE" + } + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "et-0/0/2.0" + } + ], + "local-index": [ + { + "data": "356" + } + ], + "snmp-index": [ + { + "data": "597" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "65239980682" + } + ], + "output-packets": [ + { + "data": "9033699503" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "et-0/0/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "165" + } + ], + "snmp-index": [ + { + "data": "593" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "100Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:ed:bb" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:ed:bb" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:06 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032778" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + { + "data": "NONE" + } + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "et-0/0/3.16386" + } + ], + "local-index": [ + { + "data": "357" + } + ], + "snmp-index": [ + { + "data": "594" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "gr-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "153" + } + ], + "snmp-index": [ + { + "data": "581" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ip-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "154" + } + ], + "snmp-index": [ + { + "data": "582" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "157" + } + ], + "snmp-index": [ + { + "data": "585" + } + ], + "if-type": [ + { + "data": "Logical-tunnel" + } + ], + "link-level-type": [ + { + "data": "Logical-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-information": [ + { + "data": "13" + } + ], + "current-physical-address": [ + { + "data": "06:69:8f:61:ed:af", + "attributes": { + "junos:format": "MAC 06:69:8f:61:ed:af" + } + } + ], + "hardware-physical-address": [ + { + "data": "06:69:8f:61:ed:af", + "attributes": { + "junos:format": "MAC 06:69:8f:61:ed:af" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:24:51 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032793" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "mt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "156" + } + ], + "snmp-index": [ + { + "data": "584" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pd-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "151" + } + ], + "snmp-index": [ + { + "data": "579" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pe-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "152" + } + ], + "snmp-index": [ + { + "data": "580" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ud-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "161" + } + ], + "snmp-index": [ + { + "data": "578" + } + ], + "if-type": [ + { + "data": "UDPT" + } + ], + "link-level-type": [ + { + "data": "UDP-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ut-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "158" + } + ], + "snmp-index": [ + { + "data": "586" + } + ], + "if-type": [ + { + "data": "Uplink-tunnel" + } + ], + "link-level-type": [ + { + "data": "Uplink-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-information": [ + { + "data": "13" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:24:51 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032793" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "155" + } + ], + "snmp-index": [ + { + "data": "583" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "link-level-type": [ + { + "data": "Virtual-loopback-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vt-0/0/10.2097152" + } + ], + "local-index": [ + { + "data": "353" + } + ], + "snmp-index": [ + { + "data": "527" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "Virtual-loopback-tunnel" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "166" + } + ], + "snmp-index": [ + { + "data": "563" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f1:a7" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f1:a7" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:13 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032771" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "6288" + } + ], + "input-pps": [ + { + "data": "8" + } + ], + "output-bps": [ + { + "data": "38717328" + } + ], + "output-pps": [ + { + "data": "9619" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/0.3100" + } + ], + "local-index": [ + { + "data": "358" + } + ], + "snmp-index": [ + { + "data": "538" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "35287065" + } + ], + "output-packets": [ + { + "data": "96665589076" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.104/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.105" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.107" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3101" + } + ], + "local-index": [ + { + "data": "359" + } + ], + "snmp-index": [ + { + "data": "539" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3101 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3101 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1498745654" + } + ], + "output-packets": [ + { + "data": "2165200" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.108/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.109" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.111" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3102" + } + ], + "local-index": [ + { + "data": "360" + } + ], + "snmp-index": [ + { + "data": "540" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3102 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3102 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1410799" + } + ], + "output-packets": [ + { + "data": "2165159" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.112/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.113" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.115" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3103" + } + ], + "local-index": [ + { + "data": "361" + } + ], + "snmp-index": [ + { + "data": "541" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3103 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3103 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "898392537" + } + ], + "output-packets": [ + { + "data": "2165212" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.116/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.117" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.119" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3104" + } + ], + "local-index": [ + { + "data": "362" + } + ], + "snmp-index": [ + { + "data": "542" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3104 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3104 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "646514" + } + ], + "output-packets": [ + { + "data": "2165138" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.120/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.121" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.123" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.32767" + } + ], + "local-index": [ + { + "data": "363" + } + ], + "snmp-index": [ + { + "data": "543" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "101600" + } + ], + "output-packets": [ + { + "data": "109259" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "167" + } + ], + "snmp-index": [ + { + "data": "565" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "optics-properties": [ + { + "attributes": { + "junos:style": "verbose" + }, + "wavelength": [ + { + "data": "1542.94" + } + ], + "frequency": [ + { + "data": "194.30" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f5:90" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f1:a8" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:13 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032771" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "19321544" + } + ], + "input-pps": [ + { + "data": "6243" + } + ], + "output-bps": [ + { + "data": "983792" + } + ], + "output-pps": [ + { + "data": "154" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/1.0" + } + ], + "local-index": [ + { + "data": "364" + } + ], + "snmp-index": [ + { + "data": "576" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "71838180282" + } + ], + "output-packets": [ + { + "data": "14608736337" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae1.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "168" + } + ], + "snmp-index": [ + { + "data": "567" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f5:93" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f1:a9" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:13 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032771" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2662264" + } + ], + "input-pps": [ + { + "data": "1591" + } + ], + "output-bps": [ + { + "data": "20160984" + } + ], + "output-pps": [ + { + "data": "4769" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/2.0" + } + ], + "local-index": [ + { + "data": "365" + } + ], + "snmp-index": [ + { + "data": "546" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "7024355793" + } + ], + "output-packets": [ + { + "data": "27539585285" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae2.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "169" + } + ], + "snmp-index": [ + { + "data": "569" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "optics-properties": [ + { + "attributes": { + "junos:style": "verbose" + }, + "wavelength": [ + { + "data": "1558.98" + } + ], + "frequency": [ + { + "data": "192.30" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f5:94" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f1:aa" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:17 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032767" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "34167744" + } + ], + "input-pps": [ + { + "data": "6231" + } + ], + "output-bps": [ + { + "data": "11627072" + } + ], + "output-pps": [ + { + "data": "1874" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/3.0" + } + ], + "local-index": [ + { + "data": "366" + } + ], + "snmp-index": [ + { + "data": "558" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "42823814751" + } + ], + "output-packets": [ + { + "data": "41768622932" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae3.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "170" + } + ], + "snmp-index": [ + { + "data": "559" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f1:ab" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f1:ab" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:08 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032776" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/4.16386" + } + ], + "local-index": [ + { + "data": "367" + } + ], + "snmp-index": [ + { + "data": "571" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "171" + } + ], + "snmp-index": [ + { + "data": "560" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f1:ac" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f1:ac" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:14 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032770" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2796384" + } + ], + "input-pps": [ + { + "data": "818" + } + ], + "output-bps": [ + { + "data": "5839944" + } + ], + "output-pps": [ + { + "data": "972" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "1" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/5.0" + } + ], + "local-index": [ + { + "data": "368" + } + ], + "snmp-index": [ + { + "data": "549" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3367848120" + } + ], + "output-packets": [ + { + "data": "6093733354" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.152/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.153" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.155" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "172" + } + ], + "snmp-index": [ + { + "data": "561" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f1:ad" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f1:ad" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:14 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032770" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "5008072" + } + ], + "input-pps": [ + { + "data": "837" + } + ], + "output-bps": [ + { + "data": "1834592" + } + ], + "output-pps": [ + { + "data": "659" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/6.3200" + } + ], + "local-index": [ + { + "data": "369" + } + ], + "snmp-index": [ + { + "data": "550" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3200 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3200 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "4747361546" + } + ], + "output-packets": [ + { + "data": "2380420782" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.160/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.161" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.163" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3201" + } + ], + "local-index": [ + { + "data": "370" + } + ], + "snmp-index": [ + { + "data": "551" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3201 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3201 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "404382083" + } + ], + "output-packets": [ + { + "data": "3129432" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.164/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.165" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.167" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3202" + } + ], + "local-index": [ + { + "data": "371" + } + ], + "snmp-index": [ + { + "data": "552" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3202 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3202 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1736317" + } + ], + "output-packets": [ + { + "data": "1736663" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.168/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.169" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.171" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3203" + } + ], + "local-index": [ + { + "data": "372" + } + ], + "snmp-index": [ + { + "data": "553" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3203 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3203 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "119041062" + } + ], + "output-packets": [ + { + "data": "7166583" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.172/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.173" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.175" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3204" + } + ], + "local-index": [ + { + "data": "373" + } + ], + "snmp-index": [ + { + "data": "554" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3204 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3204 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1736318" + } + ], + "output-packets": [ + { + "data": "1736621" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.176/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.177" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.179" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3205" + } + ], + "local-index": [ + { + "data": "374" + } + ], + "snmp-index": [ + { + "data": "555" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3205 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3205 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1736255" + } + ], + "output-packets": [ + { + "data": "1736645" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.180/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.181" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.183" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.32767" + } + ], + "local-index": [ + { + "data": "375" + } + ], + "snmp-index": [ + { + "data": "556" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "101587" + } + ], + "output-packets": [ + { + "data": "109250" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "173" + } + ], + "snmp-index": [ + { + "data": "562" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "1G" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f1:ae" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f1:ae" + } + ], + "interface-flapped": [ + { + "data": "2024-09-07 14:46:15 UTC (3w5d 23:05 ago)", + "attributes": { + "junos:seconds": "2329509" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "21928" + } + ], + "input-pps": [ + { + "data": "9" + } + ], + "output-bps": [ + { + "data": "976" + } + ], + "output-pps": [ + { + "data": "1" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/7.2950" + } + ], + "local-index": [ + { + "data": "376" + } + ], + "snmp-index": [ + { + "data": "529" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2950 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2950 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "44685330" + } + ], + "output-packets": [ + { + "data": "4475598" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "12" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x40008" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.210.224/27" + } + ], + "ifa-local": [ + { + "data": "123.65.210.225" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.210.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.210.224/27" + } + ], + "ifa-local": [ + { + "data": "123.65.210.226" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.210.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/7.32767" + } + ], + "local-index": [ + { + "data": "377" + } + ], + "snmp-index": [ + { + "data": "530" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "101587" + } + ], + "output-packets": [ + { + "data": "109266" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "130" + } + ], + "snmp-index": [ + { + "data": "596" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "40Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f5:91" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f5:91" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:36 UTC (5w0d 02:25 ago)", + "attributes": { + "junos:seconds": "3032748" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "28059760" + } + ], + "input-pps": [ + { + "data": "5763" + } + ], + "output-bps": [ + { + "data": "12849448" + } + ], + "output-pps": [ + { + "data": "3581" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "local-index": [ + { + "data": "345" + } + ], + "snmp-index": [ + { + "data": "598" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "65239871391" + } + ], + "input-pps": [ + { + "data": "5763" + } + ], + "input-bytes": [ + { + "data": "49190976414112" + } + ], + "input-bps": [ + { + "data": "28059760" + } + ], + "output-packets": [ + { + "data": "9033590235" + } + ], + "output-pps": [ + { + "data": "3410" + } + ], + "output-bytes": [ + { + "data": "6396545958233" + } + ], + "output-bps": [ + { + "data": "12342480" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.68/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.68" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "131" + } + ], + "snmp-index": [ + { + "data": "575" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f5:90" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f5:90" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:15 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032769" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "19321544" + } + ], + "input-pps": [ + { + "data": "6243" + } + ], + "output-bps": [ + { + "data": "983912" + } + ], + "output-pps": [ + { + "data": "154" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "local-index": [ + { + "data": "346" + } + ], + "snmp-index": [ + { + "data": "577" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "71838070986" + } + ], + "input-pps": [ + { + "data": "6243" + } + ], + "input-bytes": [ + { + "data": "63195797564882" + } + ], + "input-bps": [ + { + "data": "19321544" + } + ], + "output-packets": [ + { + "data": "14608627078" + } + ], + "output-pps": [ + { + "data": "152" + } + ], + "output-bytes": [ + { + "data": "11473812795968" + } + ], + "output-bps": [ + { + "data": "981784" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.70/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.70" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "132" + } + ], + "snmp-index": [ + { + "data": "547" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f5:93" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f5:93" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:15 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032769" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2662264" + } + ], + "input-pps": [ + { + "data": "1591" + } + ], + "output-bps": [ + { + "data": "20161792" + } + ], + "output-pps": [ + { + "data": "4769" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae2.0" + } + ], + "local-index": [ + { + "data": "347" + } + ], + "snmp-index": [ + { + "data": "548" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "7024246540" + } + ], + "input-pps": [ + { + "data": "1591" + } + ], + "input-bytes": [ + { + "data": "2588656445191" + } + ], + "input-bps": [ + { + "data": "2662264" + } + ], + "output-packets": [ + { + "data": "27539476003" + } + ], + "output-pps": [ + { + "data": "4753" + } + ], + "output-bytes": [ + { + "data": "26606242176791" + } + ], + "output-bps": [ + { + "data": "20117120" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.150/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.150" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "133" + } + ], + "snmp-index": [ + { + "data": "557" + } + ], + "description": [ + { + "data": "" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f5:94" + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f5:94" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:19 UTC (5w0d 02:26 ago)", + "attributes": { + "junos:seconds": "3032765" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "34167744" + } + ], + "input-pps": [ + { + "data": "6231" + } + ], + "output-bps": [ + { + "data": "11627144" + } + ], + "output-pps": [ + { + "data": "1874" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae3.0" + } + ], + "local-index": [ + { + "data": "348" + } + ], + "snmp-index": [ + { + "data": "564" + } + ], + "description": [ + { + "data": "" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "42823705449" + } + ], + "input-pps": [ + { + "data": "6231" + } + ], + "input-bytes": [ + { + "data": "38345735504869" + } + ], + "input-bps": [ + { + "data": "34167744" + } + ], + "output-packets": [ + { + "data": "41768513676" + } + ], + "output-pps": [ + { + "data": "1873" + } + ], + "output-bytes": [ + { + "data": "33076270516044" + } + ], + "output-bps": [ + { + "data": "11625840" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.230.24/31" + } + ], + "ifa-local": [ + { + "data": "123.65.230.25" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "135" + } + ], + "snmp-index": [ + { + "data": "512" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:ed:c0", + "attributes": { + "junos:format": "MAC 04:69:8f:61:ed:c0" + } + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:ed:c0", + "attributes": { + "junos:format": "MAC 04:69:8f:61:ed:c0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "137" + } + ], + "snmp-index": [ + { + "data": "514" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "clocking": [ + { + "data": "1" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "5" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "em2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "65" + } + ], + "snmp-index": [ + { + "data": "116" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000 Mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "52:54:00:c1:0d:df", + "attributes": { + "junos:format": "MAC 52:54:00:c1:0d:df" + } + } + ], + "hardware-physical-address": [ + { + "data": "52:54:00:c1:0d:df", + "attributes": { + "junos:format": "MAC 52:54:00:c1:0d:df" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:22:04 UTC (5w0d 02:29 ago)", + "attributes": { + "junos:seconds": "3032960" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "23756871" + } + ], + "output-packets": [ + { + "data": "13220110" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em2.32768" + } + ], + "local-index": [ + { + "data": "7" + } + ], + "snmp-index": [ + { + "data": "118" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "23756657" + } + ], + "output-packets": [ + { + "data": "13220114" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "192.168.1/24" + } + ], + "ifa-local": [ + { + "data": "192.168.1.1" + } + ], + "ifa-broadcast": [ + { + "data": "192.168.1.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "66" + } + ], + "snmp-index": [ + { + "data": "152" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "speed": [ + { + "data": "1000 Mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:02", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:02" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:22:17 UTC (5w0d 02:29 ago)", + "attributes": { + "junos:seconds": "3032947" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "413696171" + } + ], + "output-packets": [ + { + "data": "323226978" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em3.0" + } + ], + "local-index": [ + { + "data": "8" + } + ], + "snmp-index": [ + { + "data": "153" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "411844152" + } + ], + "output-packets": [ + { + "data": "323227210" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "67" + } + ], + "snmp-index": [ + { + "data": "154" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "speed": [ + { + "data": "1000 Mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:02", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:02" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:01:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:01:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:22:17 UTC (5w0d 02:29 ago)", + "attributes": { + "junos:seconds": "3032947" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1666" + } + ], + "output-packets": [ + { + "data": "3032745" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em4.0" + } + ], + "local-index": [ + { + "data": "9" + } + ], + "snmp-index": [ + { + "data": "155" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1635" + } + ], + "output-packets": [ + { + "data": "3032740" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "9178" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x8" + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "140" + } + ], + "snmp-index": [ + { + "data": "517" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "142" + } + ], + "snmp-index": [ + { + "data": "519" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "143" + } + ], + "snmp-index": [ + { + "data": "504" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "144" + } + ], + "snmp-index": [ + { + "data": "505" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "145" + } + ], + "snmp-index": [ + { + "data": "506" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "146" + } + ], + "snmp-index": [ + { + "data": "507" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "147" + } + ], + "snmp-index": [ + { + "data": "508" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "148" + } + ], + "snmp-index": [ + { + "data": "509" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "149" + } + ], + "snmp-index": [ + { + "data": "510" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "64" + } + ], + "snmp-index": [ + { + "data": "1" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000 Mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "e4:5d:37:fb:79:4a", + "attributes": { + "junos:format": "MAC e4:5d:37:fb:79:4a" + } + } + ], + "hardware-physical-address": [ + { + "data": "e4:5d:37:fb:79:4a", + "attributes": { + "junos:format": "MAC e4:5d:37:fb:79:4a" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:22:14 UTC (5w0d 02:29 ago)", + "attributes": { + "junos:seconds": "3032950" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "5251382" + } + ], + "output-packets": [ + { + "data": "152000" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "13" + } + ], + "description": [ + { + "data": "MGMT" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "5251041" + } + ], + "output-packets": [ + { + "data": "152000" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "5" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::e65d:37ff:fefb:794a" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "10" + } + ], + "snmp-index": [ + { + "data": "8" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "11" + } + ], + "snmp-index": [ + { + "data": "9" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "138" + } + ], + "snmp-index": [ + { + "data": "515" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f5:c0", + "attributes": { + "junos:format": "MAC 04:69:8f:61:f5:c0" + } + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f5:c0", + "attributes": { + "junos:format": "MAC 04:69:8f:61:f5:c0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "129" + } + ], + "snmp-index": [ + { + "data": "501" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "00:00:00:00:00:00", + "attributes": { + "junos:format": "MAC 00:00:00:00:00:00" + } + } + ], + "hardware-physical-address": [ + { + "data": "00:00:00:00:00:00", + "attributes": { + "junos:format": "MAC 00:00:00:00:00:00" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "local-index": [ + { + "data": "324" + } + ], + "snmp-index": [ + { + "data": "502" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x24004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "unknown" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "None" + } + ], + "irb-bridge": [ + { + "data": "None" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "100000" + } + ], + "new-hold-limit": [ + { + "data": "100000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.127" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "6" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-loopback": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "61625708" + } + ], + "output-packets": [ + { + "data": "61626414" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "local-index": [ + { + "data": "320" + } + ], + "snmp-index": [ + { + "data": "16" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "103" + } + ], + "output-packets": [ + { + "data": "103" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "198.51.100.1" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "49.0123.0065.0226.0116" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-local": [ + { + "data": "fe80::e65d:370f:fcfb:794a" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "local-index": [ + { + "data": "322" + } + ], + "snmp-index": [ + { + "data": "21" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "127.0.0.1" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "local-index": [ + { + "data": "321" + } + ], + "snmp-index": [ + { + "data": "22" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "61630153" + } + ], + "output-packets": [ + { + "data": "61624413" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "4" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "LSI" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "15016" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "local-index": [ + { + "data": "336" + } + ], + "snmp-index": [ + { + "data": "528" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "local-index": [ + { + "data": "337" + } + ], + "snmp-index": [ + { + "data": "537" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "34936" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "local-index": [ + { + "data": "338" + } + ], + "snmp-index": [ + { + "data": "531" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "local-index": [ + { + "data": "339" + } + ], + "snmp-index": [ + { + "data": "532" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "local-index": [ + { + "data": "340" + } + ], + "snmp-index": [ + { + "data": "533" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "local-index": [ + { + "data": "341" + } + ], + "snmp-index": [ + { + "data": "534" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "57" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "local-index": [ + { + "data": "342" + } + ], + "snmp-index": [ + { + "data": "535" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "local-index": [ + { + "data": "343" + } + ], + "snmp-index": [ + { + "data": "536" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "16" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "mif" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "134" + } + ], + "snmp-index": [ + { + "data": "511" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "1440" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "68" + } + ], + "snmp-index": [ + { + "data": "12" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "26" + } + ], + "snmp-index": [ + { + "data": "11" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "25" + } + ], + "snmp-index": [ + { + "data": "10" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "136" + } + ], + "snmp-index": [ + { + "data": "513" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "04:69:8f:61:f4:80", + "attributes": { + "junos:format": "MAC 04:69:8f:61:f4:80" + } + } + ], + "hardware-physical-address": [ + { + "data": "04:69:8f:61:f4:80", + "attributes": { + "junos:format": "MAC 04:69:8f:61:f4:80" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "141" + } + ], + "snmp-index": [ + { + "data": "518" + } + ], + "if-type": [ + { + "data": "PPPoE" + } + ], + "link-level-type": [ + { + "data": "PPPoE" + } + ], + "mtu": [ + { + "data": "1532" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "128" + } + ], + "snmp-index": [ + { + "data": "503" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Remote-BEB" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "12" + } + ], + "snmp-index": [ + { + "data": "7" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "139" + } + ], + "snmp-index": [ + { + "data": "516" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + } + ] + } + ] + }, + "show interfaces routing-instance all terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-interface", + "junos:style": "vrf" + }, + "physical-interface": [ + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "vt-0/0/10.2097152" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/0.3100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.105/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.109/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.113/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.117/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/0.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.121/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.153/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/6.3200" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.161/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3201" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.165/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3202" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.169/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3203" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.173/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3204" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.177/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + }, + { + "name": [ + { + "data": "xe-0/1/6.3205" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.181/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RED" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/1/7.2950" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.210.225/27", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.210.226/27", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.68/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.70/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.150/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.230.25/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "em2.32768" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "192.168.1.1/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private5__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "em3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.1/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "em4.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.1/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::e65d:37ff:fefb:794a/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_services__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0226.0116", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::e65d:370f:fcfb:794a" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-COMMSVCS" + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RED" + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ] + }, + "show vlans | display json": [], + "show lldp neighbors | display json": { + "lldp-neighbors-information": [ + { + "attributes": { + "junos:style": "brief" + }, + "lldp-neighbor-information": [ + { + "lldp-local-port-id": [ + { + "data": "et-0/0/2" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "04:69:8f:61:c5:90" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "et-0/0/2" + } + ], + "lldp-remote-system-name": [ + { + "data": "ABC-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/1/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "38:fd:f8:99:08:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Twe1/0/1" + } + ], + "lldp-remote-system-name": [ + { + "data": "ABC01.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "fxp0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "44:64:3c:06:f6:80" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Gi1/0/6" + } + ], + "lldp-remote-system-name": [ + { + "data": "ABCMS01.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/1/7" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "44:64:3c:06:f6:80" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/1/1" + } + ], + "lldp-remote-system-name": [ + { + "data": "CDEFMS01.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/1/1" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae1" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "44:f4:77:0e:67:c8" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/2/0" + } + ], + "lldp-remote-system-name": [ + { + "data": "DEF-PE1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/1/2" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae2" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "64:64:9b:68:34:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/0/6" + } + ], + "lldp-remote-system-name": [ + { + "data": "ABCDEF-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/1/3" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae3" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "b4:f9:5d:95:ae:90" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-0/1/1" + } + ], + "lldp-remote-system-name": [ + { + "data": "DEFC-PE1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/1/5" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "d4:eb:68:1e:e5:00" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te0/1/0" + } + ], + "lldp-remote-system-name": [ + { + "data": "ABCRB01" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/1/6" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "d4:eb:68:1e:e5:00" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te0/1/3" + } + ], + "lldp-remote-system-name": [ + { + "data": "DEFRB01" + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_3.json b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_3.json new file mode 100755 index 00000000..280445fe --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_3.json @@ -0,0 +1,26088 @@ +{ + "show configuration interfaces | display json": { + "configuration": { + "@": { + "junos:commit-seconds": "1728012138", + "junos:commit-localtime": "2024-10-04 03:22:18 UTC", + "junos:commit-user": "svc-junospace" + }, + "interfaces": { + "interface": [ + { + "name": "xe-0/0/0", + "disable": [ + null + ] + }, + { + "name": "xe-0/0/1", + "disable": [ + null + ] + }, + { + "name": "xe-0/0/2", + "disable": [ + null + ] + }, + { + "name": "xe-0/0/3", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/0", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 2950, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "a desc", + "vlan-id": 2950, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-NETMGMT" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "198.51.100.1/28", + "vrrp-group": [ + { + "name": 1, + "virtual-address": [ + "123.65.209.81" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } + }, + { + "name": 2953, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "a desc", + "vlan-id": 2953, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.132.203/29", + "vrrp-group": [ + { + "name": 3, + "virtual-address": [ + "123.65.132.201" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } + } + ] + }, + { + "name": "ge-1/0/1", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/2", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/3", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/4", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/5", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/6", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/7", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/8", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/9", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3100, + "description": "a desc", + "vlan-id": 3100, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.19.137/29" + } + ] + } + } + }, + { + "name": 3101, + "description": "a desc", + "vlan-id": 3101, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.26.61/30" + } + ] + } + } + }, + { + "name": 3102, + "description": "a desc", + "vlan-id": 3102, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.26.69/30" + } + ] + } + } + }, + { + "name": 3103, + "description": "a desc", + "vlan-id": 3103, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.26.57/30" + } + ] + } + } + }, + { + "name": 3104, + "description": "a desc", + "vlan-id": 3104, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.26.65/30" + } + ] + } + } + } + ] + }, + { + "name": "ge-1/1/0", + "description": "a desc", + "mtu": 1522, + "encapsulation": "ethernet-ccc", + "gigether-options": { + "asynchronous-notification": [ + null + ] + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "bandwidth": "1g", + "family": { + "ccc": { + "filter": { + "input-list": [ + "ABC-I-ge-1/1/0.0" + ] + } + } + } + } + ] + }, + { + "name": "ge-1/1/1", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/2", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/3", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/4", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/5", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/6", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae2" + } + } + }, + { + "name": "ge-1/1/7", + "description": "a desc", + "speed": "1g", + "link-mode": "full-duplex", + "gigether-options": { + "no-auto-negotiation": [ + null + ], + "ieee-802.3ad": { + "bundle": "ae1" + } + } + }, + { + "name": "ge-1/1/8", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" + } + } + }, + { + "name": "ge-1/1/9", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" + } + } + }, + { + "name": "ae0", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.32/31" + } + ] + } + } + } + ] + }, + { + "name": "ae1", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "bandwidth": "300m", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.34/31" + } + ] + } + } + } + ] + }, + { + "name": "ae2", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.36/31" + } + ] + } + } + } + ] + }, + { + "name": "em1", + "description": "UMI : Internal Backplane Interface" + }, + { + "name": "lo0", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "filter": { + "input": { + "filter-name": "ACME-FW-CPP-01" + } + }, + "address": [ + { + "name": "123.65.226.112/32" + } + ] + }, + "iso": { + "address": [ + { + "name": "49.0123.0065.0226.0112.00" + } + ] + }, + "inet6": { + "filter": { + "input": { + "filter-name": "ACME-FW6-CPP-01" + } + } + } + } + } + ] + } + ] + } + } + }, + "show system information | display json": { + "system-information": [ + { + "hardware-model": [ + { + "data": "mx10-t" + } + ], + "os-name": [ + { + "data": "junos" + } + ], + "os-version": [ + { + "data": "21.2R3-S7.7" + } + ], + "serial-number": [ + { + "data": "BC899" + } + ], + "host-name": [ + { + "data": "JUNOS_MX10" + } + ] + } + ] + }, + "show interfaces terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.2R0/junos-interface", + "junos:style": "terse" + }, + "physical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/3" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.2950" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.2953" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.132.201/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.132.203/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/1" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/2" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/3" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/4" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/5" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/6" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/7" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/8" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/9.3100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.137/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.26.61/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.26.69/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.26.57/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.26.65/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/1" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/2" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/3" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/4" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/5" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/6.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae2.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae1.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/9.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.32/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.34/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.36/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "em0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.1/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.209.85/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.226.112" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0226.0112", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::5a00:bb0f:fc8c:11ff" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "me0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "me0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + } + ] + } + ] + }, + "show route protocol direct | display json": { + "route-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.2R0/junos-routing" + }, + "route-table": [ + { + "comment": "keepalive", + "table-name": [ + { + "data": "inet.0" + } + ], + "destination-count": [ + { + "data": "303" + } + ], + "total-route-count": [ + { + "data": "304" + } + ], + "active-route-count": [ + { + "data": "299" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "4" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.209.80/28" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:04:54", + "attributes": { + "junos:seconds": "10368294" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "fxp0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.226.112/32" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:04:54", + "attributes": { + "junos:seconds": "10368294" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.229.32/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:03:18", + "attributes": { + "junos:seconds": "10368198" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.229.34/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "10w3d 23:07:54", + "attributes": { + "junos:seconds": "6390474" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae1.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.229.36/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "1d 09:26:42", + "attributes": { + "junos:seconds": "120402" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae2.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "inet.3" + } + ], + "destination-count": [ + { + "data": "97" + } + ], + "total-route-count": [ + { + "data": "97" + } + ], + "active-route-count": [ + { + "data": "97" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-CORP.inet.0" + } + ], + "destination-count": [ + { + "data": "7576" + } + ], + "total-route-count": [ + { + "data": "39622" + } + ], + "active-route-count": [ + { + "data": "7575" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "1" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.19.136/29" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:03:20", + "attributes": { + "junos:seconds": "10368200" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-1/0/9.3100" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.132.200/29" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:03:25", + "attributes": { + "junos:seconds": "10368205" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-1/0/0.2953" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DEVICES.inet.0" + } + ], + "destination-count": [ + { + "data": "761" + } + ], + "total-route-count": [ + { + "data": "3867" + } + ], + "active-route-count": [ + { + "data": "761" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.26.64/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:03:21", + "attributes": { + "junos:seconds": "10368201" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-1/0/9.3104" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-GUEST.inet.0" + } + ], + "destination-count": [ + { + "data": "887" + } + ], + "total-route-count": [ + { + "data": "4637" + } + ], + "active-route-count": [ + { + "data": "887" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.26.60/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:03:21", + "attributes": { + "junos:seconds": "10368201" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-1/0/9.3101" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-IND.inet.0" + } + ], + "destination-count": [ + { + "data": "769" + } + ], + "total-route-count": [ + { + "data": "3917" + } + ], + "active-route-count": [ + { + "data": "768" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "1" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.26.68/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:03:21", + "attributes": { + "junos:seconds": "10368201" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-1/0/9.3102" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NETMGMT.inet.0" + } + ], + "destination-count": [ + { + "data": "125" + } + ], + "total-route-count": [ + { + "data": "498" + } + ], + "active-route-count": [ + { + "data": "125" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.209.80/28" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:03:25", + "attributes": { + "junos:seconds": "10368205" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-1/0/0.2950" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RED.inet.0" + } + ], + "destination-count": [ + { + "data": "213" + } + ], + "total-route-count": [ + { + "data": "870" + } + ], + "active-route-count": [ + { + "data": "213" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-USER.inet.0" + } + ], + "destination-count": [ + { + "data": "848" + } + ], + "total-route-count": [ + { + "data": "4365" + } + ], + "active-route-count": [ + { + "data": "848" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.26.56/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:03:21", + "attributes": { + "junos:seconds": "10368201" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-1/0/9.3103" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "iso.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "49.0123.0065.0226.0112" + } + ], + "rt-prefix-length": [ + { + "data": "72", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:04:55", + "attributes": { + "junos:seconds": "10368295" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "mpls.0" + } + ], + "destination-count": [ + { + "data": "2476" + } + ], + "total-route-count": [ + { + "data": "2476" + } + ], + "active-route-count": [ + { + "data": "2476" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn.0" + } + ], + "destination-count": [ + { + "data": "28843" + } + ], + "total-route-count": [ + { + "data": "57713" + } + ], + "active-route-count": [ + { + "data": "28843" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "inet6.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "2" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "fe80::5a00:bb0f:fc8c:11ff/128", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "17w1d 00:04:55", + "attributes": { + "junos:seconds": "10368295" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-COMMSVCS.inet6.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-CORP.inet6.0" + } + ], + "destination-count": [ + { + "data": "14" + } + ], + "total-route-count": [ + { + "data": "53" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "52" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DEVICES.inet6.0" + } + ], + "destination-count": [ + { + "data": "19" + } + ], + "total-route-count": [ + { + "data": "65" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "64" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-GUEST.inet6.0" + } + ], + "destination-count": [ + { + "data": "20" + } + ], + "total-route-count": [ + { + "data": "69" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "68" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-IND.inet6.0" + } + ], + "destination-count": [ + { + "data": "13" + } + ], + "total-route-count": [ + { + "data": "49" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "48" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NETMGMT.inet6.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RED.inet6.0" + } + ], + "destination-count": [ + { + "data": "13" + } + ], + "total-route-count": [ + { + "data": "49" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "48" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-USER.inet6.0" + } + ], + "destination-count": [ + { + "data": "13" + } + ], + "total-route-count": [ + { + "data": "49" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "48" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "3" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-DHAK94PE1-OFCMPPE1-1.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "4" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn-inet6.0" + } + ], + "destination-count": [ + { + "data": "164" + } + ], + "total-route-count": [ + { + "data": "328" + } + ], + "active-route-count": [ + { + "data": "0" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "328" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-DHAK94PE1-OFCMPPE1-1.l2id.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "5" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + } + ] + } + ] + }, + "show interfaces | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.2R0/junos-interface", + "junos:style": "normal" + }, + "physical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "148" + } + ], + "snmp-index": [ + { + "data": "506" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "local-index": [ + { + "data": "348" + } + ], + "snmp-index": [ + { + "data": "507" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "150" + } + ], + "snmp-index": [ + { + "data": "509" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "349" + } + ], + "snmp-index": [ + { + "data": "511" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "149" + } + ], + "snmp-index": [ + { + "data": "508" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "350" + } + ], + "snmp-index": [ + { + "data": "510" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "local-index": [ + { + "data": "351" + } + ], + "snmp-index": [ + { + "data": "577" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "151" + } + ], + "snmp-index": [ + { + "data": "512" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:00" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:00" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:15 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368219" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "152" + } + ], + "snmp-index": [ + { + "data": "513" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:01" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:01" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:15 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368219" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "153" + } + ], + "snmp-index": [ + { + "data": "514" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:02" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:02" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:15 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368219" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "154" + } + ], + "snmp-index": [ + { + "data": "515" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:03" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:03" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:15 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368219" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "155" + } + ], + "snmp-index": [ + { + "data": "532" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:60" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:60" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:26 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368208" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1056" + } + ], + "input-pps": [ + { + "data": "1" + } + ], + "output-bps": [ + { + "data": "656" + } + ], + "output-pps": [ + { + "data": "1" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.2950" + } + ], + "local-index": [ + { + "data": "352" + } + ], + "snmp-index": [ + { + "data": "593" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2950 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2950 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "20318200" + } + ], + "output-packets": [ + { + "data": "39096916" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "5" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.209.80/28" + } + ], + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.209.95" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.2953" + } + ], + "local-index": [ + { + "data": "353" + } + ], + "snmp-index": [ + { + "data": "589" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2953 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2953 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "5195010" + } + ], + "output-packets": [ + { + "data": "11868802" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.132.200/29" + } + ], + "ifa-local": [ + { + "data": "123.65.132.201" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.132.207" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.132.200/29" + } + ], + "ifa-local": [ + { + "data": "123.65.132.203" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.132.207" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.32767" + } + ], + "local-index": [ + { + "data": "354" + } + ], + "snmp-index": [ + { + "data": "580" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "373643" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "156" + } + ], + "snmp-index": [ + { + "data": "533" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:61" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:61" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368210" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/2" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "157" + } + ], + "snmp-index": [ + { + "data": "534" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:62" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:62" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368210" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "158" + } + ], + "snmp-index": [ + { + "data": "535" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:63" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:63" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368210" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/4" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "159" + } + ], + "snmp-index": [ + { + "data": "536" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:64" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:64" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368210" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/5" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "160" + } + ], + "snmp-index": [ + { + "data": "537" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:65" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:65" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368210" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/6" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "161" + } + ], + "snmp-index": [ + { + "data": "538" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:66" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:66" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368210" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/7" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "162" + } + ], + "snmp-index": [ + { + "data": "539" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:67" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:67" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368210" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/8" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "163" + } + ], + "snmp-index": [ + { + "data": "540" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:68" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:68" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368210" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "164" + } + ], + "snmp-index": [ + { + "data": "541" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:69" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:69" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:30 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368204" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "5530952" + } + ], + "input-pps": [ + { + "data": "2332" + } + ], + "output-bps": [ + { + "data": "26529720" + } + ], + "output-pps": [ + { + "data": "3600" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/9.3100" + } + ], + "local-index": [ + { + "data": "355" + } + ], + "snmp-index": [ + { + "data": "588" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "41470192435" + } + ], + "output-packets": [ + { + "data": "58447305002" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.19.136/29" + } + ], + "ifa-local": [ + { + "data": "123.65.19.137" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.19.143" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3101" + } + ], + "local-index": [ + { + "data": "356" + } + ], + "snmp-index": [ + { + "data": "591" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3101 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3101 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "21101067" + } + ], + "output-packets": [ + { + "data": "75772990" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.26.60/30" + } + ], + "ifa-local": [ + { + "data": "123.65.26.61" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.26.63" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3102" + } + ], + "local-index": [ + { + "data": "357" + } + ], + "snmp-index": [ + { + "data": "592" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3102 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3102 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "5940595" + } + ], + "output-packets": [ + { + "data": "759156" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.26.68/30" + } + ], + "ifa-local": [ + { + "data": "123.65.26.69" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.26.71" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3103" + } + ], + "local-index": [ + { + "data": "358" + } + ], + "snmp-index": [ + { + "data": "594" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3103 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3103 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "401756021" + } + ], + "output-packets": [ + { + "data": "2131023004" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.26.56/30" + } + ], + "ifa-local": [ + { + "data": "123.65.26.57" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.26.59" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3104" + } + ], + "local-index": [ + { + "data": "359" + } + ], + "snmp-index": [ + { + "data": "590" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3104 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3104 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "5940633" + } + ], + "output-packets": [ + { + "data": "759077" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.26.64/30" + } + ], + "ifa-local": [ + { + "data": "123.65.26.65" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.26.67" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.32767" + } + ], + "local-index": [ + { + "data": "360" + } + ], + "snmp-index": [ + { + "data": "581" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "347338" + } + ], + "output-packets": [ + { + "data": "373624" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "165" + } + ], + "snmp-index": [ + { + "data": "542" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet-CCC" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:6c" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:6c" + } + ], + "interface-flapped": [ + { + "data": "2024-07-29 05:36:29 UTC (9w4d 08:16 ago)", + "attributes": { + "junos:seconds": "5818585" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "168952" + } + ], + "input-pps": [ + { + "data": "93" + } + ], + "output-bps": [ + { + "data": "87936" + } + ], + "output-pps": [ + { + "data": "78" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/0.0" + } + ], + "local-index": [ + { + "data": "361" + } + ], + "snmp-index": [ + { + "data": "582" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-CCC" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "950821831" + } + ], + "output-packets": [ + { + "data": "1088161029" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x402" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "166" + } + ], + "snmp-index": [ + { + "data": "543" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:6d" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:6d" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368211" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/2" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "167" + } + ], + "snmp-index": [ + { + "data": "544" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:6e" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:6e" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368211" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "168" + } + ], + "snmp-index": [ + { + "data": "545" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:6f" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:6f" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368211" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/4" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "169" + } + ], + "snmp-index": [ + { + "data": "546" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:70" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:70" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:24 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368211" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/5" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "170" + } + ], + "snmp-index": [ + { + "data": "547" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:71" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:71" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:26 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368209" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "171" + } + ], + "snmp-index": [ + { + "data": "548" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:c2" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:72" + } + ], + "interface-flapped": [ + { + "data": "2024-10-03 04:26:06 UTC (1d 09:26 ago)", + "attributes": { + "junos:seconds": "120409" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "159264" + } + ], + "input-pps": [ + { + "data": "114" + } + ], + "output-bps": [ + { + "data": "202368" + } + ], + "output-pps": [ + { + "data": "121" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/6.0" + } + ], + "local-index": [ + { + "data": "362" + } + ], + "snmp-index": [ + { + "data": "583" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3977527763" + } + ], + "output-packets": [ + { + "data": "4015744368" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae2.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "172" + } + ], + "snmp-index": [ + { + "data": "549" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-auto-negotiation": [ + { + "data": "disabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:c1" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:73" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:27 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368208" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "26821960" + } + ], + "input-pps": [ + { + "data": "3837" + } + ], + "output-bps": [ + { + "data": "6019504" + } + ], + "output-pps": [ + { + "data": "2573" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/7.0" + } + ], + "local-index": [ + { + "data": "363" + } + ], + "snmp-index": [ + { + "data": "584" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "58445714667" + } + ], + "output-packets": [ + { + "data": "39992833205" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae1.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "173" + } + ], + "snmp-index": [ + { + "data": "550" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:c0" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:74" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:30 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368205" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "92168" + } + ], + "input-pps": [ + { + "data": "42" + } + ], + "output-bps": [ + { + "data": "14496" + } + ], + "output-pps": [ + { + "data": "13" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/8.0" + } + ], + "local-index": [ + { + "data": "364" + } + ], + "snmp-index": [ + { + "data": "572" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "648024952" + } + ], + "output-packets": [ + { + "data": "423643815" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "174" + } + ], + "snmp-index": [ + { + "data": "551" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:c0" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:75" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:32 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368203" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "31176" + } + ], + "input-pps": [ + { + "data": "19" + } + ], + "output-bps": [ + { + "data": "43072" + } + ], + "output-pps": [ + { + "data": "35" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/1/9.0" + } + ], + "local-index": [ + { + "data": "365" + } + ], + "snmp-index": [ + { + "data": "585" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "538944312" + } + ], + "output-packets": [ + { + "data": "365363904" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "129" + } + ], + "snmp-index": [ + { + "data": "552" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "2Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:c0" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:c0" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:49:32 UTC (17w1d 00:03 ago)", + "attributes": { + "junos:seconds": "10368203" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "123344" + } + ], + "input-pps": [ + { + "data": "61" + } + ], + "output-bps": [ + { + "data": "57616" + } + ], + "output-pps": [ + { + "data": "48" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "local-index": [ + { + "data": "345" + } + ], + "snmp-index": [ + { + "data": "573" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "1186222026" + } + ], + "input-pps": [ + { + "data": "61" + } + ], + "input-bytes": [ + { + "data": "373800901991" + } + ], + "input-bps": [ + { + "data": "123344" + } + ], + "output-packets": [ + { + "data": "788260493" + } + ], + "output-pps": [ + { + "data": "47" + } + ], + "output-bytes": [ + { + "data": "288580838139" + } + ], + "output-bps": [ + { + "data": "57048" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.32/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.32" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "130" + } + ], + "snmp-index": [ + { + "data": "553" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:c1" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:c1" + } + ], + "interface-flapped": [ + { + "data": "2024-07-22 14:44:56 UTC (10w3d 23:07 ago)", + "attributes": { + "junos:seconds": "6390479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "5358280" + } + ], + "input-pps": [ + { + "data": "1680" + } + ], + "output-bps": [ + { + "data": "5022688" + } + ], + "output-pps": [ + { + "data": "1783" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "local-index": [ + { + "data": "346" + } + ], + "snmp-index": [ + { + "data": "586" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "300mbps" + } + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "58445344383" + } + ], + "input-pps": [ + { + "data": "1680" + } + ], + "input-bytes": [ + { + "data": "48181442270286" + } + ], + "input-bps": [ + { + "data": "5358280" + } + ], + "output-packets": [ + { + "data": "39992462875" + } + ], + "output-pps": [ + { + "data": "1627" + } + ], + "output-bytes": [ + { + "data": "19153538511046" + } + ], + "output-bps": [ + { + "data": "4715552" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.34/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.34" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "131" + } + ], + "snmp-index": [ + { + "data": "554" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:c2" + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:c2" + } + ], + "interface-flapped": [ + { + "data": "2024-10-03 04:26:08 UTC (1d 09:26 ago)", + "attributes": { + "junos:seconds": "120407" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "968544" + } + ], + "input-pps": [ + { + "data": "158" + } + ], + "output-bps": [ + { + "data": "90216" + } + ], + "output-pps": [ + { + "data": "70" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae2.0" + } + ], + "local-index": [ + { + "data": "347" + } + ], + "snmp-index": [ + { + "data": "587" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "3977182823" + } + ], + "input-pps": [ + { + "data": "158" + } + ], + "input-bytes": [ + { + "data": "1533256415071" + } + ], + "input-bps": [ + { + "data": "968544" + } + ], + "output-packets": [ + { + "data": "4015405042" + } + ], + "output-pps": [ + { + "data": "70" + } + ], + "output-bytes": [ + { + "data": "1862702712836" + } + ], + "output-bps": [ + { + "data": "89736" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.36/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.36" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "133" + } + ], + "snmp-index": [ + { + "data": "502" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "5a:00:bb:8c:11:11", + "attributes": { + "junos:format": "MAC 5a:00:bb:8c:11:11" + } + } + ], + "hardware-physical-address": [ + { + "data": "5a:00:bb:8c:11:11", + "attributes": { + "junos:format": "MAC 5a:00:bb:8c:11:11" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "132" + } + ], + "snmp-index": [ + { + "data": "501" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "clocking": [ + { + "data": "1" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "5" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "em0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "2" + } + ], + "snmp-index": [ + { + "data": "17" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:47:47 UTC (17w1d 00:05 ago)", + "attributes": { + "junos:seconds": "10368308" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "961410560" + } + ], + "output-packets": [ + { + "data": "914022619" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em0.0" + } + ], + "local-index": [ + { + "data": "3" + } + ], + "snmp-index": [ + { + "data": "18" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "961410561" + } + ], + "output-packets": [ + { + "data": "914022620" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "fec0::/64" + } + ], + "ifa-local": [ + { + "data": "fec0::a:0:0:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "65" + } + ], + "snmp-index": [ + { + "data": "23" + } + ], + "description": [ + { + "data": "UMI : Internal Backplane Interface" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-no-carrier": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:02:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:02:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:02:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:02:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:46:44 UTC (17w1d 00:06 ago)", + "attributes": { + "junos:seconds": "10368371" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em1.0" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "24" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "138" + } + ], + "snmp-index": [ + { + "data": "578" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "140" + } + ], + "snmp-index": [ + { + "data": "603" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "141" + } + ], + "snmp-index": [ + { + "data": "604" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "142" + } + ], + "snmp-index": [ + { + "data": "605" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "143" + } + ], + "snmp-index": [ + { + "data": "606" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "144" + } + ], + "snmp-index": [ + { + "data": "607" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "145" + } + ], + "snmp-index": [ + { + "data": "608" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "146" + } + ], + "snmp-index": [ + { + "data": "609" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "147" + } + ], + "snmp-index": [ + { + "data": "610" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "64" + } + ], + "snmp-index": [ + { + "data": "1" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:ff", + "attributes": { + "junos:format": "MAC 58:00:bb:8c:11:ff" + } + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:ff", + "attributes": { + "junos:format": "MAC 58:00:bb:8c:11:ff" + } + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:46:44 UTC (17w1d 00:06 ago)", + "attributes": { + "junos:seconds": "10368371" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "5242426" + } + ], + "output-packets": [ + { + "data": "398224" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "13" + } + ], + "description": [ + { + "data": "MGMT : OOB : DHAK94-MS1 Gig 0/1" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "5242426" + } + ], + "output-packets": [ + { + "data": "398224" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "3" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-master-only": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.209.80/28" + } + ], + "ifa-local": [ + { + "data": "123.65.209.85" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.209.95" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "10" + } + ], + "snmp-index": [ + { + "data": "8" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "11" + } + ], + "snmp-index": [ + { + "data": "9" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "136" + } + ], + "snmp-index": [ + { + "data": "505" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:f0", + "attributes": { + "junos:format": "MAC 58:00:bb:8c:11:f0" + } + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:f0", + "attributes": { + "junos:format": "MAC 58:00:bb:8c:11:f0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "128" + } + ], + "snmp-index": [ + { + "data": "574" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "00:00:00:00:00:00", + "attributes": { + "junos:format": "MAC 00:00:00:00:00:00" + } + } + ], + "hardware-physical-address": [ + { + "data": "00:00:00:00:00:00", + "attributes": { + "junos:format": "MAC 00:00:00:00:00:00" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "local-index": [ + { + "data": "324" + } + ], + "snmp-index": [ + { + "data": "575" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "unknown" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "None" + } + ], + "irb-bridge": [ + { + "data": "None" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.127" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "6" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-loopback": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "7322069" + } + ], + "output-packets": [ + { + "data": "7322069" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "local-index": [ + { + "data": "322" + } + ], + "snmp-index": [ + { + "data": "16" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "220" + } + ], + "output-packets": [ + { + "data": "220" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "123.65.226.112" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "49.0123.0065.0226.0112" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "ifa-local": [ + { + "data": "fe80::5a00:bb0f:fc8c:11ff" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "local-index": [ + { + "data": "321" + } + ], + "snmp-index": [ + { + "data": "21" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "127.0.0.1" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "local-index": [ + { + "data": "320" + } + ], + "snmp-index": [ + { + "data": "22" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "7321849" + } + ], + "output-packets": [ + { + "data": "7321849" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "4" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "LSI" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1660387" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "local-index": [ + { + "data": "337" + } + ], + "snmp-index": [ + { + "data": "602" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "local-index": [ + { + "data": "338" + } + ], + "snmp-index": [ + { + "data": "595" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3362335" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "local-index": [ + { + "data": "339" + } + ], + "snmp-index": [ + { + "data": "596" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "local-index": [ + { + "data": "340" + } + ], + "snmp-index": [ + { + "data": "597" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "local-index": [ + { + "data": "341" + } + ], + "snmp-index": [ + { + "data": "598" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "local-index": [ + { + "data": "342" + } + ], + "snmp-index": [ + { + "data": "599" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "58604903" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "local-index": [ + { + "data": "343" + } + ], + "snmp-index": [ + { + "data": "600" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "local-index": [ + { + "data": "344" + } + ], + "snmp-index": [ + { + "data": "601" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "22" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "me0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "1" + } + ], + "snmp-index": [ + { + "data": "33" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:0b", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:0b" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:00:00:00:0b", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:0b" + } + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:46:44 UTC (17w1d 00:06 ago)", + "attributes": { + "junos:seconds": "10368371" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "373628" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "me0.0" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "34" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "373628" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "66" + } + ], + "snmp-index": [ + { + "data": "12" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "26" + } + ], + "snmp-index": [ + { + "data": "11" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "25" + } + ], + "snmp-index": [ + { + "data": "10" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "134" + } + ], + "snmp-index": [ + { + "data": "503" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "58:00:bb:8c:11:b0", + "attributes": { + "junos:format": "MAC 58:00:bb:8c:11:b0" + } + } + ], + "hardware-physical-address": [ + { + "data": "58:00:bb:8c:11:b0", + "attributes": { + "junos:format": "MAC 58:00:bb:8c:11:b0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "135" + } + ], + "snmp-index": [ + { + "data": "504" + } + ], + "if-type": [ + { + "data": "PPPoE" + } + ], + "link-level-type": [ + { + "data": "PPPoE" + } + ], + "mtu": [ + { + "data": "1532" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "139" + } + ], + "snmp-index": [ + { + "data": "579" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Remote-BEB" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "12" + } + ], + "snmp-index": [ + { + "data": "7" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "137" + } + ], + "snmp-index": [ + { + "data": "576" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + } + ] + } + ] + }, + "show interfaces routing-instance all terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.2R0/junos-interface", + "junos:style": "vrf" + }, + "physical-interface": [ + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.2950" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.2953" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.132.201/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.132.203/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/9.3100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.137/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.26.61/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.26.69/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.26.57/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.26.65/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.32/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.34/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.36/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "em0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "em1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.1/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.209.85/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_services__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.226.112" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0226.0112", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::5a00:bb0f:fc8c:11ff" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-COMMSVCS" + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RED" + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ] + }, + "show vlans | display json": [], + "show lldp neighbors | display json": { + "lldp-neighbors-information": [ + { + "attributes": { + "junos:style": "brief" + }, + "lldp-neighbor-information": [ + { + "lldp-local-port-id": [ + { + "data": "ge-1/1/8" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:8a:b0:8b:aa:08" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "ge-1/1/8" + } + ], + "lldp-remote-system-name": [ + { + "data": "1-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-1/1/9" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:8a:b0:8b:aa:08" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "ge-1/1/9" + } + ], + "lldp-remote-system-name": [ + { + "data": "1-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-1/1/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "44:b6:be:4c:4d:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Twe1/0/41" + } + ], + "lldp-remote-system-name": [ + { + "data": "B31.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-1/0/9" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "44:b6:be:4c:4d:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Twe1/0/42" + } + ], + "lldp-remote-system-name": [ + { + "data": "831.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-1/1/7" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae1" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "64:64:9b:68:34:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "ge-11/2/0" + } + ], + "lldp-remote-system-name": [ + { + "data": "X1-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-1/1/6" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae2" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "f0:1c:2d:c9:4d:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "ge-1/1/6" + } + ], + "lldp-remote-system-name": [ + { + "data": "8-PE1.mpls0.acme.net" + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_4.json b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_4.json new file mode 100755 index 00000000..d58da18f --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_4.json @@ -0,0 +1,17541 @@ +{ + "show configuration interfaces | display json": { + "configuration": { + "@": { + "junos:commit-seconds": "1718736572", + "junos:commit-localtime": "2024-06-18 18:49:32 UTC", + "junos:commit-user": "svc-junospace" + }, + "interfaces": { + "interface": [ + { + "name": "ge-1/0/0", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" + } + } + }, + { + "name": "ge-1/0/1", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae1" + } + } + }, + { + "name": "ge-1/0/2", + "description": "a desc" + }, + { + "name": "ge-1/0/3", + "description": "a desc" + }, + { + "name": "ge-1/0/4", + "description": "a desc" + }, + { + "name": "ge-1/0/5", + "description": "a desc" + }, + { + "name": "ge-1/0/6", + "description": "a desc" + }, + { + "name": "ge-1/0/7", + "description": "a desc" + }, + { + "name": "ge-1/0/8", + "description": "a desc" + }, + { + "name": "ge-1/0/9", + "description": "a desc" + }, + { + "name": "ge-1/1/0", + "description": "a desc" + }, + { + "name": "ge-1/1/1", + "description": "a desc" + }, + { + "name": "ge-1/1/2", + "description": "a desc" + }, + { + "name": "ge-1/1/3", + "description": "a desc" + }, + { + "name": "ge-1/1/4", + "description": "a desc" + }, + { + "name": "ge-1/1/5", + "description": "a desc" + }, + { + "name": "ge-1/1/6", + "description": "a desc" + }, + { + "name": "ge-1/1/7", + "description": "a desc" + }, + { + "name": "ge-1/1/8", + "description": "a desc" + }, + { + "name": "ge-1/1/9", + "description": "a desc" + }, + { + "name": "ae0", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.177/31" + } + ] + } + } + } + ] + }, + { + "name": "ae1", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.179/31" + } + ] + } + } + } + ] + }, + { + "name": "lo0", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "filter": { + "input": { + "filter-name": "ACME-FW-CPP-01" + } + }, + "address": [ + { + "name": "198.51.100.1/32" + } + ] + }, + "iso": { + "address": [ + { + "name": "49.0123.0065.0226.0002.00" + } + ] + }, + "inet6": { + "filter": { + "input": { + "filter-name": "ACME-FW6-CPP-01" + } + } + } + } + } + ] + } + ] + } + } + }, + "show system information | display json": { + "system-information": [ + { + "hardware-model": [ + { + "data": "mx240" + } + ], + "os-name": [ + { + "data": "junos" + } + ], + "os-version": [ + { + "data": "22.4R3.25" + } + ], + "serial-number": [ + { + "data": "JN12342D2AFC" + } + ], + "host-name": [ + { + "data": "JUNOS_MX240" + } + ] + } + ] + }, + "show interfaces terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-interface", + "junos:style": "terse" + }, + "physical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lc-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-1/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae1.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.177/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.179/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "em0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:1ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0226.0002", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::2a0:a50f:fc82:6e6e" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "mif" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + } + ] + } + ] + }, + "show route protocol direct | display json": { + "route-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-routing" + }, + "route-table": [ + { + "comment": "keepalive", + "table-name": [ + { + "data": "inet.0" + } + ], + "destination-count": [ + { + "data": "295" + } + ], + "total-route-count": [ + { + "data": "295" + } + ], + "active-route-count": [ + { + "data": "295" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "198.51.100.1/32" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "20w5d 01:56:06", + "attributes": { + "junos:seconds": "12534966" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.228.176/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "12w5d 21:23:10", + "attributes": { + "junos:seconds": "7766590" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.228.178/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "11w5d 21:43:00", + "attributes": { + "junos:seconds": "7162980" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae1.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "inet.3" + } + ], + "destination-count": [ + { + "data": "104" + } + ], + "total-route-count": [ + { + "data": "104" + } + ], + "active-route-count": [ + { + "data": "104" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "iso.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "49.0123.0065.0226.0002" + } + ], + "rt-prefix-length": [ + { + "data": "72", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "20w5d 01:56:06", + "attributes": { + "junos:seconds": "12534966" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "mpls.0" + } + ], + "destination-count": [ + { + "data": "6" + } + ], + "total-route-count": [ + { + "data": "6" + } + ], + "active-route-count": [ + { + "data": "6" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn.0" + } + ], + "destination-count": [ + { + "data": "865820" + } + ], + "total-route-count": [ + { + "data": "1699403" + } + ], + "active-route-count": [ + { + "data": "384347" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "961527" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "inet6.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "2" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "fe80::2a0:a50f:fc82:6e6e/128", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "20w5d 01:56:08", + "attributes": { + "junos:seconds": "12534968" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "inet6.3" + } + ], + "destination-count": [ + { + "data": "104" + } + ], + "total-route-count": [ + { + "data": "104" + } + ], + "active-route-count": [ + { + "data": "104" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "134" + } + ], + "total-route-count": [ + { + "data": "134" + } + ], + "active-route-count": [ + { + "data": "134" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn-inet6.0" + } + ], + "destination-count": [ + { + "data": "211" + } + ], + "total-route-count": [ + { + "data": "227" + } + ], + "active-route-count": [ + { + "data": "211" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.mvpn.0" + } + ], + "destination-count": [ + { + "data": "6" + } + ], + "total-route-count": [ + { + "data": "6" + } + ], + "active-route-count": [ + { + "data": "6" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.mvpn-inet6.0" + } + ], + "destination-count": [ + { + "data": "6" + } + ], + "total-route-count": [ + { + "data": "6" + } + ], + "active-route-count": [ + { + "data": "6" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + } + ] + } + ] + }, + "show interfaces | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-interface", + "junos:style": "normal" + }, + "physical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "151" + } + ], + "snmp-index": [ + { + "data": "513" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:8b:c0" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:95" + } + ], + "interface-flapped": [ + { + "data": "2024-07-06 16:31:11 UTC (12w5d 21:23 ago)", + "attributes": { + "junos:seconds": "7766603" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "79984" + } + ], + "input-pps": [ + { + "data": "71" + } + ], + "output-bps": [ + { + "data": "234664" + } + ], + "output-pps": [ + { + "data": "35" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.0" + } + ], + "local-index": [ + { + "data": "335" + } + ], + "snmp-index": [ + { + "data": "554" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "237274647" + } + ], + "output-packets": [ + { + "data": "200277639" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lc-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "148" + } + ], + "snmp-index": [ + { + "data": "506" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-1/0/0.32769" + } + ], + "local-index": [ + { + "data": "331" + } + ], + "snmp-index": [ + { + "data": "507" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "150" + } + ], + "snmp-index": [ + { + "data": "509" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "local-index": [ + { + "data": "334" + } + ], + "snmp-index": [ + { + "data": "511" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "149" + } + ], + "snmp-index": [ + { + "data": "508" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "local-index": [ + { + "data": "332" + } + ], + "snmp-index": [ + { + "data": "510" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "local-index": [ + { + "data": "333" + } + ], + "snmp-index": [ + { + "data": "560" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "152" + } + ], + "snmp-index": [ + { + "data": "512" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:8b:c1" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:96" + } + ], + "interface-flapped": [ + { + "data": "2024-07-13 16:11:20 UTC (11w5d 21:43 ago)", + "attributes": { + "junos:seconds": "7162994" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "48704" + } + ], + "input-pps": [ + { + "data": "44" + } + ], + "output-bps": [ + { + "data": "197008" + } + ], + "output-pps": [ + { + "data": "47" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/1.0" + } + ], + "local-index": [ + { + "data": "336" + } + ], + "snmp-index": [ + { + "data": "555" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "430205667" + } + ], + "output-packets": [ + { + "data": "400181729" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae1.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "153" + } + ], + "snmp-index": [ + { + "data": "516" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:86:97" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:97" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "154" + } + ], + "snmp-index": [ + { + "data": "517" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:86:98" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:98" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "155" + } + ], + "snmp-index": [ + { + "data": "518" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:86:99" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:99" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "156" + } + ], + "snmp-index": [ + { + "data": "519" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:86:9a" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:9a" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "157" + } + ], + "snmp-index": [ + { + "data": "521" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:86:9b" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:9b" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "158" + } + ], + "snmp-index": [ + { + "data": "514" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:86:9c" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:9c" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "159" + } + ], + "snmp-index": [ + { + "data": "515" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:86:9d" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:9d" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "160" + } + ], + "snmp-index": [ + { + "data": "520" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:86:9e" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:86:9e" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "161" + } + ], + "snmp-index": [ + { + "data": "522" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:3a" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:3a" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "162" + } + ], + "snmp-index": [ + { + "data": "523" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:3b" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:3b" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "163" + } + ], + "snmp-index": [ + { + "data": "524" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:3c" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:3c" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "164" + } + ], + "snmp-index": [ + { + "data": "525" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:3d" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:3d" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "165" + } + ], + "snmp-index": [ + { + "data": "526" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:3e" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:3e" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "166" + } + ], + "snmp-index": [ + { + "data": "527" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:3f" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:3f" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "167" + } + ], + "snmp-index": [ + { + "data": "528" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:40" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:40" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "168" + } + ], + "snmp-index": [ + { + "data": "529" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:41" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:41" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "169" + } + ], + "snmp-index": [ + { + "data": "530" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:42" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:42" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "170" + } + ], + "snmp-index": [ + { + "data": "531" + } + ], + "description": [ + { + "data": "*UMI*" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:87:43" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:87:43" + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:58:17 UTC (20w5d 01:56 ago)", + "attributes": { + "junos:seconds": "12534977" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "128" + } + ], + "snmp-index": [ + { + "data": "538" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:8b:c0" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:8b:c0" + } + ], + "interface-flapped": [ + { + "data": "2024-07-06 16:31:20 UTC (12w5d 21:23 ago)", + "attributes": { + "junos:seconds": "7766594" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "79984" + } + ], + "input-pps": [ + { + "data": "71" + } + ], + "output-bps": [ + { + "data": "236200" + } + ], + "output-pps": [ + { + "data": "35" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "local-index": [ + { + "data": "323" + } + ], + "snmp-index": [ + { + "data": "552" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "236822960" + } + ], + "input-pps": [ + { + "data": "71" + } + ], + "input-bytes": [ + { + "data": "28249226051" + } + ], + "input-bps": [ + { + "data": "79984" + } + ], + "output-packets": [ + { + "data": "199825987" + } + ], + "output-pps": [ + { + "data": "64" + } + ], + "output-bytes": [ + { + "data": "56652122012" + } + ], + "output-bps": [ + { + "data": "462304" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.176/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.177" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "129" + } + ], + "snmp-index": [ + { + "data": "532" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:8b:c1" + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:8b:c1" + } + ], + "interface-flapped": [ + { + "data": "2024-07-13 16:11:30 UTC (11w5d 21:43 ago)", + "attributes": { + "junos:seconds": "7162984" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "48704" + } + ], + "input-pps": [ + { + "data": "44" + } + ], + "output-bps": [ + { + "data": "199072" + } + ], + "output-pps": [ + { + "data": "47" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "local-index": [ + { + "data": "324" + } + ], + "snmp-index": [ + { + "data": "553" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "429753952" + } + ], + "input-pps": [ + { + "data": "44" + } + ], + "input-bytes": [ + { + "data": "47977713768" + } + ], + "input-bps": [ + { + "data": "48704" + } + ], + "output-packets": [ + { + "data": "399730087" + } + ], + "output-pps": [ + { + "data": "152" + } + ], + "output-bytes": [ + { + "data": "127438759409" + } + ], + "output-bps": [ + { + "data": "335648" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.178/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.179" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "131" + } + ], + "snmp-index": [ + { + "data": "502" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:84:11", + "attributes": { + "junos:format": "MAC 64:64:9b:63:84:11" + } + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:84:11", + "attributes": { + "junos:format": "MAC 64:64:9b:63:84:11" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "130" + } + ], + "snmp-index": [ + { + "data": "501" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "clocking": [ + { + "data": "1" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "5" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "em0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "8" + } + ], + "snmp-index": [ + { + "data": "17" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:55:07 UTC (20w5d 01:59 ago)", + "attributes": { + "junos:seconds": "12535167" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1161004204" + } + ], + "output-packets": [ + { + "data": "963784991" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em0.0" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "18" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1119252983" + } + ], + "output-packets": [ + { + "data": "963784062" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "fec0::/64" + } + ], + "ifa-local": [ + { + "data": "fec0::a:0:0:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "9" + } + ], + "snmp-index": [ + { + "data": "23" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:01:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:01:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:01:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:01:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:55:07 UTC (20w5d 01:59 ago)", + "attributes": { + "junos:seconds": "12535167" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "25056009" + } + ], + "output-packets": [ + { + "data": "113506386" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em1.0" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "24" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "113505572" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "3" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::200:1ff:fe00:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "fec0::/64" + } + ], + "ifa-local": [ + { + "data": "fec0::a:0:0:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "136" + } + ], + "snmp-index": [ + { + "data": "556" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "138" + } + ], + "snmp-index": [ + { + "data": "561" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "139" + } + ], + "snmp-index": [ + { + "data": "562" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "140" + } + ], + "snmp-index": [ + { + "data": "563" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "141" + } + ], + "snmp-index": [ + { + "data": "564" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "142" + } + ], + "snmp-index": [ + { + "data": "565" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "143" + } + ], + "snmp-index": [ + { + "data": "566" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "144" + } + ], + "snmp-index": [ + { + "data": "567" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "145" + } + ], + "snmp-index": [ + { + "data": "568" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "64" + } + ], + "snmp-index": [ + { + "data": "1" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "00:a0:a5:82:6e:5f", + "attributes": { + "junos:format": "MAC 00:a0:a5:82:6e:5f" + } + } + ], + "hardware-physical-address": [ + { + "data": "00:a0:a5:82:6e:5f", + "attributes": { + "junos:format": "MAC 00:a0:a5:82:6e:5f" + } + } + ], + "interface-flapped": [ + { + "data": "2024-05-12 11:55:07 UTC (20w5d 01:59 ago)", + "attributes": { + "junos:seconds": "12535167" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2813261" + } + ], + "output-packets": [ + { + "data": "451635" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "13" + } + ], + "description": [ + { + "data": "MGMT : OOB : TOKQX4-MS1 Gig 0/5" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2813229" + } + ], + "output-packets": [ + { + "data": "451635" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "10" + } + ], + "snmp-index": [ + { + "data": "8" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "11" + } + ], + "snmp-index": [ + { + "data": "9" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "134" + } + ], + "snmp-index": [ + { + "data": "505" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:8b:f0", + "attributes": { + "junos:format": "MAC 64:64:9b:63:8b:f0" + } + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:8b:f0", + "attributes": { + "junos:format": "MAC 64:64:9b:63:8b:f0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "147" + } + ], + "snmp-index": [ + { + "data": "557" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:8b:c0", + "attributes": { + "junos:format": "MAC 64:64:9b:63:8b:c0" + } + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:8b:c0", + "attributes": { + "junos:format": "MAC 64:64:9b:63:8b:c0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "local-index": [ + { + "data": "326" + } + ], + "snmp-index": [ + { + "data": "558" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x24004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "unknown" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "None" + } + ], + "irb-bridge": [ + { + "data": "None" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.127" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "6" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-loopback": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "44166845" + } + ], + "output-packets": [ + { + "data": "44166844" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "local-index": [ + { + "data": "322" + } + ], + "snmp-index": [ + { + "data": "16" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "165" + } + ], + "output-packets": [ + { + "data": "165" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "198.51.100.1" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "49.0123.0065.0226.0002" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-local": [ + { + "data": "fe80::2a0:a50f:fc82:6e6e" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "local-index": [ + { + "data": "321" + } + ], + "snmp-index": [ + { + "data": "21" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "127.0.0.1" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "local-index": [ + { + "data": "320" + } + ], + "snmp-index": [ + { + "data": "22" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "44166642" + } + ], + "output-packets": [ + { + "data": "44166640" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "4" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "LSI" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "mif" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "146" + } + ], + "snmp-index": [ + { + "data": "570" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "1440" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "65" + } + ], + "snmp-index": [ + { + "data": "12" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "26" + } + ], + "snmp-index": [ + { + "data": "11" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "25" + } + ], + "snmp-index": [ + { + "data": "10" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "132" + } + ], + "snmp-index": [ + { + "data": "503" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "64:64:9b:63:8b:b0", + "attributes": { + "junos:format": "MAC 64:64:9b:63:8b:b0" + } + } + ], + "hardware-physical-address": [ + { + "data": "64:64:9b:63:8b:b0", + "attributes": { + "junos:format": "MAC 64:64:9b:63:8b:b0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "133" + } + ], + "snmp-index": [ + { + "data": "504" + } + ], + "if-type": [ + { + "data": "PPPoE" + } + ], + "link-level-type": [ + { + "data": "PPPoE" + } + ], + "mtu": [ + { + "data": "1532" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "137" + } + ], + "snmp-index": [ + { + "data": "569" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Remote-BEB" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "12" + } + ], + "snmp-index": [ + { + "data": "7" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "135" + } + ], + "snmp-index": [ + { + "data": "559" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + } + ] + } + ] + }, + "show interfaces routing-instance all terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-interface", + "junos:style": "vrf" + }, + "physical-interface": [ + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-1/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.177/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.179/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "em0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "em1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:1ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_services__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0226.0002", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::2a0:a50f:fc82:6e6e" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ] + }, + "show vlans | display json": [], + "show lldp neighbors | display json": { + "lldp-neighbors-information": [ + { + "attributes": { + "junos:style": "brief" + }, + "lldp-neighbor-information": [ + { + "lldp-local-port-id": [ + { + "data": "ge-1/0/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "64:64:9b:62:93:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "ge-11/1/0" + } + ], + "lldp-remote-system-name": [ + { + "data": "PE1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-1/0/1" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae1" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "64:64:9b:62:9b:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "ge-11/1/0" + } + ], + "lldp-remote-system-name": [ + { + "data": "PE2.mpls0.acme.net" + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_5.json b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_5.json new file mode 100755 index 00000000..e208eaa2 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_5.json @@ -0,0 +1,42855 @@ +{ + "show configuration interfaces | display json": { + "configuration": { + "@": { + "junos:commit-seconds": "1727466404", + "junos:commit-localtime": "2024-09-27 19:46:44 UTC", + "junos:commit-user": "oeec" + }, + "interfaces": { + "interface": [ + { + "name": "xe-0/0/0", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 211, + "description": "a desc", + "vlan-id": 211, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.18.169/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-0/0/1", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae17" + } + } + }, + { + "name": "xe-0/0/2", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "mtu": 9100, + "unit": [ + { + "name": 3001, + "description": "a desc", + "vlan-id": 3001, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.29.49/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-0/0/3", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "disable": [ + null + ], + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.37.49/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-0/0/4", + "description": "a desc", + "mtu": 1522, + "encapsulation": "ethernet-ccc", + "unit": [ + { + "name": 0, + "description": "a desc", + "bandwidth": "500m" + } + ] + }, + { + "name": "xe-0/0/5", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 311, + "description": "a desc", + "vlan-id": 311, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.18.177/30" + } + ] + } + } + }, + { + "name": 312, + "description": "a desc", + "vlan-id": 312, + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.19.229/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-0/0/6", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae99" + } + } + }, + { + "name": "xe-0/0/7", + "description": "a desc", + "gigether-options": { + "no-auto-negotiation": [ + null + ], + "ieee-802.3ad": { + "bundle": "ae7" + } + } + }, + { + "name": "xe-0/0/8", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" + } + } + }, + { + "name": "xe-0/0/9", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" + } + } + }, + { + "name": "ge-0/2/0", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 2950, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "a desc", + "vlan-id": 2950, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-NETMGMT" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.221.2/24", + "vrrp-group": [ + { + "name": 1, + "virtual-address": [ + "123.65.221.1" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } + }, + { + "name": 2953, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "a desc", + "vlan-id": 2953, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.132.211/29", + "vrrp-group": [ + { + "name": 3, + "virtual-address": [ + "123.65.132.209" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } + } + ] + }, + { + "name": "ge-0/2/1", + "disable": [ + null + ] + }, + { + "name": "ge-0/2/2", + "disable": [ + null + ] + }, + { + "name": "ge-0/2/3", + "disable": [ + null + ] + }, + { + "name": "ge-0/2/4", + "disable": [ + null + ] + }, + { + "name": "ge-0/2/5", + "disable": [ + null + ] + }, + { + "name": "ge-0/2/6", + "disable": [ + null + ] + }, + { + "name": "ge-0/2/7", + "description": "a desc", + "mtu": 1522, + "encapsulation": "ethernet-ccc", + "unit": [ + { + "name": 0, + "description": "a desc" + } + ] + }, + { + "name": "ge-0/2/8", + "disable": [ + null + ] + }, + { + "name": "ge-0/2/9", + "gigether-options": { + "no-auto-negotiation": [ + null + ] + } + }, + { + "name": "ge-0/3/0", + "disable": [ + null + ] + }, + { + "name": "ge-0/3/1", + "disable": [ + null + ] + }, + { + "name": "ge-0/3/2", + "disable": [ + null + ] + }, + { + "name": "ge-0/3/3", + "description": "a desc", + "mtu": 1522, + "encapsulation": "ethernet-ccc", + "unit": [ + { + "name": 0, + "description": "a desc" + } + ] + }, + { + "name": "ge-0/3/4", + "disable": [ + null + ] + }, + { + "name": "ge-0/3/5", + "disable": [ + null + ] + }, + { + "name": "ge-0/3/6", + "disable": [ + null + ] + }, + { + "name": "ge-0/3/7", + "disable": [ + null + ] + }, + { + "name": "ge-0/3/8", + "disable": [ + null + ] + }, + { + "name": "ge-0/3/9", + "disable": [ + null + ] + }, + { + "name": "xe-1/0/0", + "disable": [ + null + ] + }, + { + "name": "xe-1/0/2", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "disable": [ + null + ], + "flexible-vlan-tagging": [ + null + ] + }, + { + "name": "xe-1/0/3", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3100, + "description": "a desc", + "vlan-id": 3100, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.16.153/29" + } + ] + } + } + }, + { + "name": 3101, + "description": "a desc", + "vlan-id": 3101, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.25.221/30" + } + ] + } + } + }, + { + "name": 3102, + "description": "a desc", + "vlan-id": 3102, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.25.229/30" + } + ] + } + } + }, + { + "name": 3103, + "description": "a desc", + "vlan-id": 3103, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.25.217/30" + } + ] + } + } + }, + { + "name": 3104, + "description": "a desc", + "vlan-id": 3104, + "family": { + "inet": { + "no-redirects": [ + null + ], + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.25.225/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-1/0/4", + "description": "a desc", + "mtu": 1522, + "encapsulation": "ethernet-ccc", + "unit": [ + { + "name": 0, + "description": "a desc" + } + ] + }, + { + "name": "xe-1/0/5", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 411, + "description": "a desc", + "vlan-id": 411, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.18.185/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-1/0/6", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae99" + } + } + }, + { + "name": "xe-1/0/7", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 2000, + "description": "a desc", + "vlan-id": 2000, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-INTERNET" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.5.36/31" + } + ] + } + } + } + ] + }, + { + "name": "xe-1/0/8", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" + } + } + }, + { + "name": "xe-1/0/9", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" + } + } + }, + { + "name": "xe-1/2/0", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae5" + } + }, + "optics-options": { + "wavelength": "1542.94" + } + }, + { + "name": "xe-1/3/0", + "description": "a desc", + "mtu": 1522, + "encapsulation": "ethernet-ccc", + "unit": [ + { + "name": 0, + "description": "a desc" + } + ] + }, + { + "name": "ae0", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.242/31" + } + ] + } + } + } + ] + }, + { + "name": "ae3", + "disable": [ + null + ], + "flexible-vlan-tagging": [ + null + ], + "mtu": 1610, + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ], + "@active": { + "inactive": true + } + } + } + }, + { + "name": "ae5", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.71/31" + } + ] + } + } + } + ] + }, + { + "name": "ae7", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.31/31" + } + ] + } + } + } + ] + }, + { + "name": "ae17", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "disable": [ + null + ], + "flexible-vlan-tagging": [ + null + ], + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 2100, + "description": "a desc", + "vlan-id": 2100, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-INTERNET" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.6.18/29" + } + ] + } + } + } + ] + }, + { + "name": "ae99", + "description": "a desc", + "per-unit-scheduler": [ + null + ], + "flexible-vlan-tagging": [ + null + ], + "mtu": 1610, + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + } + }, + { + "name": "lo0", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "filter": { + "input": { + "filter-name": "ACME-FW-CPP-01" + } + }, + "address": [ + { + "name": "198.51.100.1/32" + } + ] + }, + "iso": { + "address": [ + { + "name": "49.0123.0065.0226.0017.00" + } + ] + }, + "inet6": { + "filter": { + "input": { + "filter-name": "ACME-FW6-CPP-01" + } + } + } + } + } + ] + } + ] + } + } + }, + "show system information | display json": { + "system-information": [ + { + "hardware-model": [ + { + "data": "mx480" + } + ], + "os-name": [ + { + "data": "junos" + } + ], + "os-version": [ + { + "data": "22.4R3.25" + } + ], + "serial-number": [ + { + "data": "JN124F540AFB" + } + ], + "host-name": [ + { + "data": "JUNOS_MX480" + } + ] + } + ] + }, + "show interfaces terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-interface", + "junos:style": "terse" + }, + "physical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/0.211" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.169/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/1.2100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.2100" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/2.3001" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.29.49/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/3" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.49/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/4.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/5.311" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.177/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.312" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.229/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/6.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae7.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/9.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gr-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ip-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "lt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "mt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pd-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pe-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ud-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ut-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "vt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vt-0/0/10.2097152" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/2/0.2950" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.221.1/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.221.2/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/0.2953" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.132.209/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.132.211/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/0.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/1" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/2" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/3" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/4" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/5" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/6" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/2/7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/8" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/0" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/1" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/2" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/3/3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/4" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/5" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/6" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/7" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/8" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/9" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "lc-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-1/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/0" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/1.16386" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/2" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/2.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/3.3100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.16.153/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.25.221/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.25.229/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.25.217/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.25.225/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/4.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/5.411" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.185/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/5.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/6.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/7.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.5.36/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/9.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/2/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/2/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae5.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/3/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/3/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.242/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae3" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae3.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.71/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.31/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae17" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae17.2100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.6.18/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae17.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae99" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae99.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "em0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em0.32768" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "192.168.1.1/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "igb0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "igb0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:1ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ixlv0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ixlv0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0226.0017", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::6af3:8e0f:fc43:a682" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "mif" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + } + ] + } + ] + }, + "show route protocol direct | display json": { + "route-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-routing" + }, + "route-table": [ + { + "comment": "keepalive", + "table-name": [ + { + "data": "inet.0" + } + ], + "destination-count": [ + { + "data": "304" + } + ], + "total-route-count": [ + { + "data": "304" + } + ], + "active-route-count": [ + { + "data": "296" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "8" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "198.51.100.1/32" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:53", + "attributes": { + "junos:seconds": "3551693" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.228.30/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:53", + "attributes": { + "junos:seconds": "3551693" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae7.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.228.242/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "3w6d 00:52:05", + "attributes": { + "junos:seconds": "2335925" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.229.70/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w0d 02:30:26", + "attributes": { + "junos:seconds": "3033026" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae5.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "inet.3" + } + ], + "destination-count": [ + { + "data": "97" + } + ], + "total-route-count": [ + { + "data": "97" + } + ], + "active-route-count": [ + { + "data": "97" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "INTERNET.inet.0" + } + ], + "destination-count": [ + { + "data": "211107" + } + ], + "total-route-count": [ + { + "data": "1349451" + } + ], + "active-route-count": [ + { + "data": "211005" + } + ], + "holddown-route-count": [ + { + "data": "102" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.5.36/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:53", + "attributes": { + "junos:seconds": "3551693" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-1/0/7.2000" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-CORP.inet.0" + } + ], + "destination-count": [ + { + "data": "7592" + } + ], + "total-route-count": [ + { + "data": "41813" + } + ], + "active-route-count": [ + { + "data": "7580" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "389" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.16.152/29" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-1/0/3.3100" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.18.168/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/0.211" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.18.176/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/5.311" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.18.184/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-1/0/5.411" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.29.48/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3001" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.132.208/29" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-0/2/0.2953" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DCI.inet.0" + } + ], + "destination-count": [ + { + "data": "34" + } + ], + "total-route-count": [ + { + "data": "129" + } + ], + "active-route-count": [ + { + "data": "34" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.19.228/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/5.312" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DEVICES.inet.0" + } + ], + "destination-count": [ + { + "data": "761" + } + ], + "total-route-count": [ + { + "data": "3975" + } + ], + "active-route-count": [ + { + "data": "761" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.25.224/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-1/0/3.3104" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-GUEST.inet.0" + } + ], + "destination-count": [ + { + "data": "887" + } + ], + "total-route-count": [ + { + "data": "4758" + } + ], + "active-route-count": [ + { + "data": "887" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.25.220/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-1/0/3.3101" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-IND.inet.0" + } + ], + "destination-count": [ + { + "data": "769" + } + ], + "total-route-count": [ + { + "data": "4029" + } + ], + "active-route-count": [ + { + "data": "768" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "1" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.25.228/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-1/0/3.3102" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NETMGMT.inet.0" + } + ], + "destination-count": [ + { + "data": "126" + } + ], + "total-route-count": [ + { + "data": "512" + } + ], + "active-route-count": [ + { + "data": "126" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.221.0/24" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-0/2/0.2950" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RED.inet.0" + } + ], + "destination-count": [ + { + "data": "213" + } + ], + "total-route-count": [ + { + "data": "878" + } + ], + "active-route-count": [ + { + "data": "213" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-USER.inet.0" + } + ], + "destination-count": [ + { + "data": "848" + } + ], + "total-route-count": [ + { + "data": "4486" + } + ], + "active-route-count": [ + { + "data": "848" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.25.216/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-1/0/3.3103" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "iso.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "49.0123.0065.0226.0017" + } + ], + "rt-prefix-length": [ + { + "data": "72", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:54", + "attributes": { + "junos:seconds": "3551694" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "mpls.0" + } + ], + "destination-count": [ + { + "data": "158" + } + ], + "total-route-count": [ + { + "data": "158" + } + ], + "active-route-count": [ + { + "data": "158" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn.0" + } + ], + "destination-count": [ + { + "data": "703169" + } + ], + "total-route-count": [ + { + "data": "1408597" + } + ], + "active-route-count": [ + { + "data": "703169" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "inet6.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "2" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "fe80::6af3:8e0f:fc43:a682/128", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "5w6d 02:34:56", + "attributes": { + "junos:seconds": "3551696" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "INTERNET.inet6.0" + } + ], + "destination-count": [ + { + "data": "40" + } + ], + "total-route-count": [ + { + "data": "97" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "96" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-COMMSVCS.inet6.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-CORP.inet6.0" + } + ], + "destination-count": [ + { + "data": "14" + } + ], + "total-route-count": [ + { + "data": "55" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "54" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DCI.inet6.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DEVICES.inet6.0" + } + ], + "destination-count": [ + { + "data": "19" + } + ], + "total-route-count": [ + { + "data": "67" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "66" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-GUEST.inet6.0" + } + ], + "destination-count": [ + { + "data": "20" + } + ], + "total-route-count": [ + { + "data": "71" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "70" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-IND.inet6.0" + } + ], + "destination-count": [ + { + "data": "13" + } + ], + "total-route-count": [ + { + "data": "51" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "50" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NETMGMT.inet6.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RED.inet6.0" + } + ], + "destination-count": [ + { + "data": "13" + } + ], + "total-route-count": [ + { + "data": "51" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "50" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-USER.inet6.0" + } + ], + "destination-count": [ + { + "data": "13" + } + ], + "total-route-count": [ + { + "data": "51" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "50" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "5" + } + ], + "total-route-count": [ + { + "data": "15" + } + ], + "active-route-count": [ + { + "data": "5" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-F07058PE1-F31554PE1-1.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "4" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-F07058PE1-F31554PE1-2.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "4" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-F07058PE1-F31554PE1-3.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "4" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-F08734PE1-F07058PE1-1.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "4" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2EXT-F08734PE1-F07058PE1-1.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "4" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn-inet6.0" + } + ], + "destination-count": [ + { + "data": "211" + } + ], + "total-route-count": [ + { + "data": "436" + } + ], + "active-route-count": [ + { + "data": "0" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "436" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-F07058PE1-F31554PE1-1.l2id.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "5" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-F07058PE1-F31554PE1-2.l2id.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "5" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-F07058PE1-F31554PE1-3.l2id.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "5" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-F08734PE1-F07058PE1-1.l2id.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "5" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2EXT-F08734PE1-F07058PE1-1.l2id.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "5" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + } + ] + } + ] + }, + "show interfaces | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-interface", + "junos:style": "normal" + }, + "physical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "154" + } + ], + "snmp-index": [ + { + "data": "506" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "local-index": [ + { + "data": "368" + } + ], + "snmp-index": [ + { + "data": "507" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "164" + } + ], + "snmp-index": [ + { + "data": "509" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "369" + } + ], + "snmp-index": [ + { + "data": "511" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "163" + } + ], + "snmp-index": [ + { + "data": "508" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "370" + } + ], + "snmp-index": [ + { + "data": "510" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "local-index": [ + { + "data": "371" + } + ], + "snmp-index": [ + { + "data": "542" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "169" + } + ], + "snmp-index": [ + { + "data": "521" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:08" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:08" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:09 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553839" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1664" + } + ], + "input-pps": [ + { + "data": "4" + } + ], + "output-bps": [ + { + "data": "1456" + } + ], + "output-pps": [ + { + "data": "3" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/0.211" + } + ], + "local-index": [ + { + "data": "377" + } + ], + "snmp-index": [ + { + "data": "630" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.211 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.211 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2631642931" + } + ], + "output-packets": [ + { + "data": "1044164436" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.18.168/30" + } + ], + "ifa-local": [ + { + "data": "123.65.18.169" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.18.171" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0.32767" + } + ], + "local-index": [ + { + "data": "378" + } + ], + "snmp-index": [ + { + "data": "629" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "118391" + } + ], + "output-packets": [ + { + "data": "127955" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "170" + } + ], + "snmp-index": [ + { + "data": "522" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:cd" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:09" + } + ], + "interface-flapped": [ + { + "data": "2024-09-23 00:47:38 UTC (1w4d 13:08 ago)", + "attributes": { + "junos:seconds": "997690" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-remote-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/1.2100" + } + ], + "local-index": [ + { + "data": "379" + } + ], + "snmp-index": [ + { + "data": "655" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "40440860798" + } + ], + "output-packets": [ + { + "data": "9563177627" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.2100" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1.32767" + } + ], + "local-index": [ + { + "data": "380" + } + ], + "snmp-index": [ + { + "data": "650" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2846810" + } + ], + "output-packets": [ + { + "data": "92030" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae17.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "171" + } + ], + "snmp-index": [ + { + "data": "523" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "9100" + } + ], + "mru": [ + { + "data": "9108" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:0a" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:0a" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:09 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553839" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1248" + } + ], + "input-pps": [ + { + "data": "3" + } + ], + "output-bps": [ + { + "data": "481242704" + } + ], + "output-pps": [ + { + "data": "41618" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/2.3001" + } + ], + "local-index": [ + { + "data": "381" + } + ], + "snmp-index": [ + { + "data": "644" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3001 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3001 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1994801778" + } + ], + "output-packets": [ + { + "data": "60709514191" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "9078" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.29.48/30" + } + ], + "ifa-local": [ + { + "data": "123.65.29.49" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.29.51" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.32767" + } + ], + "local-index": [ + { + "data": "382" + } + ], + "snmp-index": [ + { + "data": "645" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "118983" + } + ], + "output-packets": [ + { + "data": "127941" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "172" + } + ], + "snmp-index": [ + { + "data": "524" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:0b" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:0b" + } + ], + "interface-flapped": [ + { + "data": "2024-09-21 00:44:11 UTC (1w6d 13:11 ago)", + "attributes": { + "junos:seconds": "1170697" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "3" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/3.0" + } + ], + "local-index": [ + { + "data": "383" + } + ], + "snmp-index": [ + { + "data": "689" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "11198610647" + } + ], + "output-packets": [ + { + "data": "8579502416" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.37.48/30" + } + ], + "ifa-local": [ + { + "data": "123.65.37.49" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.37.51" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "173" + } + ], + "snmp-index": [ + { + "data": "525" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet-CCC" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:0c" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:0c" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:09 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553839" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "35161784" + } + ], + "output-pps": [ + { + "data": "5266" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/4.0" + } + ], + "local-index": [ + { + "data": "384" + } + ], + "snmp-index": [ + { + "data": "556" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-CCC" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "500mbps" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "1330534529" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "174" + } + ], + "snmp-index": [ + { + "data": "526" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:0d" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:0d" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:09 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553839" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "41063520" + } + ], + "input-pps": [ + { + "data": "11169" + } + ], + "output-bps": [ + { + "data": "2621901512" + } + ], + "output-pps": [ + { + "data": "224289" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/5.311" + } + ], + "local-index": [ + { + "data": "385" + } + ], + "snmp-index": [ + { + "data": "635" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.311 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.311 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "53474417379" + } + ], + "output-packets": [ + { + "data": "61368092308" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.18.176/30" + } + ], + "ifa-local": [ + { + "data": "123.65.18.177" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.18.179" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.312" + } + ], + "local-index": [ + { + "data": "386" + } + ], + "snmp-index": [ + { + "data": "533" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.312 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.312 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "401916" + } + ], + "output-packets": [ + { + "data": "247433" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.19.228/30" + } + ], + "ifa-local": [ + { + "data": "123.65.19.229" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.19.231" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.32767" + } + ], + "local-index": [ + { + "data": "387" + } + ], + "snmp-index": [ + { + "data": "636" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "118389" + } + ], + "output-packets": [ + { + "data": "127950" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "175" + } + ], + "snmp-index": [ + { + "data": "527" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1610" + } + ], + "mru": [ + { + "data": "1618" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-scheduler": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:d0" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:0e" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:09 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553839" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2688" + } + ], + "input-pps": [ + { + "data": "1" + } + ], + "output-bps": [ + { + "data": "1512" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/6.32767" + } + ], + "local-index": [ + { + "data": "389" + } + ], + "snmp-index": [ + { + "data": "671" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3958313" + } + ], + "output-packets": [ + { + "data": "127960" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "176" + } + ], + "snmp-index": [ + { + "data": "518" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:c9" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:0f" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:09 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553839" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2671547712" + } + ], + "input-pps": [ + { + "data": "239113" + } + ], + "output-bps": [ + { + "data": "1247039528" + } + ], + "output-pps": [ + { + "data": "121351" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/7.0" + } + ], + "local-index": [ + { + "data": "390" + } + ], + "snmp-index": [ + { + "data": "675" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "189838221644" + } + ], + "output-packets": [ + { + "data": "191583405968" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae7.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "177" + } + ], + "snmp-index": [ + { + "data": "519" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:c8" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:10" + } + ], + "interface-flapped": [ + { + "data": "2024-09-07 13:03:27 UTC (3w6d 00:52 ago)", + "attributes": { + "junos:seconds": "2335941" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "3430680" + } + ], + "input-pps": [ + { + "data": "409" + } + ], + "output-bps": [ + { + "data": "1396016" + } + ], + "output-pps": [ + { + "data": "1597" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "6" + } + ], + "errored-blocks-seconds": [ + { + "data": "6" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/8.0" + } + ], + "local-index": [ + { + "data": "391" + } + ], + "snmp-index": [ + { + "data": "560" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1409248520" + } + ], + "output-packets": [ + { + "data": "7491418568" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "178" + } + ], + "snmp-index": [ + { + "data": "520" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:c8" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:11" + } + ], + "interface-flapped": [ + { + "data": "2024-09-07 13:03:27 UTC (3w6d 00:52 ago)", + "attributes": { + "junos:seconds": "2335941" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "559800" + } + ], + "input-pps": [ + { + "data": "97" + } + ], + "output-bps": [ + { + "data": "102232" + } + ], + "output-pps": [ + { + "data": "64" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "6" + } + ], + "errored-blocks-seconds": [ + { + "data": "5" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/9.0" + } + ], + "local-index": [ + { + "data": "392" + } + ], + "snmp-index": [ + { + "data": "561" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1657718842" + } + ], + "output-packets": [ + { + "data": "6904062072" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gr-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "157" + } + ], + "snmp-index": [ + { + "data": "620" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ip-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "158" + } + ], + "snmp-index": [ + { + "data": "621" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "161" + } + ], + "snmp-index": [ + { + "data": "624" + } + ], + "if-type": [ + { + "data": "Logical-tunnel" + } + ], + "link-level-type": [ + { + "data": "Logical-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-information": [ + { + "data": "13" + } + ], + "current-physical-address": [ + { + "data": "46:f4:77:0e:60:08", + "attributes": { + "junos:format": "MAC 46:f4:77:0e:60:08" + } + } + ], + "hardware-physical-address": [ + { + "data": "46:f4:77:0e:60:08", + "attributes": { + "junos:format": "MAC 46:f4:77:0e:60:08" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:44:50 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553858" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "mt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "160" + } + ], + "snmp-index": [ + { + "data": "623" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-all-multicast": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pd-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "155" + } + ], + "snmp-index": [ + { + "data": "618" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pe-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "156" + } + ], + "snmp-index": [ + { + "data": "619" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ud-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "165" + } + ], + "snmp-index": [ + { + "data": "537" + } + ], + "if-type": [ + { + "data": "UDPT" + } + ], + "link-level-type": [ + { + "data": "UDP-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ut-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "162" + } + ], + "snmp-index": [ + { + "data": "625" + } + ], + "if-type": [ + { + "data": "Uplink-tunnel" + } + ], + "link-level-type": [ + { + "data": "Uplink-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-information": [ + { + "data": "13" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:44:50 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553858" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vt-0/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "159" + } + ], + "snmp-index": [ + { + "data": "622" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "link-level-type": [ + { + "data": "Virtual-loopback-tunnel" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vt-0/0/10.2097152" + } + ], + "local-index": [ + { + "data": "376" + } + ], + "snmp-index": [ + { + "data": "563" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "Virtual-loopback-tunnel" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "179" + } + ], + "snmp-index": [ + { + "data": "601" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:ac" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:ac" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:14 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553834" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "28048" + } + ], + "input-pps": [ + { + "data": "17" + } + ], + "output-bps": [ + { + "data": "1488" + } + ], + "output-pps": [ + { + "data": "2" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/2/0.2950" + } + ], + "local-index": [ + { + "data": "393" + } + ], + "snmp-index": [ + { + "data": "633" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2950 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2950 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "142270329" + } + ], + "output-packets": [ + { + "data": "76628307" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "7" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x40008" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.221/24" + } + ], + "ifa-local": [ + { + "data": "123.65.221.1" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.221.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.221/24" + } + ], + "ifa-local": [ + { + "data": "123.65.221.2" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.221.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/0.2953" + } + ], + "local-index": [ + { + "data": "395" + } + ], + "snmp-index": [ + { + "data": "544" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2953 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2953 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1768315" + } + ], + "output-packets": [ + { + "data": "4045162" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x40008" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.132.208/29" + } + ], + "ifa-local": [ + { + "data": "123.65.132.209" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.132.215" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.132.208/29" + } + ], + "ifa-local": [ + { + "data": "123.65.132.211" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.132.215" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/0.32767" + } + ], + "local-index": [ + { + "data": "396" + } + ], + "snmp-index": [ + { + "data": "634" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "127922" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "180" + } + ], + "snmp-index": [ + { + "data": "602" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:ad" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:ad" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/2" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "181" + } + ], + "snmp-index": [ + { + "data": "597" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:ae" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:ae" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "182" + } + ], + "snmp-index": [ + { + "data": "598" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:af" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:af" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/4" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "183" + } + ], + "snmp-index": [ + { + "data": "599" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:b0" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:b0" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/5" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "184" + } + ], + "snmp-index": [ + { + "data": "600" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:b1" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:b1" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/6" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "185" + } + ], + "snmp-index": [ + { + "data": "603" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:b2" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:b2" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "186" + } + ], + "snmp-index": [ + { + "data": "604" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet-CCC" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:b3" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:b3" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:13 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553835" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "240" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "824" + } + ], + "output-pps": [ + { + "data": "1" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/2/7.0" + } + ], + "local-index": [ + { + "data": "397" + } + ], + "snmp-index": [ + { + "data": "550" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-CCC" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1652680" + } + ], + "output-packets": [ + { + "data": "6872142" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/8" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "187" + } + ], + "snmp-index": [ + { + "data": "605" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:b4" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:b4" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "188" + } + ], + "snmp-index": [ + { + "data": "606" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "disabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:b5" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:b5" + } + ], + "interface-flapped": [ + { + "data": "2024-10-02 16:18:15 UTC (1d 21:37 ago)", + "attributes": { + "junos:seconds": "164253" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/0" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "189" + } + ], + "snmp-index": [ + { + "data": "616" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:fe" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:fe" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "190" + } + ], + "snmp-index": [ + { + "data": "617" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:ff" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:ff" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/2" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "191" + } + ], + "snmp-index": [ + { + "data": "608" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:00" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:00" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "192" + } + ], + "snmp-index": [ + { + "data": "609" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet-CCC" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:01" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:01" + } + ], + "interface-flapped": [ + { + "data": "2024-09-25 13:51:13 UTC (1w2d 00:04 ago)", + "attributes": { + "junos:seconds": "777875" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "53848" + } + ], + "input-pps": [ + { + "data": "51" + } + ], + "output-bps": [ + { + "data": "239304" + } + ], + "output-pps": [ + { + "data": "117" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/3/3.0" + } + ], + "local-index": [ + { + "data": "398" + } + ], + "snmp-index": [ + { + "data": "688" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-CCC" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "410439097" + } + ], + "output-packets": [ + { + "data": "428072478" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/4" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "193" + } + ], + "snmp-index": [ + { + "data": "610" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:02" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:02" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/5" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "194" + } + ], + "snmp-index": [ + { + "data": "611" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:03" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:03" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/6" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "195" + } + ], + "snmp-index": [ + { + "data": "612" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:04" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:04" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/7" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "196" + } + ], + "snmp-index": [ + { + "data": "613" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:05" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:05" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/8" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "197" + } + ], + "snmp-index": [ + { + "data": "614" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:06" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:06" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-0/3/9" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "198" + } + ], + "snmp-index": [ + { + "data": "615" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:07" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:07" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:20:34 UTC (5w6d 02:35 ago)", + "attributes": { + "junos:seconds": "3551714" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "lc-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "166" + } + ], + "snmp-index": [ + { + "data": "512" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-1/0/0.32769" + } + ], + "local-index": [ + { + "data": "372" + } + ], + "snmp-index": [ + { + "data": "513" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "168" + } + ], + "snmp-index": [ + { + "data": "515" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "local-index": [ + { + "data": "375" + } + ], + "snmp-index": [ + { + "data": "517" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "167" + } + ], + "snmp-index": [ + { + "data": "514" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "local-index": [ + { + "data": "373" + } + ], + "snmp-index": [ + { + "data": "516" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "local-index": [ + { + "data": "374" + } + ], + "snmp-index": [ + { + "data": "543" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/0" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "199" + } + ], + "snmp-index": [ + { + "data": "591" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:52" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:52" + } + ], + "interface-flapped": [ + { + "data": "2024-09-21 00:49:32 UTC (1w6d 13:06 ago)", + "attributes": { + "junos:seconds": "1170376" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "7" + } + ], + "errored-blocks-seconds": [ + { + "data": "7" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "200" + } + ], + "snmp-index": [ + { + "data": "592" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:53" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:53" + } + ], + "interface-flapped": [ + { + "data": "2024-09-27 17:35:50 UTC (6d 20:19 ago)", + "attributes": { + "junos:seconds": "591598" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/1.16386" + } + ], + "local-index": [ + { + "data": "330" + } + ], + "snmp-index": [ + { + "data": "566" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "41043" + } + ], + "output-packets": [ + { + "data": "21314" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/2" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "201" + } + ], + "snmp-index": [ + { + "data": "585" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:54" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:54" + } + ], + "interface-flapped": [ + { + "data": "2024-09-21 00:44:09 UTC (1w6d 13:11 ago)", + "attributes": { + "junos:seconds": "1170699" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "3" + } + ], + "errored-blocks-seconds": [ + { + "data": "4" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/2.32767" + } + ], + "local-index": [ + { + "data": "416" + } + ], + "snmp-index": [ + { + "data": "696" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "79764" + } + ], + "output-packets": [ + { + "data": "85792" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "202" + } + ], + "snmp-index": [ + { + "data": "586" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:55" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:55" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:19 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553829" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1936" + } + ], + "input-pps": [ + { + "data": "2" + } + ], + "output-bps": [ + { + "data": "2360" + } + ], + "output-pps": [ + { + "data": "3" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/3.3100" + } + ], + "local-index": [ + { + "data": "417" + } + ], + "snmp-index": [ + { + "data": "681" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "10308342" + } + ], + "output-packets": [ + { + "data": "7944194" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.16.152/29" + } + ], + "ifa-local": [ + { + "data": "123.65.16.153" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.16.159" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3101" + } + ], + "local-index": [ + { + "data": "418" + } + ], + "snmp-index": [ + { + "data": "682" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3101 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3101 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "782076" + } + ], + "output-packets": [ + { + "data": "1919800822" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.25.220/30" + } + ], + "ifa-local": [ + { + "data": "123.65.25.221" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.25.223" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3102" + } + ], + "local-index": [ + { + "data": "419" + } + ], + "snmp-index": [ + { + "data": "683" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3102 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3102 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "757350" + } + ], + "output-packets": [ + { + "data": "3596370" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.25.228/30" + } + ], + "ifa-local": [ + { + "data": "123.65.25.229" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.25.231" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3103" + } + ], + "local-index": [ + { + "data": "420" + } + ], + "snmp-index": [ + { + "data": "684" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3103 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3103 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "757766" + } + ], + "output-packets": [ + { + "data": "2125606044" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.25.216/30" + } + ], + "ifa-local": [ + { + "data": "123.65.25.217" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.25.219" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3104" + } + ], + "local-index": [ + { + "data": "421" + } + ], + "snmp-index": [ + { + "data": "685" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3104 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3104 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "757242" + } + ], + "output-packets": [ + { + "data": "2538069" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.25.224/30" + } + ], + "ifa-local": [ + { + "data": "123.65.25.225" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.25.227" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.32767" + } + ], + "local-index": [ + { + "data": "422" + } + ], + "snmp-index": [ + { + "data": "686" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "118984" + } + ], + "output-packets": [ + { + "data": "127989" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "203" + } + ], + "snmp-index": [ + { + "data": "587" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet-CCC" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:56" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:56" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:20 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553828" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "816" + } + ], + "input-pps": [ + { + "data": "1" + } + ], + "output-bps": [ + { + "data": "1616" + } + ], + "output-pps": [ + { + "data": "3" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/4.0" + } + ], + "local-index": [ + { + "data": "423" + } + ], + "snmp-index": [ + { + "data": "564" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-CCC" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "7888369750" + } + ], + "output-packets": [ + { + "data": "6905418153" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "204" + } + ], + "snmp-index": [ + { + "data": "588" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:57" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:57" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:19 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553829" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "497720464" + } + ], + "input-pps": [ + { + "data": "44693" + } + ], + "output-bps": [ + { + "data": "19600" + } + ], + "output-pps": [ + { + "data": "19" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/5.411" + } + ], + "local-index": [ + { + "data": "424" + } + ], + "snmp-index": [ + { + "data": "638" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.411 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.411 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "67696818590" + } + ], + "output-packets": [ + { + "data": "48224091" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.18.184/30" + } + ], + "ifa-local": [ + { + "data": "123.65.18.185" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.18.187" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/5.32767" + } + ], + "local-index": [ + { + "data": "425" + } + ], + "snmp-index": [ + { + "data": "639" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "118390" + } + ], + "output-packets": [ + { + "data": "127974" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "205" + } + ], + "snmp-index": [ + { + "data": "589" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1610" + } + ], + "mru": [ + { + "data": "1618" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-scheduler": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:d0" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:58" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:20 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553828" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "992" + } + ], + "input-pps": [ + { + "data": "1" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/6.32767" + } + ], + "local-index": [ + { + "data": "427" + } + ], + "snmp-index": [ + { + "data": "673" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3958124" + } + ], + "output-packets": [ + { + "data": "127979" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae99.32767" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "206" + } + ], + "snmp-index": [ + { + "data": "590" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:61:59" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:59" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:22 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553826" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "199512" + } + ], + "input-pps": [ + { + "data": "93" + } + ], + "output-bps": [ + { + "data": "155904" + } + ], + "output-pps": [ + { + "data": "69" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "2" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/7.2000" + } + ], + "local-index": [ + { + "data": "428" + } + ], + "snmp-index": [ + { + "data": "530" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2000 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2000 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "376255685" + } + ], + "output-packets": [ + { + "data": "187176445" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.5.36/31" + } + ], + "ifa-local": [ + { + "data": "123.65.5.36" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/7.32767" + } + ], + "local-index": [ + { + "data": "429" + } + ], + "snmp-index": [ + { + "data": "531" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "118392" + } + ], + "output-packets": [ + { + "data": "128005" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "207" + } + ], + "snmp-index": [ + { + "data": "593" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:c8" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:5a" + } + ], + "interface-flapped": [ + { + "data": "2024-09-07 13:03:40 UTC (3w6d 00:52 ago)", + "attributes": { + "junos:seconds": "2335928" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1357816" + } + ], + "input-pps": [ + { + "data": "197" + } + ], + "output-bps": [ + { + "data": "118856" + } + ], + "output-pps": [ + { + "data": "78" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "6" + } + ], + "errored-blocks-seconds": [ + { + "data": "6" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/8.0" + } + ], + "local-index": [ + { + "data": "430" + } + ], + "snmp-index": [ + { + "data": "595" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1015091308" + } + ], + "output-packets": [ + { + "data": "7431712323" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "208" + } + ], + "snmp-index": [ + { + "data": "594" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:c8" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:5b" + } + ], + "interface-flapped": [ + { + "data": "2024-09-07 13:03:40 UTC (3w6d 00:52 ago)", + "attributes": { + "junos:seconds": "2335928" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "856368" + } + ], + "input-pps": [ + { + "data": "118" + } + ], + "output-bps": [ + { + "data": "64792" + } + ], + "output-pps": [ + { + "data": "54" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "6" + } + ], + "errored-blocks-seconds": [ + { + "data": "6" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/9.0" + } + ], + "local-index": [ + { + "data": "431" + } + ], + "snmp-index": [ + { + "data": "596" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1417093653" + } + ], + "output-packets": [ + { + "data": "7018165016" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/2/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "209" + } + ], + "snmp-index": [ + { + "data": "677" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "optics-properties": [ + { + "attributes": { + "junos:style": "verbose" + }, + "wavelength": [ + { + "data": "1542.94" + } + ], + "frequency": [ + { + "data": "194.30" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:cc" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:61:f6" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:10 UTC (5w0d 02:30 ago)", + "attributes": { + "junos:seconds": "3033038" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "31740112" + } + ], + "input-pps": [ + { + "data": "4738" + } + ], + "output-bps": [ + { + "data": "25070840" + } + ], + "output-pps": [ + { + "data": "7020" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1341" + } + ], + "errored-blocks-seconds": [ + { + "data": "1344" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/2/0.0" + } + ], + "local-index": [ + { + "data": "432" + } + ], + "snmp-index": [ + { + "data": "700" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "39699926191" + } + ], + "output-packets": [ + { + "data": "90402121251" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae5.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-1/3/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "210" + } + ], + "snmp-index": [ + { + "data": "679" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet-CCC" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-schedulers": [ + { + "data": "0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:62:48" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:62:48" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:27 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553821" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1222975256" + } + ], + "input-pps": [ + { + "data": "116511" + } + ], + "output-bps": [ + { + "data": "43689672" + } + ], + "output-pps": [ + { + "data": "15470" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "1" + } + ], + "errored-blocks-seconds": [ + { + "data": "2" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/3/0.0" + } + ], + "local-index": [ + { + "data": "433" + } + ], + "snmp-index": [ + { + "data": "703" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-CCC" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "187640671021" + } + ], + "output-packets": [ + { + "data": "136945649326" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "128" + } + ], + "snmp-index": [ + { + "data": "562" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "40Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:c8" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:67:c8" + } + ], + "interface-flapped": [ + { + "data": "2024-09-07 13:03:36 UTC (3w6d 00:52 ago)", + "attributes": { + "junos:seconds": "2335932" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "6204664" + } + ], + "input-pps": [ + { + "data": "821" + } + ], + "output-bps": [ + { + "data": "1682952" + } + ], + "output-pps": [ + { + "data": "1793" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "local-index": [ + { + "data": "323" + } + ], + "snmp-index": [ + { + "data": "573" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "5498640345" + } + ], + "input-pps": [ + { + "data": "821" + } + ], + "input-bytes": [ + { + "data": "6667778454206" + } + ], + "input-bps": [ + { + "data": "6203112" + } + ], + "output-packets": [ + { + "data": "28844846157" + } + ], + "output-pps": [ + { + "data": "1803" + } + ], + "output-bytes": [ + { + "data": "35068075415220" + } + ], + "output-bps": [ + { + "data": "1704024" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.242/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.242" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "129" + } + ], + "snmp-index": [ + { + "data": "565" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Unspecified" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:ca" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:67:ca" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:41:53 UTC (5w6d 03:13 ago)", + "attributes": { + "junos:seconds": "3554035" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae3.32767" + } + ], + "local-index": [ + { + "data": "324" + } + ], + "snmp-index": [ + { + "data": "549" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "input-bytes": [ + { + "data": "0" + } + ], + "input-bps": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "130" + } + ], + "snmp-index": [ + { + "data": "567" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:cc" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:67:cc" + } + ], + "interface-flapped": [ + { + "data": "2024-08-30 11:25:15 UTC (5w0d 02:30 ago)", + "attributes": { + "junos:seconds": "3033033" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "31740112" + } + ], + "input-pps": [ + { + "data": "4738" + } + ], + "output-bps": [ + { + "data": "25075880" + } + ], + "output-pps": [ + { + "data": "7020" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae5.0" + } + ], + "local-index": [ + { + "data": "325" + } + ], + "snmp-index": [ + { + "data": "584" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "39699798242" + } + ], + "input-pps": [ + { + "data": "4738" + } + ], + "input-bytes": [ + { + "data": "31714610405227" + } + ], + "input-bps": [ + { + "data": "31738696" + } + ], + "output-packets": [ + { + "data": "90401993299" + } + ], + "output-pps": [ + { + "data": "7078" + } + ], + "output-bytes": [ + { + "data": "81084412465887" + } + ], + "output-bps": [ + { + "data": "25299832" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.70/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.71" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "131" + } + ], + "snmp-index": [ + { + "data": "569" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:c9" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:67:c9" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:16 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553832" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2671547712" + } + ], + "input-pps": [ + { + "data": "239113" + } + ], + "output-bps": [ + { + "data": "1247039552" + } + ], + "output-pps": [ + { + "data": "121351" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae7.0" + } + ], + "local-index": [ + { + "data": "326" + } + ], + "snmp-index": [ + { + "data": "678" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "189838093696" + } + ], + "input-pps": [ + { + "data": "239113" + } + ], + "input-bytes": [ + { + "data": "222831617833280" + } + ], + "input-bps": [ + { + "data": "2671547712" + } + ], + "output-packets": [ + { + "data": "191583277977" + } + ], + "output-pps": [ + { + "data": "121351" + } + ], + "output-bytes": [ + { + "data": "223474119747847" + } + ], + "output-bps": [ + { + "data": "1247039136" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.30/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.31" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x10000000" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae17" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "132" + } + ], + "snmp-index": [ + { + "data": "580" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Unspecified" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:cd" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:67:cd" + } + ], + "interface-flapped": [ + { + "data": "2024-09-23 00:47:38 UTC (1w4d 13:08 ago)", + "attributes": { + "junos:seconds": "997690" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae17.2100" + } + ], + "local-index": [ + { + "data": "347" + } + ], + "snmp-index": [ + { + "data": "654" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "40440860798" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "input-bytes": [ + { + "data": "26842049622672" + } + ], + "input-bps": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "9563177627" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "4304158318860" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.6.16/29" + } + ], + "ifa-local": [ + { + "data": "123.65.6.18" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.6.23" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae17.32767" + } + ], + "local-index": [ + { + "data": "327" + } + ], + "snmp-index": [ + { + "data": "651" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "2761250" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "input-bytes": [ + { + "data": "342395000" + } + ], + "input-bps": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae99" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "135" + } + ], + "snmp-index": [ + { + "data": "674" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "20Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000" + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:d0" + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:67:d0" + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 10:45:12 UTC (5w6d 03:10 ago)", + "attributes": { + "junos:seconds": "3553836" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "3680" + } + ], + "input-pps": [ + { + "data": "2" + } + ], + "output-bps": [ + { + "data": "1536" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae99.32767" + } + ], + "local-index": [ + { + "data": "331" + } + ], + "snmp-index": [ + { + "data": "676" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4004000" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "7678474" + } + ], + "input-pps": [ + { + "data": "2" + } + ], + "input-bytes": [ + { + "data": "952130776" + } + ], + "input-bps": [ + { + "data": "3680" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "137" + } + ], + "snmp-index": [ + { + "data": "501" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:60:19", + "attributes": { + "junos:format": "MAC 44:f4:77:0e:60:19" + } + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:60:19", + "attributes": { + "junos:format": "MAC 44:f4:77:0e:60:19" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "136" + } + ], + "snmp-index": [ + { + "data": "502" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "clocking": [ + { + "data": "1" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "5" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "em0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "67" + } + ], + "snmp-index": [ + { + "data": "17" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000 Mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "52:54:00:a9:d4:53", + "attributes": { + "junos:format": "MAC 52:54:00:a9:d4:53" + } + } + ], + "hardware-physical-address": [ + { + "data": "52:54:00:a9:d4:53", + "attributes": { + "junos:format": "MAC 52:54:00:a9:d4:53" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:13:42 UTC (5w6d 02:42 ago)", + "attributes": { + "junos:seconds": "3552126" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "6543201" + } + ], + "output-packets": [ + { + "data": "4564062" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em0.32768" + } + ], + "local-index": [ + { + "data": "7" + } + ], + "snmp-index": [ + { + "data": "559" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "6543074" + } + ], + "output-packets": [ + { + "data": "4564064" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "192.168.1/24" + } + ], + "ifa-local": [ + { + "data": "192.168.1.1" + } + ], + "ifa-broadcast": [ + { + "data": "192.168.1.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "142" + } + ], + "snmp-index": [ + { + "data": "538" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "144" + } + ], + "snmp-index": [ + { + "data": "529" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "145" + } + ], + "snmp-index": [ + { + "data": "545" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "146" + } + ], + "snmp-index": [ + { + "data": "546" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "147" + } + ], + "snmp-index": [ + { + "data": "547" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "148" + } + ], + "snmp-index": [ + { + "data": "548" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "149" + } + ], + "snmp-index": [ + { + "data": "627" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "150" + } + ], + "snmp-index": [ + { + "data": "646" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "151" + } + ], + "snmp-index": [ + { + "data": "647" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "66" + } + ], + "snmp-index": [ + { + "data": "1" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000 Mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "68:f3:8e:43:ac:82", + "attributes": { + "junos:format": "MAC 68:f3:8e:43:ac:82" + } + } + ], + "hardware-physical-address": [ + { + "data": "68:f3:8e:43:ac:82", + "attributes": { + "junos:format": "MAC 68:f3:8e:43:ac:82" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:13:50 UTC (5w6d 02:41 ago)", + "attributes": { + "junos:seconds": "3552118" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "12108948" + } + ], + "output-packets": [ + { + "data": "127967" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "13" + } + ], + "description": [ + { + "data": "MGMT : OOB : F07058-MS1 Gig 0/1" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "12108552" + } + ], + "output-packets": [ + { + "data": "127968" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "10" + } + ], + "snmp-index": [ + { + "data": "8" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "igb0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "65" + } + ], + "snmp-index": [ + { + "data": "649" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:01:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:01:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:01:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:01:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:13:38 UTC (5w6d 02:42 ago)", + "attributes": { + "junos:seconds": "3552130" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "10644577" + } + ], + "output-packets": [ + { + "data": "149315923" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "igb0.0" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "668" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "149315388" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "3" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::200:1ff:fe00:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "fec0::/64" + } + ], + "ifa-local": [ + { + "data": "fec0::a:0:0:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "11" + } + ], + "snmp-index": [ + { + "data": "9" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "140" + } + ], + "snmp-index": [ + { + "data": "503" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:f8", + "attributes": { + "junos:format": "MAC 44:f4:77:0e:67:f8" + } + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:67:f8", + "attributes": { + "junos:format": "MAC 44:f4:77:0e:67:f8" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ixlv0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "64" + } + ], + "snmp-index": [ + { + "data": "669" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x100200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x4" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-24 11:13:38 UTC (5w6d 02:42 ago)", + "attributes": { + "junos:seconds": "3552130" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "975889264" + } + ], + "output-packets": [ + { + "data": "634808515" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ixlv0.0" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "670" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "959268342" + } + ], + "output-packets": [ + { + "data": "634803890" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "2" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "fec0::/64" + } + ], + "ifa-local": [ + { + "data": "fec0::a:0:0:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "153" + } + ], + "snmp-index": [ + { + "data": "539" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:c8", + "attributes": { + "junos:format": "MAC 44:f4:77:0e:67:c8" + } + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:67:c8", + "attributes": { + "junos:format": "MAC 44:f4:77:0e:67:c8" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "local-index": [ + { + "data": "333" + } + ], + "snmp-index": [ + { + "data": "540" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x24004000" + } + ] + } + ], + "encapsulation": [ + { + "data": "unknown" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "None" + } + ], + "irb-bridge": [ + { + "data": "None" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.127" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "6" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-loopback": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "48921153" + } + ], + "output-packets": [ + { + "data": "48921157" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "local-index": [ + { + "data": "322" + } + ], + "snmp-index": [ + { + "data": "16" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "132" + } + ], + "output-packets": [ + { + "data": "132" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "198.51.100.1" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "49.0123.0065.0226.0017" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x800" + } + ] + } + ], + "ifa-local": [ + { + "data": "fe80::6af3:8e0f:fc43:a682" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "local-index": [ + { + "data": "321" + } + ], + "snmp-index": [ + { + "data": "21" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "127.0.0.1" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "local-index": [ + { + "data": "320" + } + ], + "snmp-index": [ + { + "data": "22" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "48921011" + } + ], + "output-packets": [ + { + "data": "48921013" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "4" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "LSI" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1121680" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "local-index": [ + { + "data": "358" + } + ], + "snmp-index": [ + { + "data": "628" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4000000" + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "local-index": [ + { + "data": "359" + } + ], + "snmp-index": [ + { + "data": "528" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "local-index": [ + { + "data": "360" + } + ], + "snmp-index": [ + { + "data": "536" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1800891" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "local-index": [ + { + "data": "361" + } + ], + "snmp-index": [ + { + "data": "532" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "local-index": [ + { + "data": "362" + } + ], + "snmp-index": [ + { + "data": "534" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "local-index": [ + { + "data": "363" + } + ], + "snmp-index": [ + { + "data": "535" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "441115" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "local-index": [ + { + "data": "364" + } + ], + "snmp-index": [ + { + "data": "551" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "12" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "local-index": [ + { + "data": "365" + } + ], + "snmp-index": [ + { + "data": "552" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "21" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.8" + } + ], + "local-index": [ + { + "data": "366" + } + ], + "snmp-index": [ + { + "data": "553" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.9" + } + ], + "local-index": [ + { + "data": "367" + } + ], + "snmp-index": [ + { + "data": "554" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1749" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "mif" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "152" + } + ], + "snmp-index": [ + { + "data": "555" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "1440" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "68" + } + ], + "snmp-index": [ + { + "data": "12" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "26" + } + ], + "snmp-index": [ + { + "data": "11" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "25" + } + ], + "snmp-index": [ + { + "data": "10" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "138" + } + ], + "snmp-index": [ + { + "data": "504" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "44:f4:77:0e:67:b8", + "attributes": { + "junos:format": "MAC 44:f4:77:0e:67:b8" + } + } + ], + "hardware-physical-address": [ + { + "data": "44:f4:77:0e:67:b8", + "attributes": { + "junos:format": "MAC 44:f4:77:0e:67:b8" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "139" + } + ], + "snmp-index": [ + { + "data": "505" + } + ], + "if-type": [ + { + "data": "PPPoE" + } + ], + "link-level-type": [ + { + "data": "PPPoE" + } + ], + "mtu": [ + { + "data": "1532" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "143" + } + ], + "snmp-index": [ + { + "data": "648" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Remote-BEB" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "12" + } + ], + "snmp-index": [ + { + "data": "7" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "141" + } + ], + "snmp-index": [ + { + "data": "541" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x200" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + } + ] + } + ] + }, + "show interfaces routing-instance all terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/22.4R0/junos-interface", + "junos:style": "vrf" + }, + "physical-interface": [ + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/0.211" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.169/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/2.3001" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.29.49/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.37.49/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/5.311" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.177/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/5.312" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.19.229/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DCI" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "vt-0/0/10.2097152" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/2/0.2950" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.221.1/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.221.2/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/0.2953" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.132.209/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.132.211/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-1/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/3.3100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.16.153/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.25.221/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.25.229/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.25.217/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + }, + { + "name": [ + { + "data": "xe-1/0/3.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.25.225/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/5.411" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.185/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/0/7.2000" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.5.36/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.242/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.71/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.31/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae17.2100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.6.18/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "em0.32768" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "192.168.1.1/24", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private5__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "igb0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:1ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ixlv0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_services__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0226.0017", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::6af3:8e0f:fc43:a682" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "INTERNET" + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-COMMSVCS" + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DCI" + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "lsi.8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RED" + } + ] + }, + { + "name": [ + { + "data": "lsi.9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ] + }, + "show vlans | display json": [], + "show lldp neighbors | display json": { + "lldp-neighbors-information": [ + { + "attributes": { + "junos:style": "brief" + }, + "lldp-neighbor-information": [ + { + "lldp-local-port-id": [ + { + "data": "ge-0/3/3" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "00:08:e3:ff:fd:90" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/1/9" + } + ], + "lldp-remote-system-name": [ + { + "data": "ABC01.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/2/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae5" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "04:69:8f:61:f5:90" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-0/1/1" + } + ], + "lldp-remote-system-name": [ + { + "data": "PE1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/8" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "44:f4:77:0d:97:c8" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-0/0/8" + } + ], + "lldp-remote-system-name": [ + { + "data": "5PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/9" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "44:f4:77:0d:97:c8" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-0/0/9" + } + ], + "lldp-remote-system-name": [ + { + "data": "8-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/8" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "44:f4:77:0d:97:c8" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/0/8" + } + ], + "lldp-remote-system-name": [ + { + "data": "58-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/9" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "44:f4:77:0d:97:c8" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/0/9" + } + ], + "lldp-remote-system-name": [ + { + "data": "58-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/5" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "50:87:89:4f:00:13" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Locally assigned" + } + ], + "lldp-remote-port-id": [ + { + "data": "Eth1/12" + } + ], + "lldp-remote-system-name": [ + { + "data": "7058.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/5" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "50:87:89:4f:00:1f" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Locally assigned" + } + ], + "lldp-remote-port-id": [ + { + "data": "Eth1/24" + } + ], + "lldp-remote-system-name": [ + { + "data": "7058.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "50:87:89:4f:00:2b" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Locally assigned" + } + ], + "lldp-remote-port-id": [ + { + "data": "Eth1/36" + } + ], + "lldp-remote-system-name": [ + { + "data": "7058.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/4" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "70:61:7b:84:66:40" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Twe1/0/19" + } + ], + "lldp-remote-system-name": [ + { + "data": "01V.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/6" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae99" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "70:61:7b:84:66:40" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Twe1/0/20" + } + ], + "lldp-remote-system-name": [ + { + "data": "E01V.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/2" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "70:61:7b:84:66:40" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Twe1/0/2" + } + ], + "lldp-remote-system-name": [ + { + "data": "E01V.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/6" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae99" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "70:61:7b:84:66:40" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Twe2/0/20" + } + ], + "lldp-remote-system-name": [ + { + "data": "E01V.gmn0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/3" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "7c:21:0d:56:02:00" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/0/7" + } + ], + "lldp-remote-system-name": [ + { + "data": "RC1.meh.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/0/7" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "8c:60:4f:27:14:a8" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Locally assigned" + } + ], + "lldp-remote-port-id": [ + { + "data": "Eth1/1" + } + ], + "lldp-remote-system-name": [ + { + "data": "F07058RI01" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/7" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae7" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "b4:f9:5d:95:ae:90" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-0/1/4" + } + ], + "lldp-remote-system-name": [ + { + "data": "4-PE1.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/3/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "c4:4d:84:c9:87:e0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Ethernet1/13" + } + ], + "lldp-remote-system-name": [ + { + "data": "WA123ABC" + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_6.json b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_6.json new file mode 100755 index 00000000..3c08bf73 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_6.json @@ -0,0 +1,26918 @@ +{ + "show configuration interfaces | display json": { + "configuration": { + "@": { + "junos:commit-seconds": "1726145036", + "junos:commit-localtime": "2024-09-12 12:43:56 UTC", + "junos:commit-user": "svc-junospace" + }, + "interfaces": { + "interface": [ + { + "name": "xe-0/0/0", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae0" + } + } + }, + { + "name": "xe-0/0/1", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.18.217/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-0/0/2", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 3100, + "description": "a desc", + "vlan-id": 3100, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.18.193/30" + } + ] + } + } + }, + { + "name": 3101, + "description": "a desc", + "vlan-id": 3101, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-GUEST" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.24.249/30" + } + ] + } + } + }, + { + "name": 3102, + "description": "a desc", + "vlan-id": 3102, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-IND" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.8.6/30" + } + ] + } + } + }, + { + "name": 3103, + "description": "a desc", + "vlan-id": 3103, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-USER" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.8.10/30" + } + ] + } + } + }, + { + "name": 3104, + "description": "a desc", + "vlan-id": 3104, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-DEVICES" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.8.14/30" + } + ] + } + } + } + ] + }, + { + "name": "xe-0/0/3", + "mtu": 1522, + "encapsulation": "ethernet-ccc", + "gigether-options": { + "asynchronous-notification": [ + null + ] + } + }, + { + "name": "ge-1/0/0", + "apply-groups": [ + "ABC-L3VPN" + ], + "description": "a desc", + "flexible-vlan-tagging": [ + null + ], + "unit": [ + { + "name": 2950, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "a desc", + "vlan-id": 2950, + "family": { + "inet": { + "filter": { + "input-list": [ + "ABC-L3ACME-NETMGMT" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.208.162/28", + "vrrp-group": [ + { + "name": 1, + "virtual-address": [ + "123.65.208.161" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } + }, + { + "name": 2953, + "apply-groups": [ + "PROTO-VRRP" + ], + "description": "a desc", + "vlan-id": 2953, + "family": { + "inet": { + "no-redirects": [ + null + ], + "filter": { + "input-list": [ + "ABC-L3ACME-CORP" + ] + }, + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.133.59/29", + "vrrp-group": [ + { + "name": 3, + "virtual-address": [ + "123.65.133.57" + ], + "priority": 128, + "accept-data": [ + null + ] + } + ] + } + ] + } + } + } + ] + }, + { + "name": "ge-1/0/1", + "description": "a desc", + "mtu": 1522, + "encapsulation": "ethernet-vpls", + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "vpls": [ + null + ] + } + } + ] + }, + { + "name": "ge-1/0/2", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/3", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/4", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/5", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/6", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/7", + "disable": [ + null + ] + }, + { + "name": "ge-1/0/8", + "mtu": 1522, + "encapsulation": "ethernet-ccc", + "gigether-options": { + "asynchronous-notification": [ + null + ] + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "bandwidth": "1g", + "family": { + "ccc": { + "filter": { + "input-list": [ + "ABC-I-ge-1/0/8.0" + ] + } + } + } + } + ] + }, + { + "name": "ge-1/0/9", + "mtu": 1522, + "encapsulation": "ethernet-ccc", + "gigether-options": { + "asynchronous-notification": [ + null + ] + } + }, + { + "name": "ge-1/1/0", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/1", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/2", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/3", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/4", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/5", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/6", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/7", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/8", + "disable": [ + null + ] + }, + { + "name": "ge-1/1/9", + "disable": [ + null + ] + }, + { + "name": "xe-1/2/0", + "disable": [ + null + ] + }, + { + "name": "xe-1/3/0", + "description": "a desc", + "gigether-options": { + "ieee-802.3ad": { + "bundle": "ae11" + } + } + }, + { + "name": "ae0", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.229.4/31" + } + ] + } + } + } + ] + }, + { + "name": "ae1", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + } + } + } + } + ] + }, + { + "name": "ae11", + "apply-groups": [ + "MPLS" + ], + "description": "a desc", + "aggregated-ether-options": { + "lacp": { + "active": [ + null + ] + } + }, + "unit": [ + { + "name": 0, + "description": "a desc", + "family": { + "inet": { + "sampling": { + "input": [ + null + ] + }, + "address": [ + { + "name": "123.65.228.170/31" + } + ] + } + } + } + ] + }, + { + "name": "em1", + "disable": [ + null + ] + }, + { + "name": "lo0", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "filter": { + "input": { + "filter-name": "ACME-FW-CPP-01" + } + }, + "address": [ + { + "name": "198.51.100.1/32" + } + ] + }, + "iso": { + "address": [ + { + "name": "49.0123.0065.0224.0109.00" + } + ] + }, + "inet6": { + "filter": { + "input": { + "filter-name": "ACME-FW6-CPP-01" + } + } + } + } + } + ] + } + ] + } + } + }, + "show system information | display json": { + "system-information": [ + { + "hardware-model": [ + { + "data": "mx80" + } + ], + "os-name": [ + { + "data": "junos" + } + ], + "os-version": [ + { + "data": "21.2R3-S7.7" + } + ], + "serial-number": [ + { + "data": "T9983" + } + ], + "host-name": [ + { + "data": "JUNOS_MX80" + } + ] + } + ] + }, + "show interfaces terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.2R0/junos-interface", + "junos:style": "terse" + }, + "physical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.217/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/2.3100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.193/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.24.249/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.8.6/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.8.10/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.8.14/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.2950" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.208.161/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.208.162/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.2953" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.133.57/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.133.59/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.32767" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/2" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/3" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/4" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/5" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/6" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/7" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/0" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/1" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/2" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/3" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/4" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/5" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/6" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/7" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/8" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/9" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "xe-1/2/0" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ] + }, + { + "name": [ + { + "data": "xe-1/3/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/3/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae11.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.4/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae11" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae11.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.170/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "em0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em1" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.1/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0224.0109", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::2a8a:1c0f:fc56:9bff" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1049089" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "me0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "me0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + } + ] + } + ] + }, + "show route protocol direct | display json": { + "route-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.2R0/junos-routing" + }, + "route-table": [ + { + "comment": "keepalive", + "table-name": [ + { + "data": "inet.0" + } + ], + "destination-count": [ + { + "data": "305" + } + ], + "total-route-count": [ + { + "data": "305" + } + ], + "active-route-count": [ + { + "data": "295" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "10" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "198.51.100.1/32" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:54:01", + "attributes": { + "junos:seconds": "5396041" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.228.170/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "10:42:47", + "attributes": { + "junos:seconds": "38567" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae11.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.229.4/31" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:52:32", + "attributes": { + "junos:seconds": "5395952" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "inet.3" + } + ], + "destination-count": [ + { + "data": "97" + } + ], + "total-route-count": [ + { + "data": "97" + } + ], + "active-route-count": [ + { + "data": "97" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-CORP.inet.0" + } + ], + "destination-count": [ + { + "data": "7578" + } + ], + "total-route-count": [ + { + "data": "39703" + } + ], + "active-route-count": [ + { + "data": "7576" + } + ], + "holddown-route-count": [ + { + "data": "1" + } + ], + "hidden-route-count": [ + { + "data": "1" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.18.192/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:52:34", + "attributes": { + "junos:seconds": "5395954" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3100" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.18.216/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:52:34", + "attributes": { + "junos:seconds": "5395954" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/1.0" + } + ] + } + ] + } + ] + }, + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.133.56/29" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:52:24", + "attributes": { + "junos:seconds": "5395944" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-1/0/0.2953" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DEVICES.inet.0" + } + ], + "destination-count": [ + { + "data": "760" + } + ], + "total-route-count": [ + { + "data": "3868" + } + ], + "active-route-count": [ + { + "data": "760" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.8.12/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:52:35", + "attributes": { + "junos:seconds": "5395955" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3104" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-GUEST.inet.0" + } + ], + "destination-count": [ + { + "data": "886" + } + ], + "total-route-count": [ + { + "data": "4638" + } + ], + "active-route-count": [ + { + "data": "886" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.24.248/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:52:35", + "attributes": { + "junos:seconds": "5395955" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3101" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-IND.inet.0" + } + ], + "destination-count": [ + { + "data": "768" + } + ], + "total-route-count": [ + { + "data": "3916" + } + ], + "active-route-count": [ + { + "data": "767" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "1" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.8.4/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:52:35", + "attributes": { + "junos:seconds": "5395955" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3102" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NETMGMT.inet.0" + } + ], + "destination-count": [ + { + "data": "126" + } + ], + "total-route-count": [ + { + "data": "497" + } + ], + "active-route-count": [ + { + "data": "126" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.208.160/28" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:52:25", + "attributes": { + "junos:seconds": "5395945" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "ge-1/0/0.2950" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RED.inet.0" + } + ], + "destination-count": [ + { + "data": "213" + } + ], + "total-route-count": [ + { + "data": "878" + } + ], + "active-route-count": [ + { + "data": "213" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-USER.inet.0" + } + ], + "destination-count": [ + { + "data": "847" + } + ], + "total-route-count": [ + { + "data": "4366" + } + ], + "active-route-count": [ + { + "data": "847" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "123.65.8.8/30" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:52:35", + "attributes": { + "junos:seconds": "5395955" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "xe-0/0/2.3103" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "iso.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "49.0123.0065.0224.0109" + } + ], + "rt-prefix-length": [ + { + "data": "72", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:54:02", + "attributes": { + "junos:seconds": "5396042" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "mpls.0" + } + ], + "destination-count": [ + { + "data": "384" + } + ], + "total-route-count": [ + { + "data": "384" + } + ], + "active-route-count": [ + { + "data": "384" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn.0" + } + ], + "destination-count": [ + { + "data": "28688" + } + ], + "total-route-count": [ + { + "data": "57376" + } + ], + "active-route-count": [ + { + "data": "28688" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "inet6.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "2" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "fe80::2a8a:1c0f:fc56:9bff/128", + "attributes": { + "junos:emit": "emit" + } + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "8w6d 10:54:03", + "attributes": { + "junos:seconds": "5396043" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "lo0.0" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-COMMSVCS.inet6.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-CORP.inet6.0" + } + ], + "destination-count": [ + { + "data": "15" + } + ], + "total-route-count": [ + { + "data": "69" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "68" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-DEVICES.inet6.0" + } + ], + "destination-count": [ + { + "data": "20" + } + ], + "total-route-count": [ + { + "data": "81" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "80" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-GUEST.inet6.0" + } + ], + "destination-count": [ + { + "data": "21" + } + ], + "total-route-count": [ + { + "data": "85" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "84" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-IND.inet6.0" + } + ], + "destination-count": [ + { + "data": "14" + } + ], + "total-route-count": [ + { + "data": "65" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "64" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-NETMGMT.inet6.0" + } + ], + "destination-count": [ + { + "data": "1" + } + ], + "total-route-count": [ + { + "data": "1" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-RED.inet6.0" + } + ], + "destination-count": [ + { + "data": "14" + } + ], + "total-route-count": [ + { + "data": "53" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "52" + } + ] + }, + { + "table-name": [ + { + "data": "L3ACME-USER.inet6.0" + } + ], + "destination-count": [ + { + "data": "14" + } + ], + "total-route-count": [ + { + "data": "65" + } + ], + "active-route-count": [ + { + "data": "1" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "64" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "3" + } + ], + "total-route-count": [ + { + "data": "6" + } + ], + "active-route-count": [ + { + "data": "3" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-2.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "4" + } + ], + "total-route-count": [ + { + "data": "6" + } + ], + "active-route-count": [ + { + "data": "4" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-1.l2vpn.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "3" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "bgp.l3vpn-inet6.0" + } + ], + "destination-count": [ + { + "data": "206" + } + ], + "total-route-count": [ + { + "data": "412" + } + ], + "active-route-count": [ + { + "data": "0" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "412" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + }, + { + "table-name": [ + { + "data": "L2ACME-1.l2id.0" + } + ], + "destination-count": [ + { + "data": "2" + } + ], + "total-route-count": [ + { + "data": "4" + } + ], + "active-route-count": [ + { + "data": "2" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "restart-state": [ + { + "data": "Complete" + } + ] + } + ] + } + ] + }, + "show interfaces | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.2R0/junos-interface", + "junos:style": "normal" + }, + "physical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "148" + } + ], + "snmp-index": [ + { + "data": "506" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "local-index": [ + { + "data": "349" + } + ], + "snmp-index": [ + { + "data": "507" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "150" + } + ], + "snmp-index": [ + { + "data": "509" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "350" + } + ], + "snmp-index": [ + { + "data": "511" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "149" + } + ], + "snmp-index": [ + { + "data": "508" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "351" + } + ], + "snmp-index": [ + { + "data": "510" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "local-index": [ + { + "data": "352" + } + ], + "snmp-index": [ + { + "data": "575" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "151" + } + ], + "snmp-index": [ + { + "data": "512" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:c0" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:00" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:23 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395958" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "149231608" + } + ], + "input-pps": [ + { + "data": "13804" + } + ], + "output-bps": [ + { + "data": "23138784" + } + ], + "output-pps": [ + { + "data": "7384" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/0.0" + } + ], + "local-index": [ + { + "data": "353" + } + ], + "snmp-index": [ + { + "data": "563" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "280040725337" + } + ], + "output-packets": [ + { + "data": "176549037963" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae0.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "152" + } + ], + "snmp-index": [ + { + "data": "513" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:01" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:01" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:23 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395958" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "1853328" + } + ], + "input-pps": [ + { + "data": "506" + } + ], + "output-bps": [ + { + "data": "597688" + } + ], + "output-pps": [ + { + "data": "396" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/1.0" + } + ], + "local-index": [ + { + "data": "354" + } + ], + "snmp-index": [ + { + "data": "589" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "40140737748" + } + ], + "output-packets": [ + { + "data": "3369489368" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.18.216/30" + } + ], + "ifa-local": [ + { + "data": "123.65.18.217" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.18.219" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "153" + } + ], + "snmp-index": [ + { + "data": "514" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:02" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:02" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:23 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395958" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "29886336" + } + ], + "input-pps": [ + { + "data": "7231" + } + ], + "output-bps": [ + { + "data": "6917408" + } + ], + "output-pps": [ + { + "data": "2630" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/2.3100" + } + ], + "local-index": [ + { + "data": "355" + } + ], + "snmp-index": [ + { + "data": "602" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3100 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3100 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "336231583457" + } + ], + "output-packets": [ + { + "data": "89507243247" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.18.192/30" + } + ], + "ifa-local": [ + { + "data": "123.65.18.193" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.18.195" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3101" + } + ], + "local-index": [ + { + "data": "356" + } + ], + "snmp-index": [ + { + "data": "603" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3101 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3101 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "24228645753" + } + ], + "output-packets": [ + { + "data": "150847543" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.24.248/30" + } + ], + "ifa-local": [ + { + "data": "123.65.24.249" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.24.251" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3102" + } + ], + "local-index": [ + { + "data": "357" + } + ], + "snmp-index": [ + { + "data": "604" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3102 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3102 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2838944" + } + ], + "output-packets": [ + { + "data": "424098" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.8.4/30" + } + ], + "ifa-local": [ + { + "data": "123.65.8.6" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.8.7" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3103" + } + ], + "local-index": [ + { + "data": "358" + } + ], + "snmp-index": [ + { + "data": "605" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3103 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3103 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1250752559" + } + ], + "output-packets": [ + { + "data": "10259300" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.8.8/30" + } + ], + "ifa-local": [ + { + "data": "123.65.8.10" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.8.11" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3104" + } + ], + "local-index": [ + { + "data": "359" + } + ], + "snmp-index": [ + { + "data": "606" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.3104 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.3104 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3675895" + } + ], + "output-packets": [ + { + "data": "401461" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.8.12/30" + } + ], + "ifa-local": [ + { + "data": "123.65.8.14" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.8.15" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.32767" + } + ], + "local-index": [ + { + "data": "360" + } + ], + "snmp-index": [ + { + "data": "597" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "180767" + } + ], + "output-packets": [ + { + "data": "194457" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "154" + } + ], + "snmp-index": [ + { + "data": "515" + } + ], + "link-level-type": [ + { + "data": "Ethernet-CCC" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:03" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:03" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:22 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395959" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "524" + } + ], + "errored-blocks-seconds": [ + { + "data": "524" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "155" + } + ], + "snmp-index": [ + { + "data": "516" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:60" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:60" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:33 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395948" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2184" + } + ], + "input-pps": [ + { + "data": "2" + } + ], + "output-bps": [ + { + "data": "1312" + } + ], + "output-pps": [ + { + "data": "2" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.2950" + } + ], + "local-index": [ + { + "data": "361" + } + ], + "snmp-index": [ + { + "data": "565" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2950 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2950 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "25803495" + } + ], + "output-packets": [ + { + "data": "6361708" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "3" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.208.160/28" + } + ], + "ifa-local": [ + { + "data": "123.65.208.161" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.208.175" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.208.160/28" + } + ], + "ifa-local": [ + { + "data": "123.65.208.162" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.208.175" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.2953" + } + ], + "local-index": [ + { + "data": "362" + } + ], + "snmp-index": [ + { + "data": "583" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x8100.2953 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x8100.2953 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2718239" + } + ], + "output-packets": [ + { + "data": "6167116" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-no-redirects": [ + { + "data": [ + null + ] + } + ], + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.133.56/29" + } + ], + "ifa-local": [ + { + "data": "123.65.133.57" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.133.63" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.133.56/29" + } + ], + "ifa-local": [ + { + "data": "123.65.133.59" + } + ], + "ifa-broadcast": [ + { + "data": "123.65.133.63" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.32767" + } + ], + "local-index": [ + { + "data": "363" + } + ], + "snmp-index": [ + { + "data": "564" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "[ 0x0000.0 ] ", + "attributes": { + "junos:format": "VLAN-Tag [ 0x0000.0 ] " + } + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "194448" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "156" + } + ], + "snmp-index": [ + { + "data": "517" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet-VPLS" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:61" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:61" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "245408" + } + ], + "input-pps": [ + { + "data": "147" + } + ], + "output-bps": [ + { + "data": "136264" + } + ], + "output-pps": [ + { + "data": "55" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/1.0" + } + ], + "local-index": [ + { + "data": "364" + } + ], + "snmp-index": [ + { + "data": "574" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-VPLS" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "309003415" + } + ], + "output-packets": [ + { + "data": "231109902" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/2" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "157" + } + ], + "snmp-index": [ + { + "data": "518" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:62" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:62" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "158" + } + ], + "snmp-index": [ + { + "data": "519" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:63" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:63" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/4" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "159" + } + ], + "snmp-index": [ + { + "data": "520" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:64" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:64" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/5" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "160" + } + ], + "snmp-index": [ + { + "data": "521" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:65" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:65" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/6" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "161" + } + ], + "snmp-index": [ + { + "data": "522" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:66" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:66" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/7" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "162" + } + ], + "snmp-index": [ + { + "data": "523" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:67" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:67" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "163" + } + ], + "snmp-index": [ + { + "data": "524" + } + ], + "link-level-type": [ + { + "data": "Ethernet-CCC" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:68" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:68" + } + ], + "interface-flapped": [ + { + "data": "2024-10-01 05:23:17 UTC (3d 08:33 ago)", + "attributes": { + "junos:seconds": "290024" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "167080" + } + ], + "input-pps": [ + { + "data": "158" + } + ], + "output-bps": [ + { + "data": "91608" + } + ], + "output-pps": [ + { + "data": "110" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/8.0" + } + ], + "local-index": [ + { + "data": "365" + } + ], + "snmp-index": [ + { + "data": "572" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-CCC" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "999575548" + } + ], + "output-packets": [ + { + "data": "795161082" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "ccc" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x402" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "164" + } + ], + "snmp-index": [ + { + "data": "525" + } + ], + "link-level-type": [ + { + "data": "Ethernet-CCC" + } + ], + "mtu": [ + { + "data": "1522" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1530" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:69" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:69" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/0" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "165" + } + ], + "snmp-index": [ + { + "data": "526" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:6c" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:6c" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "166" + } + ], + "snmp-index": [ + { + "data": "527" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:6d" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:6d" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:30 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395951" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/2" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "167" + } + ], + "snmp-index": [ + { + "data": "528" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:6e" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:6e" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:33 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395948" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/3" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "168" + } + ], + "snmp-index": [ + { + "data": "529" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:6f" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:6f" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:33 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395948" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/4" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "169" + } + ], + "snmp-index": [ + { + "data": "530" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:70" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:70" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:33 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395948" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/5" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "170" + } + ], + "snmp-index": [ + { + "data": "531" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:71" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:71" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:33 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395948" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/6" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "171" + } + ], + "snmp-index": [ + { + "data": "532" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:72" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:72" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:33 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395948" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/7" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "172" + } + ], + "snmp-index": [ + { + "data": "533" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:73" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:73" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:33 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395948" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/8" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "173" + } + ], + "snmp-index": [ + { + "data": "534" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:74" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:74" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:33 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395949" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "ge-1/1/9" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "174" + } + ], + "snmp-index": [ + { + "data": "535" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:75" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:75" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:33 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395949" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-1/2/0" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "175" + } + ], + "snmp-index": [ + { + "data": "536" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "mru": [ + { + "data": "1522" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:78" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:78" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:35 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395947" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ], + "ethernet-alarm-link-local-fault": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ] + }, + { + "name": [ + { + "data": "xe-1/3/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "176" + } + ], + "snmp-index": [ + { + "data": "537" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "mru": [ + { + "data": "1610" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "none" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "if-speed-cfg": [ + { + "data": "Auto" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "8" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "8" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:c2" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:84" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:36 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395946" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "7656256" + } + ], + "input-pps": [ + { + "data": "3054" + } + ], + "output-bps": [ + { + "data": "158651880" + } + ], + "output-pps": [ + { + "data": "14466" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "link-degrade-information": [ + { + "lnk-degrd-mon": [ + { + "data": "Disable" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "xe-1/3/0.0" + } + ], + "local-index": [ + { + "data": "366" + } + ], + "snmp-index": [ + { + "data": "586" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "91090456354" + } + ], + "output-packets": [ + { + "data": "503717992299" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "aenet" + } + ], + "ae-bundle-name": [ + { + "data": "ae11.0" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "129" + } + ], + "snmp-index": [ + { + "data": "538" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:c0" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:c0" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:25 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395957" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "149231608" + } + ], + "input-pps": [ + { + "data": "13804" + } + ], + "output-bps": [ + { + "data": "23168328" + } + ], + "output-pps": [ + { + "data": "7384" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "local-index": [ + { + "data": "346" + } + ], + "snmp-index": [ + { + "data": "561" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "280040530891" + } + ], + "input-pps": [ + { + "data": "13804" + } + ], + "input-bytes": [ + { + "data": "398378260904599" + } + ], + "input-bps": [ + { + "data": "149231608" + } + ], + "output-packets": [ + { + "data": "176548844390" + } + ], + "output-pps": [ + { + "data": "6769" + } + ], + "output-bytes": [ + { + "data": "203708282285383" + } + ], + "output-bps": [ + { + "data": "22058896" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.229.4/31" + } + ], + "ifa-local": [ + { + "data": "123.65.229.4" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "130" + } + ], + "snmp-index": [ + { + "data": "539" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Unspecified" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:c1" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:c1" + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:04:11 UTC (8w6d 10:52 ago)", + "attributes": { + "junos:seconds": "5395971" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "local-index": [ + { + "data": "347" + } + ], + "snmp-index": [ + { + "data": "559" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "input-bytes": [ + { + "data": "0" + } + ], + "input-bps": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ], + "output-bytes": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ae11" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "131" + } + ], + "snmp-index": [ + { + "data": "549" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1602" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "10Gbps" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "disabled" + } + ], + "pad-to-minimum-frame-size": [ + { + "data": "Disabled" + } + ], + "minimum-links-in-aggregate": [ + { + "data": "1" + } + ], + "minimum-bandwidth-in-aggregate": [ + { + "data": "1bps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:c2" + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:c2" + } + ], + "interface-flapped": [ + { + "data": "2024-10-04 03:14:11 UTC (10:42:51 ago)", + "attributes": { + "junos:seconds": "38571" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "7656256" + } + ], + "input-pps": [ + { + "data": "3054" + } + ], + "output-bps": [ + { + "data": "158652096" + } + ], + "output-pps": [ + { + "data": "14466" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ae11.0" + } + ], + "local-index": [ + { + "data": "348" + } + ], + "snmp-index": [ + { + "data": "584" + } + ], + "description": [ + { + "data": "a desc" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "lag-traffic-statistics": [ + { + "lag-bundle": [ + { + "input-packets": [ + { + "data": "91090267784" + } + ], + "input-pps": [ + { + "data": "3054" + } + ], + "input-bytes": [ + { + "data": "12253821421696" + } + ], + "input-bps": [ + { + "data": "7656256" + } + ], + "output-packets": [ + { + "data": "503717797830" + } + ], + "output-pps": [ + { + "data": "14462" + } + ], + "output-bytes": [ + { + "data": "722013834015414" + } + ], + "output-bps": [ + { + "data": "158640384" + } + ] + } + ], + "lag-adaptive-statistics": [ + { + "adaptive-adjusts": [ + { + "data": "0" + } + ], + "adaptive-scans": [ + { + "data": "0" + } + ], + "adaptive-updates": [ + { + "data": "0" + } + ] + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1588" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sample-input": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "123.65.228.170/31" + } + ], + "ifa-local": [ + { + "data": "123.65.228.170" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "1585" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls" + } + ], + "mtu": [ + { + "data": "1576" + } + ], + "maximum-labels": [ + { + "data": "3" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "cbp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "133" + } + ], + "snmp-index": [ + { + "data": "502" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "2a:8a:1c:56:9b:11", + "attributes": { + "junos:format": "MAC 2a:8a:1c:56:9b:11" + } + } + ], + "hardware-physical-address": [ + { + "data": "2a:8a:1c:56:9b:11", + "attributes": { + "junos:format": "MAC 2a:8a:1c:56:9b:11" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "demux0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "132" + } + ], + "snmp-index": [ + { + "data": "501" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "clocking": [ + { + "data": "1" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "5" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "em0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "2" + } + ], + "snmp-index": [ + { + "data": "17" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:00:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:02:51 UTC (8w6d 10:54 ago)", + "attributes": { + "junos:seconds": "5396051" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "660459068" + } + ], + "output-packets": [ + { + "data": "589301916" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em0.0" + } + ], + "local-index": [ + { + "data": "3" + } + ], + "snmp-index": [ + { + "data": "18" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "660459068" + } + ], + "output-packets": [ + { + "data": "589301916" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-kernel": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "1" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "fec0::/64" + } + ], + "ifa-local": [ + { + "data": "fec0::a:0:0:4" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "em1" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "65" + } + ], + "snmp-index": [ + { + "data": "23" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:02:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:02:00:00:04" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:02:00:00:04", + "attributes": { + "junos:format": "MAC 02:00:02:00:00:04" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:01:56 UTC (8w6d 10:55 ago)", + "attributes": { + "junos:seconds": "5396106" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "em1.0" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "24" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "10/8" + } + ], + "ifa-local": [ + { + "data": "10.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "10.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "address-family-flags": [ + { + "ifff-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "0x4" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "esi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "138" + } + ], + "snmp-index": [ + { + "data": "571" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "140" + } + ], + "snmp-index": [ + { + "data": "568" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "141" + } + ], + "snmp-index": [ + { + "data": "576" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "142" + } + ], + "snmp-index": [ + { + "data": "577" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "143" + } + ], + "snmp-index": [ + { + "data": "578" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "144" + } + ], + "snmp-index": [ + { + "data": "579" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "145" + } + ], + "snmp-index": [ + { + "data": "580" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "146" + } + ], + "snmp-index": [ + { + "data": "581" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "147" + } + ], + "snmp-index": [ + { + "data": "582" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fxp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "64" + } + ], + "snmp-index": [ + { + "data": "1" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:ff", + "attributes": { + "junos:format": "MAC 28:8a:1c:56:9b:ff" + } + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:ff", + "attributes": { + "junos:format": "MAC 28:8a:1c:56:9b:ff" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:01:56 UTC (8w6d 10:55 ago)", + "attributes": { + "junos:seconds": "5396106" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2714275" + } + ], + "output-packets": [ + { + "data": "194431" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "13" + } + ], + "description": [ + { + "data": "MGMT : OOB : COV100-MS1 Gig 0/4" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "2714275" + } + ], + "output-packets": [ + { + "data": "194431" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "10" + } + ], + "snmp-index": [ + { + "data": "8" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "11" + } + ], + "snmp-index": [ + { + "data": "9" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "136" + } + ], + "snmp-index": [ + { + "data": "505" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:f0", + "attributes": { + "junos:format": "MAC 28:8a:1c:56:9b:f0" + } + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:f0", + "attributes": { + "junos:format": "MAC 28:8a:1c:56:9b:f0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "128" + } + ], + "snmp-index": [ + { + "data": "560" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "00:00:00:00:00:00", + "attributes": { + "junos:format": "MAC 00:00:00:00:00:00" + } + } + ], + "hardware-physical-address": [ + { + "data": "00:00:00:00:00:00", + "attributes": { + "junos:format": "MAC 00:00:00:00:00:00" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "local-index": [ + { + "data": "324" + } + ], + "snmp-index": [ + { + "data": "562" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "unknown" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "None" + } + ], + "irb-bridge": [ + { + "data": "None" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.127" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "6" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-loopback": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3806986" + } + ], + "output-packets": [ + { + "data": "3806986" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "local-index": [ + { + "data": "322" + } + ], + "snmp-index": [ + { + "data": "16" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "187" + } + ], + "output-packets": [ + { + "data": "187" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "198.51.100.1" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-local": [ + { + "data": "49.0123.0065.0224.0109" + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "ifa-local": [ + { + "data": "fe80::2a8a:1c0f:fc56:9bff" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "ifaf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "local-index": [ + { + "data": "321" + } + ], + "snmp-index": [ + { + "data": "21" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ], + "interface-address": [ + { + "attributes": { + "heading": "Addresses" + }, + "ifa-local": [ + { + "data": "127.0.0.1" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "local-index": [ + { + "data": "320" + } + ], + "snmp-index": [ + { + "data": "22" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3806799" + } + ], + "output-packets": [ + { + "data": "3806799" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x2" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "4" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "LSI" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "3115" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "local-index": [ + { + "data": "338" + } + ], + "snmp-index": [ + { + "data": "566" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "local-index": [ + { + "data": "339" + } + ], + "snmp-index": [ + { + "data": "569" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "14682" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "local-index": [ + { + "data": "340" + } + ], + "snmp-index": [ + { + "data": "573" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "local-index": [ + { + "data": "341" + } + ], + "snmp-index": [ + { + "data": "590" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "15352" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "local-index": [ + { + "data": "342" + } + ], + "snmp-index": [ + { + "data": "591" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "local-index": [ + { + "data": "343" + } + ], + "snmp-index": [ + { + "data": "592" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "local-index": [ + { + "data": "344" + } + ], + "snmp-index": [ + { + "data": "593" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "local-index": [ + { + "data": "345" + } + ], + "snmp-index": [ + { + "data": "599" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi.1049089" + } + ], + "local-index": [ + { + "data": "367" + } + ], + "snmp-index": [ + { + "data": "585" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "LSI-NULL" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "me0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "1" + } + ], + "snmp-index": [ + { + "data": "33" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:0b", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:0b" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:00:00:00:0b", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:0b" + } + } + ], + "interface-flapped": [ + { + "data": "2024-08-03 03:01:56 UTC (8w6d 10:55 ago)", + "attributes": { + "junos:seconds": "5396106" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "194420" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "me0.0" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "34" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "194420" + } + ] + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "66" + } + ], + "snmp-index": [ + { + "data": "12" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "26" + } + ], + "snmp-index": [ + { + "data": "11" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "25" + } + ], + "snmp-index": [ + { + "data": "10" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pip0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "134" + } + ], + "snmp-index": [ + { + "data": "503" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9192" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "28:8a:1c:56:9b:b0", + "attributes": { + "junos:format": "MAC 28:8a:1c:56:9b:b0" + } + } + ], + "hardware-physical-address": [ + { + "data": "28:8a:1c:56:9b:b0", + "attributes": { + "junos:format": "MAC 28:8a:1c:56:9b:b0" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pp0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "135" + } + ], + "snmp-index": [ + { + "data": "504" + } + ], + "if-type": [ + { + "data": "PPPoE" + } + ], + "link-level-type": [ + { + "data": "PPPoE" + } + ], + "mtu": [ + { + "data": "1532" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "rbeb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "139" + } + ], + "snmp-index": [ + { + "data": "567" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Remote-BEB" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "12" + } + ], + "snmp-index": [ + { + "data": "7" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vtep" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "137" + } + ], + "snmp-index": [ + { + "data": "570" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "VxLAN-Tunnel-Endpoint" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + } + ] + } + ] + }, + "show interfaces routing-instance all terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.2R0/junos-interface", + "junos:style": "vrf" + }, + "physical-interface": [ + { + "logical-interface": [ + { + "name": [ + { + "data": "lc-0/0/0.32769" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.217/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "xe-0/0/2.3100" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.18.193/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3101" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.24.249/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3102" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.8.6/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3103" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.8.10/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + }, + { + "name": [ + { + "data": "xe-0/0/2.3104" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.8.14/30", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.2950" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.208.161/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.208.162/28", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0.2953" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.133.57/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "123.65.133.59/29", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "L2ACME-2" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.229.4/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ae11.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "123.65.228.170/31", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "mpls", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "address-family-name": [ + { + "data": "multiservice" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "em0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.4/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::200:ff:fe00:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "fec0::a:0:0:4/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "em1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "10.0.0.1/8", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "tnp" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "0x4", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "fxp0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_services__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lo0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "49.0123.0065.0224.0109", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::2a8a:1c0f:fc56:9bff" + } + ], + "ifa-destination": [ + { + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + }, + { + "name": [ + { + "data": "lo0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "127.0.0.1" + } + ], + "ifa-destination": [ + { + "data": "0/0", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + }, + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lsi.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-COMMSVCS" + } + ] + }, + { + "name": [ + { + "data": "lsi.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-CORP" + } + ] + }, + { + "name": [ + { + "data": "lsi.2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-DEVICES" + } + ] + }, + { + "name": [ + { + "data": "lsi.3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-GUEST" + } + ] + }, + { + "name": [ + { + "data": "lsi.4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-IND" + } + ] + }, + { + "name": [ + { + "data": "lsi.5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-NETMGMT" + } + ] + }, + { + "name": [ + { + "data": "lsi.6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-RED" + } + ] + }, + { + "name": [ + { + "data": "lsi.7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "iso" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "L3ACME-USER" + } + ] + }, + { + "name": [ + { + "data": "lsi.1049089" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "vpls" + } + ] + } + ], + "vrfname": [ + { + "data": "L2ACME-2" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {}, + {} + ] + } + ] + }, + "show vlans | display json": [], + "show lldp neighbors | display json": { + "lldp-neighbors-information": [ + { + "attributes": { + "junos:style": "brief" + }, + "lldp-neighbor-information": [ + { + "lldp-local-port-id": [ + { + "data": "ge-1/0/1" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "0c:d0:f8:cc:99:00" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/0/10" + } + ], + "lldp-remote-system-name": [ + { + "data": "OV100S.ov100.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-1/0/8" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "0c:d0:f8:cc:99:00" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/0/8" + } + ], + "lldp-remote-system-name": [ + { + "data": "OV10.ov100.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/1" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "0c:d0:f8:cc:99:00" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/0/9" + } + ], + "lldp-remote-system-name": [ + { + "data": "OV100.ov100.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae0" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "28:8a:1c:56:8f:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-0/0/0" + } + ], + "lldp-remote-system-name": [ + { + "data": "0-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-1/3/0" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "ae11" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "3c:61:04:05:a2:c0" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "xe-1/0/1" + } + ], + "lldp-remote-system-name": [ + { + "data": "3-PE2.mpls0.acme.net" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "xe-0/0/2" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "54:8a:ba:92:a2:80" + } + ], + "lldp-remote-port-id-subtype": [ + { + "data": "Interface name" + } + ], + "lldp-remote-port-id": [ + { + "data": "Te1/0/4" + } + ], + "lldp-remote-system-name": [ + { + "data": "OVRM1.ov100.acme.net" + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_7.json b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_7.json new file mode 100755 index 00000000..47caf38a --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/command_getter_result_7.json @@ -0,0 +1,59676 @@ +{ + "show configuration interfaces | display json": { + "configuration": { + "@": { + "junos:commit-seconds": "1727501350", + "junos:commit-localtime": "2024-09-28 00:29:10 CDT", + "junos:commit-user": "root" + }, + "interfaces": { + "interface": [ + { + "name": "ge-0/0/0", + "description": "TESTING AP108", + "disable": [ + null + ], + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/1", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/2", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/3", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/4", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/5", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/6", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/7", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/8", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/9", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/10", + "disable": [ + null + ], + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/11", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/12", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/13", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/14", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/15", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/16", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/17", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/18", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/19", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/20", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/21", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/22", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/23", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/24", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/25", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/26", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/27", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/28", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "PRINTERS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/29", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/30", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/31", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/32", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/33", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/34", + "description": "ge-0/0/34|VFLAB-AP01+", + "native-vlan-id": 16, + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "STAFF_WIFI", + "IT_MANAGEMENT", + "GUEST_WIFI" + ] + } + } + } + } + ] + }, + { + "name": "ge-0/0/35", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/36", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/37", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/38", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/39", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/40", + "unit": [ + { + "name": 0, + "description": "UNTRUST - TO FW01 PORT 5", + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "UNTRUST" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/41", + "description": "ge-0/0/41|AP04", + "native-vlan-id": 16, + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "GUEST_WIFI", + "STAFF_WIFI", + "IT_MANAGEMENT" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/42", + "description": "ACMEVF-ZPE01", + "native-vlan-id": 16, + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "GUEST_WIFI", + "STAFF_WIFI", + "IT_MANAGEMENT" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/43", + "description": "TRUST - TO FW02 PORT 6", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "DESKTOPS", + "GUEST_WIFI", + "STAFF_WIFI", + "IT_MANAGEMENT", + "VOIP", + "PRINTERS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/44", + "description": "TO FW01 MGMT", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "IT_MANAGEMENT" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/45", + "description": "TRUST - TO FW01 PORT 7", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "DESKTOPS", + "GUEST_WIFI", + "STAFF_WIFI", + "IT_MANAGEMENT", + "VOIP", + "PRINTERS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/46", + "unit": [ + { + "name": 0, + "description": "UNTRUST - TO FW01 PORT 8", + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "UNTRUST" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/0/47", + "unit": [ + { + "name": 0, + "description": "[DIA]", + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "UNTRUST" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/2/0", + "unit": [ + { + "name": 0, + "description": "[SECONDARY DIA to ge-0/2/1]", + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "UNTRUST" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "xe-0/2/0", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "vlan": { + "members": [ + "default" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/2/1", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "vlan": { + "members": [ + "default" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "xe-0/2/1", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "vlan": { + "members": [ + "default" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/2/2", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "vlan": { + "members": [ + "default" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "xe-0/2/2", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "vlan": { + "members": [ + "default" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-0/2/3", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "vlan": { + "members": [ + "default" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "xe-0/2/3", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "vlan": { + "members": [ + "default" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/0", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/1", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "IT_MANAGEMENT" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/2", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/3", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/4", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/5", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/6", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/7", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/8", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/9", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/10", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/11", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/12", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/13", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/14", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/15", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/16", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/17", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/18", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/19", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/20", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/21", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/22", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/23", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/24", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/25", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/26", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/27", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/28", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/29", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/30", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/31", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/32", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/33", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/34", + "native-vlan-id": 16, + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "STAFF_WIFI", + "IT_MANAGEMENT", + "GUEST_WIFI" + ] + } + } + } + } + ] + }, + { + "name": "ge-1/0/35", + "description": "ge-1/0/35|AP02", + "native-vlan-id": 16, + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "GUEST_WIFI", + "STAFF_WIFI", + "IT_MANAGEMENT" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/36", + "description": "ge-1/0/36|AP03", + "native-vlan-id": 16, + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "GUEST_WIFI", + "STAFF_WIFI", + "IT_MANAGEMENT" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/37", + "native-vlan-id": 16, + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "GUEST_WIFI", + "STAFF_WIFI", + "IT_MANAGEMENT" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/38", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/39", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/40", + "unit": [ + { + "name": 0, + "description": "UNTRUST - TO FW01 PORT 5", + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "UNTRUST" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/41", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/42", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "DESKTOPS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/43", + "description": "TRUST - TO FW02 PORT 6", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "DESKTOPS", + "GUEST_WIFI", + "STAFF_WIFI", + "IT_MANAGEMENT", + "VOIP", + "PRINTERS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/44", + "description": "TO FW02 MGMT", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "IT_MANAGEMENT" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/45", + "description": "TRUST - TO FW02 PORT 7", + "unit": [ + { + "name": 0, + "family": { + "ethernet-switching": { + "interface-mode": "trunk", + "vlan": { + "members": [ + "DESKTOPS", + "GUEST_WIFI", + "STAFF_WIFI", + "IT_MANAGEMENT", + "VOIP", + "PRINTERS" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/46", + "unit": [ + { + "name": 0, + "description": "UNTRUST - TO FW01 PORT 8", + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "UNTRUST" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/0/47", + "unit": [ + { + "name": 0, + "description": "UNTRUST - INTERNET CIRCUIT", + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "UNTRUST" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "ge-1/2/0", + "unit": [ + { + "name": 0, + "description": "UNTRUST - INTERNET CIRCUIT", + "family": { + "ethernet-switching": { + "interface-mode": "access", + "vlan": { + "members": [ + "UNTRUST" + ] + }, + "storm-control": { + "profile-name": "default" + } + } + } + } + ] + }, + { + "name": "irb", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "dhcp": { + "vendor-id": "Juniper-ex4300-48p-PD3120201034" + } + }, + "inet6": { + "dhcpv6-client": { + "client-type": "stateful", + "client-ia-type": [ + { + "name": "ia-na" + } + ], + "client-identifier": { + "duid-type": "duid-ll" + }, + "vendor-id": "Juniper:ex4300-48p:PD3120201034" + } + } + } + }, + { + "name": 16, + "family": { + "inet": { + "address": [ + { + "name": "198.51.100.1/23" + } + ] + } + } + } + ] + }, + { + "name": "vme", + "unit": [ + { + "name": 0, + "family": { + "inet": { + "dhcp": { + "vendor-id": "Juniper-ex4300-48p-PD3120201034" + } + }, + "inet6": { + "dhcpv6-client": { + "client-type": "stateful", + "client-ia-type": [ + { + "name": "ia-na" + } + ], + "client-identifier": { + "duid-type": "duid-ll" + }, + "vendor-id": "Juniper:ex4300-48p:PD3120201034" + } + } + } + } + ] + } + ] + } + } + }, + "show system information | display json": { + "system-information": [ + { + "hardware-model": [ + { + "data": "ex4300-48p" + } + ], + "os-name": [ + { + "data": "junos" + } + ], + "os-version": [ + { + "data": "21.4R3-S3.4" + } + ], + "serial-number": [ + { + "data": "PD3987654321" + } + ], + "host-name": [ + { + "data": "JUNOS_EX4300" + } + ], + "virtual-chassis": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + "show version | display json": { + "multi-routing-engine-results": [ + { + "multi-routing-engine-item": [ + { + "re-name": [ + { + "data": "fpc0" + } + ], + "software-information": [ + { + "host-name": [ + { + "data": "JUNOS_EX4300" + } + ], + "product-model": [ + { + "data": "ex4300-48p" + } + ], + "product-name": [ + { + "data": "ex4300-48p" + } + ], + "junos-version": [ + { + "data": "21.4R3-S3.4" + } + ], + "package-information": [ + { + "name": [ + { + "data": "junos" + } + ], + "comment": [ + { + "data": "JUNOS EX Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "fips-mode-powerpc" + } + ], + "comment": [ + { + "data": "JUNOS FIPS mode utilities [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jcrypto-ex" + } + ], + "comment": [ + { + "data": "JUNOS Crypto Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jdocs-ex" + } + ], + "comment": [ + { + "data": "JUNOS Online Documentation [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jphone-home" + } + ], + "comment": [ + { + "data": "JUNOS Phone-Home Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jsd" + } + ], + "comment": [ + { + "data": "JUNOS jsd [powerpc-21.4R3-S3.4-jet-1]" + } + ] + }, + { + "name": [ + { + "data": "jsdn-powerpc" + } + ], + "comment": [ + { + "data": "JUNOS SDN Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "junos-ex-4300" + } + ], + "comment": [ + { + "data": "JUNOS EX 4300 Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jweb-ex" + } + ], + "comment": [ + { + "data": "JUNOS Web Management Platform Package [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "py-base-powerpc" + } + ], + "comment": [ + { + "data": "JUNOS py-base-powerpc [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "py-extensions-powerpc" + } + ], + "comment": [ + { + "data": "JUNOS py-extensions-powerpc [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "restapi-ex" + } + ], + "comment": [ + { + "data": "REST API Software Suite [21.4R3-S3.4]" + } + ] + } + ] + } + ] + }, + { + "re-name": [ + { + "data": "fpc1" + } + ], + "software-information": [ + { + "host-name": [ + { + "data": "JUNOS_EX4300" + } + ], + "product-model": [ + { + "data": "ex4300-48p" + } + ], + "product-name": [ + { + "data": "ex4300-48p" + } + ], + "junos-version": [ + { + "data": "21.4R3-S3.4" + } + ], + "package-information": [ + { + "name": [ + { + "data": "junos" + } + ], + "comment": [ + { + "data": "JUNOS EX Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "fips-mode-powerpc" + } + ], + "comment": [ + { + "data": "JUNOS FIPS mode utilities [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jcrypto-ex" + } + ], + "comment": [ + { + "data": "JUNOS Crypto Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jdocs-ex" + } + ], + "comment": [ + { + "data": "JUNOS Online Documentation [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jphone-home" + } + ], + "comment": [ + { + "data": "JUNOS Phone-Home Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jsd" + } + ], + "comment": [ + { + "data": "JUNOS jsd [powerpc-21.4R3-S3.4-jet-1]" + } + ] + }, + { + "name": [ + { + "data": "jsdn-powerpc" + } + ], + "comment": [ + { + "data": "JUNOS SDN Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "junos-ex-4300" + } + ], + "comment": [ + { + "data": "JUNOS EX 4300 Software Suite [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "jweb-ex" + } + ], + "comment": [ + { + "data": "JUNOS Web Management Platform Package [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "py-base-powerpc" + } + ], + "comment": [ + { + "data": "JUNOS py-base-powerpc [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "py-extensions-powerpc" + } + ], + "comment": [ + { + "data": "JUNOS py-extensions-powerpc [21.4R3-S3.4]" + } + ] + }, + { + "name": [ + { + "data": "restapi-ex" + } + ], + "comment": [ + { + "data": "REST API Software Suite [21.4R3-S3.4]" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "show chassis hardware | display json": { + "chassis-inventory": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.4R0/junos-chassis" + }, + "chassis": [ + { + "attributes": { + "junos:style": "inventory" + }, + "name": [ + { + "data": "Chassis" + } + ], + "serial-number": [ + { + "data": "PD3987654321" + } + ], + "description": [ + { + "data": "Virtual Chassis" + } + ], + "chassis-module": [ + { + "name": [ + { + "data": "Routing Engine 0" + } + ], + "version": [ + { + "data": "REV 24" + } + ], + "part-number": [ + { + "data": "650-044930" + } + ], + "serial-number": [ + { + "data": "PD3987654321" + } + ], + "description": [ + { + "data": "EX4300-48P" + } + ], + "clei-code": [ + { + "data": "IPMVX10FRB" + } + ], + "model-number": [ + { + "data": "EX4300-48P" + } + ] + }, + { + "name": [ + { + "data": "Routing Engine 1" + } + ], + "version": [ + { + "data": "REV 24" + } + ], + "part-number": [ + { + "data": "650-044930" + } + ], + "serial-number": [ + { + "data": "PD3716441327" + } + ], + "description": [ + { + "data": "EX4300-48P" + } + ], + "clei-code": [ + { + "data": "IPMVX10FRB" + } + ], + "model-number": [ + { + "data": "EX4300-48P" + } + ] + }, + { + "name": [ + { + "data": "FPC 0" + } + ], + "version": [ + { + "data": "REV 24" + } + ], + "part-number": [ + { + "data": "650-044930" + } + ], + "serial-number": [ + { + "data": "PD3987654321" + } + ], + "description": [ + { + "data": "EX4300-48P" + } + ], + "clei-code": [ + { + "data": "IPMVX10FRB" + } + ], + "model-number": [ + { + "data": "EX4300-48P" + } + ], + "chassis-sub-module": [ + { + "name": [ + { + "data": "CPU" + } + ], + "part-number": [ + { + "data": "BUILTIN" + } + ], + "serial-number": [ + { + "data": "BUILTIN" + } + ], + "description": [ + { + "data": "FPC CPU" + } + ] + }, + { + "name": [ + { + "data": "PIC 0" + } + ], + "version": [ + { + "data": "REV 24" + } + ], + "part-number": [ + { + "data": "BUILTIN" + } + ], + "serial-number": [ + { + "data": "BUILTIN" + } + ], + "description": [ + { + "data": "48x 10/100/1000 Base-T" + } + ], + "clei-code": [ + { + "data": "IPMVX10FRB" + } + ], + "model-number": [ + { + "data": "EX4300-48P" + } + ] + }, + { + "name": [ + { + "data": "PIC 1" + } + ], + "version": [ + { + "data": "REV 24" + } + ], + "part-number": [ + { + "data": "BUILTIN" + } + ], + "serial-number": [ + { + "data": "BUILTIN" + } + ], + "description": [ + { + "data": "4x 40GE QSFP+" + } + ], + "clei-code": [ + { + "data": "IPMVX10FRB" + } + ], + "model-number": [ + { + "data": "EX4300-48P" + } + ], + "chassis-sub-sub-module": [ + { + "name": [ + { + "data": "Xcvr 0" + } + ], + "version": [ + { + "data": "REV 01" + } + ], + "part-number": [ + { + "data": "740-038623" + } + ], + "serial-number": [ + { + "data": "MOC18196230590" + } + ], + "description": [ + { + "data": "QSFP+-40G-CU1M" + } + ] + }, + { + "name": [ + { + "data": "Xcvr 1" + } + ], + "version": [ + { + "data": "REV 01" + } + ], + "part-number": [ + { + "data": "740-038623" + } + ], + "serial-number": [ + { + "data": "MOC19356230236" + } + ], + "description": [ + { + "data": "QSFP+-40G-CU1M" + } + ] + } + ] + }, + { + "name": [ + { + "data": "PIC 2" + } + ], + "version": [ + { + "data": "REV 02" + } + ], + "part-number": [ + { + "data": "611-063980" + } + ], + "serial-number": [ + { + "data": "MY3720250434" + } + ], + "description": [ + { + "data": "4x 1G/10G SFP/SFP+" + } + ], + "clei-code": [ + { + "data": "IPUIBVUMAC" + } + ], + "model-number": [ + { + "data": "EX-UM-4X4SFP" + } + ], + "chassis-sub-sub-module": [ + { + "name": [ + { + "data": "Xcvr 0" + } + ], + "version": [ + { + "data": "REV 01" + } + ], + "part-number": [ + { + "data": "740-011614" + } + ], + "serial-number": [ + { + "data": "N4RCF2F" + } + ], + "description": [ + { + "data": "SFP-LX10" + } + ] + } + ] + }, + { + "name": [ + { + "data": "Power Supply 0" + } + ], + "version": [ + { + "data": "REV 01" + } + ], + "part-number": [ + { + "data": "740-046871" + } + ], + "serial-number": [ + { + "data": "1EDA6411095" + } + ], + "description": [ + { + "data": "JPSU-1100-AC-AFO-A" + } + ], + "clei-code": [ + { + "data": "IPUPAJ5KAA" + } + ], + "model-number": [ + { + "data": "JPSU-1100-AC-AFO" + } + ] + }, + { + "name": [ + { + "data": "Power Supply 1" + } + ], + "version": [ + { + "data": "REV 01" + } + ], + "part-number": [ + { + "data": "740-046871" + } + ], + "serial-number": [ + { + "data": "1EDA6534389" + } + ], + "description": [ + { + "data": "JPSU-1100-AC-AFO-A" + } + ], + "clei-code": [ + { + "data": "IPUPAJ5KAA" + } + ], + "model-number": [ + { + "data": "JPSU-1100-AC-AFO" + } + ] + }, + { + "name": [ + { + "data": "Fan Tray 0" + } + ], + "description": [ + { + "data": "Fan Module, Airflow Out (AFO)" + } + ] + }, + { + "name": [ + { + "data": "Fan Tray 1" + } + ], + "description": [ + { + "data": "Fan Module, Airflow Out (AFO)" + } + ] + } + ] + }, + { + "name": [ + { + "data": "FPC 1" + } + ], + "version": [ + { + "data": "REV 24" + } + ], + "part-number": [ + { + "data": "650-044930" + } + ], + "serial-number": [ + { + "data": "PD3716441327" + } + ], + "description": [ + { + "data": "EX4300-48P" + } + ], + "clei-code": [ + { + "data": "IPMVX10FRB" + } + ], + "model-number": [ + { + "data": "EX4300-48P" + } + ], + "chassis-sub-module": [ + { + "name": [ + { + "data": "CPU" + } + ], + "part-number": [ + { + "data": "BUILTIN" + } + ], + "serial-number": [ + { + "data": "BUILTIN" + } + ], + "description": [ + { + "data": "FPC CPU" + } + ] + }, + { + "name": [ + { + "data": "PIC 0" + } + ], + "version": [ + { + "data": "REV 24" + } + ], + "part-number": [ + { + "data": "BUILTIN" + } + ], + "serial-number": [ + { + "data": "BUILTIN" + } + ], + "description": [ + { + "data": "48x 10/100/1000 Base-T" + } + ], + "clei-code": [ + { + "data": "IPMVX10FRB" + } + ], + "model-number": [ + { + "data": "EX4300-48P" + } + ] + }, + { + "name": [ + { + "data": "PIC 1" + } + ], + "version": [ + { + "data": "REV 24" + } + ], + "part-number": [ + { + "data": "BUILTIN" + } + ], + "serial-number": [ + { + "data": "BUILTIN" + } + ], + "description": [ + { + "data": "4x 40GE QSFP+" + } + ], + "clei-code": [ + { + "data": "IPMVX10FRB" + } + ], + "model-number": [ + { + "data": "EX4300-48P" + } + ], + "chassis-sub-sub-module": [ + { + "name": [ + { + "data": "Xcvr 0" + } + ], + "version": [ + { + "data": "REV 01" + } + ], + "part-number": [ + { + "data": "740-038623" + } + ], + "serial-number": [ + { + "data": "MOC19356230236" + } + ], + "description": [ + { + "data": "QSFP+-40G-CU1M" + } + ] + }, + { + "name": [ + { + "data": "Xcvr 1" + } + ], + "version": [ + { + "data": "REV 01" + } + ], + "part-number": [ + { + "data": "740-038623" + } + ], + "serial-number": [ + { + "data": "MOC18196230590" + } + ], + "description": [ + { + "data": "QSFP+-40G-CU1M" + } + ] + } + ] + }, + { + "name": [ + { + "data": "Power Supply 0" + } + ], + "version": [ + { + "data": "REV 01" + } + ], + "part-number": [ + { + "data": "740-046871" + } + ], + "serial-number": [ + { + "data": "1EDA6411150" + } + ], + "description": [ + { + "data": "JPSU-1100-AC-AFO-A" + } + ], + "clei-code": [ + { + "data": "IPUPAJ5KAA" + } + ], + "model-number": [ + { + "data": "JPSU-1100-AC-AFO" + } + ] + }, + { + "name": [ + { + "data": "Power Supply 1" + } + ], + "version": [ + { + "data": "REV 01" + } + ], + "part-number": [ + { + "data": "740-046871" + } + ], + "serial-number": [ + { + "data": "1EDA6534383" + } + ], + "description": [ + { + "data": "JPSU-1100-AC-AFO-A" + } + ], + "clei-code": [ + { + "data": "IPUPAJ5KAA" + } + ], + "model-number": [ + { + "data": "JPSU-1100-AC-AFO" + } + ] + }, + { + "name": [ + { + "data": "Fan Tray 0" + } + ], + "description": [ + { + "data": "Fan Module, Airflow Out (AFO)" + } + ] + }, + { + "name": [ + { + "data": "Fan Tray 1" + } + ], + "description": [ + { + "data": "Fan Module, Airflow Out (AFO)" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "show interfaces terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.4R0/junos-interface", + "junos:style": "terse" + }, + "physical-interface": [ + { + "name": [ + { + "data": "vcp-255/1/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vcp-255/1/0.32768" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "vcp-255/1/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vcp-255/1/1.32768" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/0" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gr-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/4.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/6.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/9.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/10" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/10.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/11" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/11.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/12" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/12.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/13" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/13.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/14" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/14.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/15" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/15.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/16" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/16.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/17" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/17.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/18" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/18.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/19" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/19.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/20" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/20.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/21" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/21.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/22" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/22.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/23" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/23.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/24" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/24.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/25" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/25.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/26" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/26.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/27" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/27.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/28" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/28.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/29" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/29.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/30" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/30.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/31" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/31.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/32" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/32.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/33" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/33.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/34" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/34.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/35" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/35.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/36" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/36.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/37" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/37.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/38" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/38.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/39" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/39.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/40" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/40.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/41" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/41.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/42" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/42.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/43" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/43.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/44" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/44.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/45" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/45.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/46" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/46.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/47" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/47.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/2/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/2" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/3" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/4" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/4.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/5" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/6" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/6.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/7" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/8" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/9.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/10" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/10.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/11" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/11.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/12" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/12.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/13" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/13.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/14" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/14.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/15" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/15.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/16" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/16.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/17" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/17.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/18" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/18.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/19" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/19.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/20" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/20.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/21" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/21.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/22" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/22.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/23" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/23.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/24" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/24.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/25" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/25.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/26" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/26.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/27" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/27.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/28" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/28.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/29" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/29.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/30" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/30.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/31" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/31.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/32" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/32.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/33" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/33.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/34" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/34.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/35" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/35.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/36" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/36.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/37" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/37.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/38" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/38.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/39" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/39.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/40" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/40.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/41" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/41.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/42" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/42.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/43" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/43.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/44" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/44.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/45" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/45.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/46" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/46.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/47" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/47.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "bme0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "bme0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.16/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.63/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "bme0.32770" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "irb.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::9ecc:8300:50:b701/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "irb.16" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1/23", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "me0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "me0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ] + }, + { + "name": [ + { + "data": "vme" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vme.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::9ecc:83ff:fe50:9482/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "show route protocol direct | display json": { + "route-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.4R0/junos-routing" + }, + "route-table": [ + { + "comment": "keepalive", + "table-name": [ + { + "data": "inet.0" + } + ], + "destination-count": [ + { + "data": "3" + } + ], + "total-route-count": [ + { + "data": "3" + } + ], + "active-route-count": [ + { + "data": "3" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "prefix-max": [ + { + "data": "32768" + } + ], + "prefix-threshold": [ + { + "data": "32768" + } + ], + "prefix-label": [ + { + "data": "destinations" + } + ], + "rt": [ + { + "attributes": { + "junos:style": "brief" + }, + "rt-destination": [ + { + "data": "198.51.100.0/23" + } + ], + "rt-entry": [ + { + "active-tag": [ + { + "data": "*" + } + ], + "current-active": [ + { + "data": [ + null + ] + } + ], + "last-active": [ + { + "data": [ + null + ] + } + ], + "protocol-name": [ + { + "data": "Direct" + } + ], + "preference": [ + { + "data": "0" + } + ], + "age": [ + { + "data": "58w5d 15:51:10", + "attributes": { + "junos:seconds": "35567470" + } + } + ], + "nh": [ + { + "selected-next-hop": [ + { + "data": [ + null + ] + } + ], + "via": [ + { + "data": "irb.16" + } + ] + } + ] + } + ] + } + ] + }, + { + "table-name": [ + { + "data": "inet6.0" + } + ], + "destination-count": [ + { + "data": "3" + } + ], + "total-route-count": [ + { + "data": "3" + } + ], + "active-route-count": [ + { + "data": "3" + } + ], + "holddown-route-count": [ + { + "data": "0" + } + ], + "hidden-route-count": [ + { + "data": "0" + } + ], + "prefix-max": [ + { + "data": "20480" + } + ], + "prefix-threshold": [ + { + "data": "20480" + } + ], + "prefix-label": [ + { + "data": "destinations" + } + ] + } + ] + } + ] + }, + "show interfaces | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.4R0/junos-interface", + "junos:style": "normal" + }, + "physical-interface": [ + { + "name": [ + { + "data": "vcp-255/1/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "128" + } + ], + "snmp-index": [ + { + "data": "101" + } + ], + "if-type": [ + { + "data": "105" + } + ], + "link-level-type": [ + { + "data": "Virtual-Chassis-Interface" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "40000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:40:14 CDT (58w5d 15:49 ago)", + "attributes": { + "junos:seconds": "35567354" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "31912" + } + ], + "input-pps": [ + { + "data": "10" + } + ], + "output-bps": [ + { + "data": "37744" + } + ], + "output-pps": [ + { + "data": "25" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vcp-255/1/0.32768" + } + ], + "local-index": [ + { + "data": "64" + } + ], + "snmp-index": [ + { + "data": "102" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "vcp-255/1/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "129" + } + ], + "snmp-index": [ + { + "data": "103" + } + ], + "if-type": [ + { + "data": "105" + } + ], + "link-level-type": [ + { + "data": "Virtual-Chassis-Interface" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "speed": [ + { + "data": "40000mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:40:13 CDT (58w5d 15:49 ago)", + "attributes": { + "junos:seconds": "35567355" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "124416" + } + ], + "input-pps": [ + { + "data": "45" + } + ], + "output-bps": [ + { + "data": "63288" + } + ], + "output-pps": [ + { + "data": "18" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vcp-255/1/1.32768" + } + ], + "local-index": [ + { + "data": "65" + } + ], + "snmp-index": [ + { + "data": "104" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "filter-information": [ + {} + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/0" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "748" + } + ], + "snmp-index": [ + { + "data": "513" + } + ], + "description": [ + { + "data": "TESTING AP108" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:03" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:03" + } + ], + "interface-flapped": [ + { + "data": "2024-08-13 17:55:45 CDT (1w6d 15:33 ago)", + "attributes": { + "junos:seconds": "1179223" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/0.0" + } + ], + "local-index": [ + { + "data": "654" + } + ], + "snmp-index": [ + { + "data": "514" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "470" + } + ], + "output-packets": [ + { + "data": "470" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "gr-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "641" + } + ], + "snmp-index": [ + { + "data": "502" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "747" + } + ], + "snmp-index": [ + { + "data": "510" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "653" + } + ], + "snmp-index": [ + { + "data": "511" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "746" + } + ], + "snmp-index": [ + { + "data": "507" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "local-index": [ + { + "data": "651" + } + ], + "snmp-index": [ + { + "data": "508" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "local-index": [ + { + "data": "652" + } + ], + "snmp-index": [ + { + "data": "509" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "749" + } + ], + "snmp-index": [ + { + "data": "512" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:04" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:04" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567478" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/1.0" + } + ], + "local-index": [ + { + "data": "656" + } + ], + "snmp-index": [ + { + "data": "515" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "750" + } + ], + "snmp-index": [ + { + "data": "516" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:05" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:05" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567478" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/2.0" + } + ], + "local-index": [ + { + "data": "657" + } + ], + "snmp-index": [ + { + "data": "517" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "751" + } + ], + "snmp-index": [ + { + "data": "518" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:06" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:06" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/3.0" + } + ], + "local-index": [ + { + "data": "660" + } + ], + "snmp-index": [ + { + "data": "519" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "752" + } + ], + "snmp-index": [ + { + "data": "520" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:07" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:07" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/4.0" + } + ], + "local-index": [ + { + "data": "661" + } + ], + "snmp-index": [ + { + "data": "521" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "753" + } + ], + "snmp-index": [ + { + "data": "522" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:08" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:08" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/5.0" + } + ], + "local-index": [ + { + "data": "662" + } + ], + "snmp-index": [ + { + "data": "523" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "754" + } + ], + "snmp-index": [ + { + "data": "524" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:09" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:09" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/6.0" + } + ], + "local-index": [ + { + "data": "663" + } + ], + "snmp-index": [ + { + "data": "525" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "755" + } + ], + "snmp-index": [ + { + "data": "526" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:0a" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:0a" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/7.0" + } + ], + "local-index": [ + { + "data": "664" + } + ], + "snmp-index": [ + { + "data": "527" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "756" + } + ], + "snmp-index": [ + { + "data": "528" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:0b" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:0b" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/8.0" + } + ], + "local-index": [ + { + "data": "665" + } + ], + "snmp-index": [ + { + "data": "530" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "757" + } + ], + "snmp-index": [ + { + "data": "529" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:0c" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:0c" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/9.0" + } + ], + "local-index": [ + { + "data": "666" + } + ], + "snmp-index": [ + { + "data": "534" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/10" + } + ], + "admin-status": [ + { + "data": "down", + "attributes": { + "junos:format": "Administratively down" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "758" + } + ], + "snmp-index": [ + { + "data": "531" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:0d" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:0d" + } + ], + "interface-flapped": [ + { + "data": "2023-11-15 17:56:46 CST (40w5d 14:32 ago)", + "attributes": { + "junos:seconds": "24676363" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/10.0" + } + ], + "local-index": [ + { + "data": "667" + } + ], + "snmp-index": [ + { + "data": "545" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/11" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "759" + } + ], + "snmp-index": [ + { + "data": "532" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:0e" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:0e" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/11.0" + } + ], + "local-index": [ + { + "data": "668" + } + ], + "snmp-index": [ + { + "data": "551" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/12" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "760" + } + ], + "snmp-index": [ + { + "data": "533" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:0f" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:0f" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/12.0" + } + ], + "local-index": [ + { + "data": "669" + } + ], + "snmp-index": [ + { + "data": "560" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/13" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "761" + } + ], + "snmp-index": [ + { + "data": "535" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:10" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:10" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/13.0" + } + ], + "local-index": [ + { + "data": "670" + } + ], + "snmp-index": [ + { + "data": "566" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/14" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "762" + } + ], + "snmp-index": [ + { + "data": "536" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:11" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:11" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/14.0" + } + ], + "local-index": [ + { + "data": "671" + } + ], + "snmp-index": [ + { + "data": "574" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/15" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "763" + } + ], + "snmp-index": [ + { + "data": "537" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:12" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:12" + } + ], + "interface-flapped": [ + { + "data": "2023-11-13 15:45:10 CST (41w0d 16:44 ago)", + "attributes": { + "junos:seconds": "24857059" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/15.0" + } + ], + "local-index": [ + { + "data": "672" + } + ], + "snmp-index": [ + { + "data": "575" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/16" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "764" + } + ], + "snmp-index": [ + { + "data": "538" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:13" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:13" + } + ], + "interface-flapped": [ + { + "data": "2024-04-11 13:12:50 CDT (19w4d 20:16 ago)", + "attributes": { + "junos:seconds": "11909799" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/16.0" + } + ], + "local-index": [ + { + "data": "673" + } + ], + "snmp-index": [ + { + "data": "576" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/17" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "765" + } + ], + "snmp-index": [ + { + "data": "539" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:14" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:14" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/17.0" + } + ], + "local-index": [ + { + "data": "674" + } + ], + "snmp-index": [ + { + "data": "577" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/18" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "766" + } + ], + "snmp-index": [ + { + "data": "540" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:15" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:15" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567479" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/18.0" + } + ], + "local-index": [ + { + "data": "675" + } + ], + "snmp-index": [ + { + "data": "578" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/19" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "767" + } + ], + "snmp-index": [ + { + "data": "541" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:16" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:16" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/19.0" + } + ], + "local-index": [ + { + "data": "676" + } + ], + "snmp-index": [ + { + "data": "579" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/20" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "768" + } + ], + "snmp-index": [ + { + "data": "542" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:17" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:17" + } + ], + "interface-flapped": [ + { + "data": "2024-08-22 13:55:45 CDT (4d 19:33 ago)", + "attributes": { + "junos:seconds": "416025" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/20.0" + } + ], + "local-index": [ + { + "data": "677" + } + ], + "snmp-index": [ + { + "data": "580" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "20287" + } + ], + "output-packets": [ + { + "data": "208" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/21" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "769" + } + ], + "snmp-index": [ + { + "data": "543" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:18" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:18" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/21.0" + } + ], + "local-index": [ + { + "data": "678" + } + ], + "snmp-index": [ + { + "data": "581" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/22" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "770" + } + ], + "snmp-index": [ + { + "data": "544" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:19" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:19" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/22.0" + } + ], + "local-index": [ + { + "data": "679" + } + ], + "snmp-index": [ + { + "data": "582" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/23" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "771" + } + ], + "snmp-index": [ + { + "data": "546" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:1a" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:1a" + } + ], + "interface-flapped": [ + { + "data": "2024-02-08 13:27:34 CST (28w4d 19:01 ago)", + "attributes": { + "junos:seconds": "17348516" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/23.0" + } + ], + "local-index": [ + { + "data": "680" + } + ], + "snmp-index": [ + { + "data": "583" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/24" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "772" + } + ], + "snmp-index": [ + { + "data": "547" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:1b" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:1b" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/24.0" + } + ], + "local-index": [ + { + "data": "681" + } + ], + "snmp-index": [ + { + "data": "584" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/25" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "773" + } + ], + "snmp-index": [ + { + "data": "548" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:1c" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:1c" + } + ], + "interface-flapped": [ + { + "data": "2024-01-11 13:33:22 CST (32w4d 18:56 ago)", + "attributes": { + "junos:seconds": "19767368" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/25.0" + } + ], + "local-index": [ + { + "data": "682" + } + ], + "snmp-index": [ + { + "data": "585" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/26" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "774" + } + ], + "snmp-index": [ + { + "data": "549" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:1d" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:1d" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/26.0" + } + ], + "local-index": [ + { + "data": "683" + } + ], + "snmp-index": [ + { + "data": "586" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/27" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "775" + } + ], + "snmp-index": [ + { + "data": "550" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:1e" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:1e" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/27.0" + } + ], + "local-index": [ + { + "data": "684" + } + ], + "snmp-index": [ + { + "data": "587" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/28" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "776" + } + ], + "snmp-index": [ + { + "data": "552" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:1f" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:1f" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/28.0" + } + ], + "local-index": [ + { + "data": "685" + } + ], + "snmp-index": [ + { + "data": "588" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/29" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "777" + } + ], + "snmp-index": [ + { + "data": "553" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:20" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:20" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/29.0" + } + ], + "local-index": [ + { + "data": "686" + } + ], + "snmp-index": [ + { + "data": "589" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/30" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "778" + } + ], + "snmp-index": [ + { + "data": "554" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:21" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:21" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/30.0" + } + ], + "local-index": [ + { + "data": "687" + } + ], + "snmp-index": [ + { + "data": "590" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/31" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "779" + } + ], + "snmp-index": [ + { + "data": "555" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:22" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:22" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/31.0" + } + ], + "local-index": [ + { + "data": "688" + } + ], + "snmp-index": [ + { + "data": "591" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/32" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "780" + } + ], + "snmp-index": [ + { + "data": "556" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:23" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:23" + } + ], + "interface-flapped": [ + { + "data": "2023-11-13 15:56:24 CST (41w0d 16:33 ago)", + "attributes": { + "junos:seconds": "24856386" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/32.0" + } + ], + "local-index": [ + { + "data": "689" + } + ], + "snmp-index": [ + { + "data": "592" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/33" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "781" + } + ], + "snmp-index": [ + { + "data": "558" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:24" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:24" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/33.0" + } + ], + "local-index": [ + { + "data": "690" + } + ], + "snmp-index": [ + { + "data": "593" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/34" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "782" + } + ], + "snmp-index": [ + { + "data": "557" + } + ], + "description": [ + { + "data": "ge-0/0/34|VFLAB-AP01+" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:25" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:25" + } + ], + "interface-flapped": [ + { + "data": "2024-06-18 03:26:22 CDT (10w0d 06:03 ago)", + "attributes": { + "junos:seconds": "6069788" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "944" + } + ], + "input-pps": [ + { + "data": "1" + } + ], + "output-bps": [ + { + "data": "640" + } + ], + "output-pps": [ + { + "data": "1" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/34.0" + } + ], + "local-index": [ + { + "data": "691" + } + ], + "snmp-index": [ + { + "data": "594" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "63336" + } + ], + "output-packets": [ + { + "data": "44895" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/35" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "783" + } + ], + "snmp-index": [ + { + "data": "559" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:26" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:26" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/35.0" + } + ], + "local-index": [ + { + "data": "692" + } + ], + "snmp-index": [ + { + "data": "595" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/36" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "784" + } + ], + "snmp-index": [ + { + "data": "561" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:27" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:27" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/36.0" + } + ], + "local-index": [ + { + "data": "693" + } + ], + "snmp-index": [ + { + "data": "596" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/37" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "785" + } + ], + "snmp-index": [ + { + "data": "562" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:28" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:28" + } + ], + "interface-flapped": [ + { + "data": "2024-02-08 13:20:35 CST (28w4d 19:08 ago)", + "attributes": { + "junos:seconds": "17348935" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/37.0" + } + ], + "local-index": [ + { + "data": "694" + } + ], + "snmp-index": [ + { + "data": "597" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/38" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "786" + } + ], + "snmp-index": [ + { + "data": "563" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:29" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:29" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/38.0" + } + ], + "local-index": [ + { + "data": "695" + } + ], + "snmp-index": [ + { + "data": "598" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/39" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "787" + } + ], + "snmp-index": [ + { + "data": "564" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:2a" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:2a" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567480" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/39.0" + } + ], + "local-index": [ + { + "data": "696" + } + ], + "snmp-index": [ + { + "data": "599" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/40" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "788" + } + ], + "snmp-index": [ + { + "data": "565" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:2b" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:2b" + } + ], + "interface-flapped": [ + { + "data": "2024-06-04 11:57:35 CDT (11w6d 21:31 ago)", + "attributes": { + "junos:seconds": "7248716" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "168" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "120624" + } + ], + "output-pps": [ + { + "data": "116" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/40.0" + } + ], + "local-index": [ + { + "data": "697" + } + ], + "snmp-index": [ + { + "data": "600" + } + ], + "description": [ + { + "data": "UNTRUST - TO FW01 PORT 5" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "21117" + } + ], + "output-packets": [ + { + "data": "44192" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/41" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "789" + } + ], + "snmp-index": [ + { + "data": "567" + } + ], + "description": [ + { + "data": "ge-0/0/41|AP04" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:2c" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:2c" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:38:10 CDT (58w5d 15:51 ago)", + "attributes": { + "junos:seconds": "35567481" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/41.0" + } + ], + "local-index": [ + { + "data": "698" + } + ], + "snmp-index": [ + { + "data": "601" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/42" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "790" + } + ], + "snmp-index": [ + { + "data": "568" + } + ], + "description": [ + { + "data": "ACMEVF-ZPE01" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:2d" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:2d" + } + ], + "interface-flapped": [ + { + "data": "2024-08-01 11:22:38 CDT (3w4d 22:06 ago)", + "attributes": { + "junos:seconds": "2239613" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "656" + } + ], + "input-pps": [ + { + "data": "1" + } + ], + "output-bps": [ + { + "data": "1824" + } + ], + "output-pps": [ + { + "data": "2" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/42.0" + } + ], + "local-index": [ + { + "data": "699" + } + ], + "snmp-index": [ + { + "data": "602" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "67191" + } + ], + "output-packets": [ + { + "data": "58577" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/43" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "791" + } + ], + "snmp-index": [ + { + "data": "569" + } + ], + "description": [ + { + "data": "TRUST - TO FW02 PORT 6" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:2e" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:2e" + } + ], + "interface-flapped": [ + { + "data": "2023-08-01 13:56:39 CDT (55w6d 19:32 ago)", + "attributes": { + "junos:seconds": "33852772" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/43.0" + } + ], + "local-index": [ + { + "data": "700" + } + ], + "snmp-index": [ + { + "data": "603" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/44" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "792" + } + ], + "snmp-index": [ + { + "data": "570" + } + ], + "description": [ + { + "data": "TO FW01 MGMT" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:2f" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:2f" + } + ], + "interface-flapped": [ + { + "data": "2024-05-22 23:07:58 CDT (13w5d 10:21 ago)", + "attributes": { + "junos:seconds": "8331693" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "2216" + } + ], + "input-pps": [ + { + "data": "3" + } + ], + "output-bps": [ + { + "data": "3144" + } + ], + "output-pps": [ + { + "data": "4" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/44.0" + } + ], + "local-index": [ + { + "data": "701" + } + ], + "snmp-index": [ + { + "data": "604" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "134" + } + ], + "output-packets": [ + { + "data": "44177" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/45" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "793" + } + ], + "snmp-index": [ + { + "data": "571" + } + ], + "description": [ + { + "data": "TRUST - TO FW01 PORT 7" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:30" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:30" + } + ], + "interface-flapped": [ + { + "data": "2024-05-22 23:13:45 CDT (13w5d 10:15 ago)", + "attributes": { + "junos:seconds": "8331346" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "114160" + } + ], + "input-pps": [ + { + "data": "130" + } + ], + "output-bps": [ + { + "data": "877520" + } + ], + "output-pps": [ + { + "data": "307" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/45.0" + } + ], + "local-index": [ + { + "data": "702" + } + ], + "snmp-index": [ + { + "data": "605" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "139621" + } + ], + "output-packets": [ + { + "data": "658144" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/46" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "794" + } + ], + "snmp-index": [ + { + "data": "572" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:31" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:31" + } + ], + "interface-flapped": [ + { + "data": "2024-05-22 23:13:48 CDT (13w5d 10:15 ago)", + "attributes": { + "junos:seconds": "8331343" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "997392" + } + ], + "input-pps": [ + { + "data": "307" + } + ], + "output-bps": [ + { + "data": "42976" + } + ], + "output-pps": [ + { + "data": "17" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/46.0" + } + ], + "local-index": [ + { + "data": "703" + } + ], + "snmp-index": [ + { + "data": "606" + } + ], + "description": [ + { + "data": "UNTRUST - TO FW01 PORT 8" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "20436" + } + ], + "output-packets": [ + { + "data": "44200" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/0/47" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "795" + } + ], + "snmp-index": [ + { + "data": "573" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:32" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:32" + } + ], + "interface-flapped": [ + { + "data": "2024-06-06 13:33:59 CDT (11w4d 19:55 ago)", + "attributes": { + "junos:seconds": "7070132" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "42120" + } + ], + "input-pps": [ + { + "data": "15" + } + ], + "output-bps": [ + { + "data": "998680" + } + ], + "output-pps": [ + { + "data": "309" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/47.0" + } + ], + "local-index": [ + { + "data": "704" + } + ], + "snmp-index": [ + { + "data": "607" + } + ], + "description": [ + { + "data": "DIA" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "235706" + } + ], + "output-packets": [ + { + "data": "44171" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-0/2/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "846" + } + ], + "snmp-index": [ + { + "data": "712" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "1000mbps" + } + ], + "duplex": [ + { + "data": "Full-Duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "if-media-type": [ + { + "data": "Fiber" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:37" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:37" + } + ], + "interface-flapped": [ + { + "data": "2024-06-04 11:27:14 CDT (11w6d 22:02 ago)", + "attributes": { + "junos:seconds": "7250537" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "75056" + } + ], + "input-pps": [ + { + "data": "71" + } + ], + "output-bps": [ + { + "data": "344" + } + ], + "output-pps": [ + { + "data": "1" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/2/0.0" + } + ], + "local-index": [ + { + "data": "551" + } + ], + "snmp-index": [ + { + "data": "713" + } + ], + "description": [ + { + "data": "SECONDARY DIA" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "810980" + } + ], + "output-packets": [ + { + "data": "44183" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "798" + } + ], + "snmp-index": [ + { + "data": "614" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:83" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:83" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.0" + } + ], + "local-index": [ + { + "data": "708" + } + ], + "snmp-index": [ + { + "data": "615" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfe-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "797" + } + ], + "snmp-index": [ + { + "data": "612" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "local-index": [ + { + "data": "707" + } + ], + "snmp-index": [ + { + "data": "613" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "796" + } + ], + "snmp-index": [ + { + "data": "609" + } + ], + "speed": [ + { + "data": "800mbps" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "local-index": [ + { + "data": "705" + } + ], + "snmp-index": [ + { + "data": "610" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "local-index": [ + { + "data": "706" + } + ], + "snmp-index": [ + { + "data": "611" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "0" + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-mtu-user-conf": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/1" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "799" + } + ], + "snmp-index": [ + { + "data": "616" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:84" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:84" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/1.0" + } + ], + "local-index": [ + { + "data": "709" + } + ], + "snmp-index": [ + { + "data": "617" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/2" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "800" + } + ], + "snmp-index": [ + { + "data": "618" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:85" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:85" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/2.0" + } + ], + "local-index": [ + { + "data": "710" + } + ], + "snmp-index": [ + { + "data": "619" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/3" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "801" + } + ], + "snmp-index": [ + { + "data": "620" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:86" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:86" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/3.0" + } + ], + "local-index": [ + { + "data": "711" + } + ], + "snmp-index": [ + { + "data": "621" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/4" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "802" + } + ], + "snmp-index": [ + { + "data": "622" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:87" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:87" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/4.0" + } + ], + "local-index": [ + { + "data": "712" + } + ], + "snmp-index": [ + { + "data": "623" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/5" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "803" + } + ], + "snmp-index": [ + { + "data": "624" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:88" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:88" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/5.0" + } + ], + "local-index": [ + { + "data": "713" + } + ], + "snmp-index": [ + { + "data": "625" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/6" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "804" + } + ], + "snmp-index": [ + { + "data": "626" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:89" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:89" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/6.0" + } + ], + "local-index": [ + { + "data": "730" + } + ], + "snmp-index": [ + { + "data": "627" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/7" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "805" + } + ], + "snmp-index": [ + { + "data": "628" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:8a" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:8a" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/7.0" + } + ], + "local-index": [ + { + "data": "714" + } + ], + "snmp-index": [ + { + "data": "629" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/8" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "806" + } + ], + "snmp-index": [ + { + "data": "630" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:8b" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:8b" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/8.0" + } + ], + "local-index": [ + { + "data": "715" + } + ], + "snmp-index": [ + { + "data": "635" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/9" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "807" + } + ], + "snmp-index": [ + { + "data": "631" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:8c" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:8c" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/9.0" + } + ], + "local-index": [ + { + "data": "716" + } + ], + "snmp-index": [ + { + "data": "643" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/10" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "808" + } + ], + "snmp-index": [ + { + "data": "632" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:8d" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:8d" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/10.0" + } + ], + "local-index": [ + { + "data": "731" + } + ], + "snmp-index": [ + { + "data": "647" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/11" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "809" + } + ], + "snmp-index": [ + { + "data": "633" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:8e" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:8e" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/11.0" + } + ], + "local-index": [ + { + "data": "732" + } + ], + "snmp-index": [ + { + "data": "650" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/12" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "810" + } + ], + "snmp-index": [ + { + "data": "634" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:8f" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:8f" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567289" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/12.0" + } + ], + "local-index": [ + { + "data": "717" + } + ], + "snmp-index": [ + { + "data": "655" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/13" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "811" + } + ], + "snmp-index": [ + { + "data": "636" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:90" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:90" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/13.0" + } + ], + "local-index": [ + { + "data": "718" + } + ], + "snmp-index": [ + { + "data": "659" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/14" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "812" + } + ], + "snmp-index": [ + { + "data": "637" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:91" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:91" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/14.0" + } + ], + "local-index": [ + { + "data": "719" + } + ], + "snmp-index": [ + { + "data": "664" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/15" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "813" + } + ], + "snmp-index": [ + { + "data": "638" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:92" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:92" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/15.0" + } + ], + "local-index": [ + { + "data": "720" + } + ], + "snmp-index": [ + { + "data": "670" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/16" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "814" + } + ], + "snmp-index": [ + { + "data": "639" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:93" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:93" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/16.0" + } + ], + "local-index": [ + { + "data": "733" + } + ], + "snmp-index": [ + { + "data": "678" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/17" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "815" + } + ], + "snmp-index": [ + { + "data": "640" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:94" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:94" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/17.0" + } + ], + "local-index": [ + { + "data": "721" + } + ], + "snmp-index": [ + { + "data": "679" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/18" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "816" + } + ], + "snmp-index": [ + { + "data": "641" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:95" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:95" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/18.0" + } + ], + "local-index": [ + { + "data": "722" + } + ], + "snmp-index": [ + { + "data": "680" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/19" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "817" + } + ], + "snmp-index": [ + { + "data": "642" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:96" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:96" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/19.0" + } + ], + "local-index": [ + { + "data": "734" + } + ], + "snmp-index": [ + { + "data": "681" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/20" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "818" + } + ], + "snmp-index": [ + { + "data": "644" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:97" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:97" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/20.0" + } + ], + "local-index": [ + { + "data": "735" + } + ], + "snmp-index": [ + { + "data": "682" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/21" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "819" + } + ], + "snmp-index": [ + { + "data": "645" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:98" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:98" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/21.0" + } + ], + "local-index": [ + { + "data": "736" + } + ], + "snmp-index": [ + { + "data": "683" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/22" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "820" + } + ], + "snmp-index": [ + { + "data": "646" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:99" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:99" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/22.0" + } + ], + "local-index": [ + { + "data": "737" + } + ], + "snmp-index": [ + { + "data": "684" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/23" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "821" + } + ], + "snmp-index": [ + { + "data": "648" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:9a" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:9a" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/23.0" + } + ], + "local-index": [ + { + "data": "723" + } + ], + "snmp-index": [ + { + "data": "685" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/24" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "822" + } + ], + "snmp-index": [ + { + "data": "649" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:9b" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:9b" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/24.0" + } + ], + "local-index": [ + { + "data": "724" + } + ], + "snmp-index": [ + { + "data": "686" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/25" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "823" + } + ], + "snmp-index": [ + { + "data": "651" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:9c" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:9c" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/25.0" + } + ], + "local-index": [ + { + "data": "738" + } + ], + "snmp-index": [ + { + "data": "687" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/26" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "824" + } + ], + "snmp-index": [ + { + "data": "652" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:9d" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:9d" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/26.0" + } + ], + "local-index": [ + { + "data": "725" + } + ], + "snmp-index": [ + { + "data": "688" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/27" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "825" + } + ], + "snmp-index": [ + { + "data": "653" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:9e" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:9e" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/27.0" + } + ], + "local-index": [ + { + "data": "726" + } + ], + "snmp-index": [ + { + "data": "689" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/28" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "826" + } + ], + "snmp-index": [ + { + "data": "654" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:9f" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:9f" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/28.0" + } + ], + "local-index": [ + { + "data": "739" + } + ], + "snmp-index": [ + { + "data": "690" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/29" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "827" + } + ], + "snmp-index": [ + { + "data": "656" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a0" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a0" + } + ], + "interface-flapped": [ + { + "data": "2023-11-16 14:43:44 CST (40w4d 17:45 ago)", + "attributes": { + "junos:seconds": "24601549" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/29.0" + } + ], + "local-index": [ + { + "data": "727" + } + ], + "snmp-index": [ + { + "data": "691" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/30" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "828" + } + ], + "snmp-index": [ + { + "data": "657" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a1" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a1" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/30.0" + } + ], + "local-index": [ + { + "data": "740" + } + ], + "snmp-index": [ + { + "data": "692" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/31" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "829" + } + ], + "snmp-index": [ + { + "data": "658" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a2" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a2" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/31.0" + } + ], + "local-index": [ + { + "data": "728" + } + ], + "snmp-index": [ + { + "data": "693" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/32" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "830" + } + ], + "snmp-index": [ + { + "data": "660" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a3" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a3" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/32.0" + } + ], + "local-index": [ + { + "data": "729" + } + ], + "snmp-index": [ + { + "data": "694" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/33" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "831" + } + ], + "snmp-index": [ + { + "data": "661" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a4" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a4" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/33.0" + } + ], + "local-index": [ + { + "data": "741" + } + ], + "snmp-index": [ + { + "data": "695" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/34" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "832" + } + ], + "snmp-index": [ + { + "data": "662" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a5" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a5" + } + ], + "interface-flapped": [ + { + "data": "2024-08-27 09:21:32 CDT (00:08:01 ago)", + "attributes": { + "junos:seconds": "481" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "6384" + } + ], + "input-pps": [ + { + "data": "6" + } + ], + "output-bps": [ + { + "data": "10048" + } + ], + "output-pps": [ + { + "data": "5" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/34.0" + } + ], + "local-index": [ + { + "data": "742" + } + ], + "snmp-index": [ + { + "data": "696" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "99582" + } + ], + "output-packets": [ + { + "data": "55695" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/35" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "833" + } + ], + "snmp-index": [ + { + "data": "663" + } + ], + "description": [ + { + "data": "ge-1/0/35|AP02" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a6" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a6" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/35.0" + } + ], + "local-index": [ + { + "data": "743" + } + ], + "snmp-index": [ + { + "data": "697" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/36" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "834" + } + ], + "snmp-index": [ + { + "data": "665" + } + ], + "description": [ + { + "data": "ge-1/0/36|AP03" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a7" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a7" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/36.0" + } + ], + "local-index": [ + { + "data": "744" + } + ], + "snmp-index": [ + { + "data": "698" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/37" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "835" + } + ], + "snmp-index": [ + { + "data": "666" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a8" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a8" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/37.0" + } + ], + "local-index": [ + { + "data": "745" + } + ], + "snmp-index": [ + { + "data": "699" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/38" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "836" + } + ], + "snmp-index": [ + { + "data": "667" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:a9" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:a9" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/38.0" + } + ], + "local-index": [ + { + "data": "746" + } + ], + "snmp-index": [ + { + "data": "700" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/39" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "837" + } + ], + "snmp-index": [ + { + "data": "668" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:aa" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:aa" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/39.0" + } + ], + "local-index": [ + { + "data": "747" + } + ], + "snmp-index": [ + { + "data": "701" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/40" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "838" + } + ], + "snmp-index": [ + { + "data": "669" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:ab" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:ab" + } + ], + "interface-flapped": [ + { + "data": "2024-06-04 11:57:55 CDT (11w6d 21:31 ago)", + "attributes": { + "junos:seconds": "7248698" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "936" + } + ], + "output-pps": [ + { + "data": "2" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/40.0" + } + ], + "local-index": [ + { + "data": "748" + } + ], + "snmp-index": [ + { + "data": "702" + } + ], + "description": [ + { + "data": "UNTRUST - TO FW01 PORT 5" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "44178" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/41" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "839" + } + ], + "snmp-index": [ + { + "data": "671" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:ac" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:ac" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/41.0" + } + ], + "local-index": [ + { + "data": "749" + } + ], + "snmp-index": [ + { + "data": "703" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/42" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "840" + } + ], + "snmp-index": [ + { + "data": "672" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:ad" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:ad" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567291" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/42.0" + } + ], + "local-index": [ + { + "data": "750" + } + ], + "snmp-index": [ + { + "data": "704" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/43" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "841" + } + ], + "snmp-index": [ + { + "data": "673" + } + ], + "description": [ + { + "data": "TRUST - TO FW02 PORT 6" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:ae" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:ae" + } + ], + "interface-flapped": [ + { + "data": "2023-08-01 13:56:46 CDT (55w6d 19:32 ago)", + "attributes": { + "junos:seconds": "33852767" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/43.0" + } + ], + "local-index": [ + { + "data": "751" + } + ], + "snmp-index": [ + { + "data": "705" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/44" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "842" + } + ], + "snmp-index": [ + { + "data": "674" + } + ], + "description": [ + { + "data": "TO FW02 MGMT" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:af" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:af" + } + ], + "interface-flapped": [ + { + "data": "2024-05-22 23:08:00 CDT (13w5d 10:21 ago)", + "attributes": { + "junos:seconds": "8331693" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "36624" + } + ], + "input-pps": [ + { + "data": "13" + } + ], + "output-bps": [ + { + "data": "35536" + } + ], + "output-pps": [ + { + "data": "13" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/44.0" + } + ], + "local-index": [ + { + "data": "752" + } + ], + "snmp-index": [ + { + "data": "706" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "87" + } + ], + "output-packets": [ + { + "data": "44180" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/45" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "843" + } + ], + "snmp-index": [ + { + "data": "675" + } + ], + "description": [ + { + "data": "TRUST - TO FW02 PORT 7" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:b0" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:b0" + } + ], + "interface-flapped": [ + { + "data": "2024-05-22 23:13:41 CDT (13w5d 10:15 ago)", + "attributes": { + "junos:seconds": "8331354" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "768" + } + ], + "output-pps": [ + { + "data": "2" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/45.0" + } + ], + "local-index": [ + { + "data": "753" + } + ], + "snmp-index": [ + { + "data": "707" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "44169" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-port-mode-trunk": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/46" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "844" + } + ], + "snmp-index": [ + { + "data": "676" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Full-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:b1" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:b1" + } + ], + "interface-flapped": [ + { + "data": "2024-05-22 23:13:43 CDT (13w5d 10:15 ago)", + "attributes": { + "junos:seconds": "8331352" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "1464" + } + ], + "output-pps": [ + { + "data": "2" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "alarm-not-present": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/46.0" + } + ], + "local-index": [ + { + "data": "754" + } + ], + "snmp-index": [ + { + "data": "708" + } + ], + "description": [ + { + "data": "UNTRUST - TO FW01 PORT 8" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "44183" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "ge-1/0/47" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "845" + } + ], + "snmp-index": [ + { + "data": "677" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "sonet-mode": [ + { + "data": "LAN-PHY" + } + ], + "source-filtering": [ + { + "data": "disabled" + } + ], + "speed": [ + { + "data": "Auto" + } + ], + "link-mode": [ + { + "data": "Half-duplex" + } + ], + "eth-switch-error": [ + { + "data": "none" + } + ], + "bpdu-error": [ + { + "data": "none" + } + ], + "ld-pdu-error": [ + { + "data": "none" + } + ], + "l2pt-error": [ + { + "data": "none" + } + ], + "loopback": [ + { + "data": "disabled" + } + ], + "if-flow-control": [ + { + "data": "enabled" + } + ], + "if-auto-negotiation": [ + { + "data": "enabled" + } + ], + "if-remote-fault": [ + { + "data": "online" + } + ], + "ieee-802-3az-eee": [ + { + "data": "disabled" + } + ], + "if-auto-mdix": [ + { + "data": "enabled" + } + ], + "if-media-type": [ + { + "data": "Copper" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-down": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "physical-interface-cos-information": [ + { + "physical-interface-cos-hw-max-queues": [ + { + "data": "12" + } + ], + "physical-interface-cos-use-max-queues": [ + { + "data": "12" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:b2" + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:b2" + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:41:22 CDT (58w5d 15:48 ago)", + "attributes": { + "junos:seconds": "35567293" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-bps": [ + { + "data": "0" + } + ], + "input-pps": [ + { + "data": "0" + } + ], + "output-bps": [ + { + "data": "0" + } + ], + "output-pps": [ + { + "data": "0" + } + ] + } + ], + "active-alarms": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "active-defects": [ + { + "interface-alarms": [ + { + "ethernet-alarm-link-down": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ], + "ethernet-pcs-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "bit-error-seconds": [ + { + "data": "0" + } + ], + "errored-blocks-seconds": [ + { + "data": "0" + } + ] + } + ], + "ethernet-fec-mode": [ + { + "attributes": { + "junos:style": "verbose" + }, + "enabled_fec_mode": [ + {} + ] + } + ], + "ethernet-fec-statistics": [ + { + "attributes": { + "junos:style": "verbose" + }, + "fec_ccw_count": [ + { + "data": "0" + } + ], + "fec_nccw_count": [ + { + "data": "0" + } + ], + "fec_ccw_error_rate": [ + { + "data": "0" + } + ], + "fec_nccw_error_rate": [ + { + "data": "0" + } + ] + } + ], + "interface-transmit-statistics": [ + { + "data": "Disabled" + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/47.0" + } + ], + "local-index": [ + { + "data": "755" + } + ], + "snmp-index": [ + { + "data": "709" + } + ], + "description": [ + { + "data": "UNTRUST - INTERNET CIRCUIT" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x4040" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "bme0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "65" + } + ], + "snmp-index": [ + { + "data": "37" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "9512" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "02:00:00:00:00:0a", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:0a" + } + } + ], + "hardware-physical-address": [ + { + "data": "02:00:00:00:00:0a", + "attributes": { + "junos:format": "MAC 02:00:00:00:00:0a" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "31665835" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "bme0.0" + } + ], + "local-index": [ + { + "data": "3" + } + ], + "snmp-index": [ + { + "data": "220" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "44368953" + } + ], + "output-packets": [ + { + "data": "28955838" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "9498" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "3" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.1" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.4" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.16" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + }, + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.63" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "bme0.32770" + } + ], + "local-index": [ + { + "data": "8" + } + ], + "snmp-index": [ + { + "data": "40" + } + ], + "if-config-flags": [ + { + "iff-down": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "link-address": [ + { + "data": "0-0", + "attributes": { + "junos:format": "LinkAddress 0-0" + } + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "9512" + } + ], + "address-family-flags": [ + { + "internal-flags": [ + { + "data": "0x40" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "dsc" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "5" + } + ], + "snmp-index": [ + { + "data": "5" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "fti0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "642" + } + ], + "snmp-index": [ + { + "data": "501" + } + ], + "if-type": [ + { + "data": "FTI" + } + ], + "link-level-type": [ + { + "data": "Flexible-tunnel-Interface" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "gre" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "10" + } + ], + "snmp-index": [ + { + "data": "8" + } + ], + "if-type": [ + { + "data": "GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-point-to-point": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "ipip" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "11" + } + ], + "snmp-index": [ + { + "data": "9" + } + ], + "if-type": [ + { + "data": "IPIP" + } + ], + "link-level-type": [ + { + "data": "IP-over-IP" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "irb" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "640" + } + ], + "snmp-index": [ + { + "data": "503" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:81", + "attributes": { + "junos:format": "MAC 9c:cc:83:50:94:81" + } + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:01", + "attributes": { + "junos:format": "MAC 9c:cc:83:50:b7:01" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "irb.0" + } + ], + "local-index": [ + { + "data": "547" + } + ], + "snmp-index": [ + { + "data": "506" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "default-switch" + } + ], + "irb-bridge": [ + { + "data": "default" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::9ecc:8300:50:b701" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "in6-tentative": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "irb.16" + } + ], + "local-index": [ + { + "data": "548" + } + ], + "snmp-index": [ + { + "data": "608" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "default-switch" + } + ], + "irb-bridge": [ + { + "data": "IT_MANAGEMENT" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "1013664" + } + ], + "output-packets": [ + { + "data": "632305" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "4" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "198.51.100/23" + } + ], + "ifa-local": [ + { + "data": "198.51.100.1" + } + ], + "ifa-broadcast": [ + { + "data": "172.18.191.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "jsrv" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "643" + } + ], + "snmp-index": [ + { + "data": "504" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:b7:00", + "attributes": { + "junos:format": "MAC 9c:cc:83:50:b7:00" + } + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:00", + "attributes": { + "junos:format": "MAC 9c:cc:83:50:b7:00" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "local-index": [ + { + "data": "545" + } + ], + "snmp-index": [ + { + "data": "505" + } + ], + "if-config-flags": [ + { + "iff-up": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "unknown" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "None" + } + ], + "irb-bridge": [ + { + "data": "None" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-primary": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-default": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-primary": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifa-destination": [ + { + "data": "128/2" + } + ], + "ifa-local": [ + { + "data": "128.0.0.127" + } + ], + "ifa-broadcast": [ + { + "data": "191.255.255.255" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lo0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "6" + } + ], + "if-type": [ + { + "data": "Loopback" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-loopback": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "43263107" + } + ], + "output-packets": [ + { + "data": "43263107" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "lo0.16385" + } + ], + "local-index": [ + { + "data": "549" + } + ], + "snmp-index": [ + { + "data": "22" + } + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "encapsulation": [ + { + "data": "Unspecified" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "43262659" + } + ], + "output-packets": [ + { + "data": "43262659" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "lsi" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "4" + } + ], + "snmp-index": [ + { + "data": "4" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "LSI" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "me0" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "64" + } + ], + "snmp-index": [ + { + "data": "33" + } + ], + "if-type": [ + { + "data": "Ethernet" + } + ], + "link-level-type": [ + { + "data": "Ethernet" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ], + "ifdf-no-carrier": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:82", + "attributes": { + "junos:format": "MAC 9c:cc:83:50:94:82" + } + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:b7:00", + "attributes": { + "junos:format": "MAC 9c:cc:83:50:b7:00" + } + } + ], + "interface-flapped": [ + { + "data": "2023-07-12 17:33:58 CDT (58w5d 15:55 ago)", + "attributes": { + "junos:seconds": "35567737" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "me0.0" + } + ], + "local-index": [ + { + "data": "6" + } + ], + "snmp-index": [ + { + "data": "34" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "Ethernet-Bridge" + } + ], + "policer-overhead": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "address-family-flags": [ + { + "ifff-is-primary": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x40" + } + ] + } + ] + } + ] + } + ] + }, + { + "name": [ + { + "data": "mtun" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "66" + } + ], + "snmp-index": [ + { + "data": "12" + } + ], + "if-type": [ + { + "data": "Multicast-GRE" + } + ], + "link-level-type": [ + { + "data": "GRE" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pimd" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "26" + } + ], + "snmp-index": [ + { + "data": "11" + } + ], + "if-type": [ + { + "data": "PIMD" + } + ], + "link-level-type": [ + { + "data": "PIM-Decapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "pime" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "25" + } + ], + "snmp-index": [ + { + "data": "10" + } + ], + "if-type": [ + { + "data": "PIME" + } + ], + "link-level-type": [ + { + "data": "PIM-Encapsulator" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + {} + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "tap" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "local-index": [ + { + "data": "12" + } + ], + "snmp-index": [ + { + "data": "7" + } + ], + "if-type": [ + { + "data": "Software-Pseudo" + } + ], + "link-level-type": [ + { + "data": "Interface-Specific" + } + ], + "mtu": [ + { + "data": "Unlimited" + } + ], + "speed": [ + { + "data": "Unlimited" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "if-media-flags": [ + { + "ifmf-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ] + }, + { + "name": [ + { + "data": "vme" + } + ], + "admin-status": [ + { + "data": "up", + "attributes": { + "junos:format": "Enabled" + } + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "local-index": [ + { + "data": "67" + } + ], + "snmp-index": [ + { + "data": "35" + } + ], + "if-type": [ + { + "data": "Mgmt-VLAN" + } + ], + "link-level-type": [ + { + "data": "Mgmt-VLAN" + } + ], + "mtu": [ + { + "data": "1514" + } + ], + "if-device-flags": [ + { + "ifdf-present": [ + { + "data": [ + null + ] + } + ], + "ifdf-running": [ + { + "data": [ + null + ] + } + ] + } + ], + "ifd-specific-config-flags": [ + {} + ], + "if-config-flags": [ + { + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ] + } + ], + "link-type": [ + { + "data": "Full-Duplex" + } + ], + "if-media-flags": [ + { + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "current-physical-address": [ + { + "data": "9c:cc:83:50:94:82", + "attributes": { + "junos:format": "MAC 9c:cc:83:50:94:82" + } + } + ], + "hardware-physical-address": [ + { + "data": "9c:cc:83:50:94:82", + "attributes": { + "junos:format": "MAC 9c:cc:83:50:94:82" + } + } + ], + "interface-flapped": [ + { + "data": "Never", + "attributes": { + "junos:seconds": "0" + } + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "logical-interface": [ + { + "name": [ + { + "data": "vme.0" + } + ], + "local-index": [ + { + "data": "7" + } + ], + "snmp-index": [ + { + "data": "36" + } + ], + "if-config-flags": [ + { + "iff-device-down": [ + { + "data": [ + null + ] + } + ], + "iff-hardware-down": [ + { + "data": [ + null + ] + } + ], + "iff-snmp-traps": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "encapsulation": [ + { + "data": "ENET2" + } + ], + "policer-overhead": [ + {} + ], + "logical-interface-bandwidth": [ + { + "data": "1Gbps" + } + ], + "irb-domain": [ + { + "irb-routing-instance": [ + { + "data": "__juniper_private1__" + } + ], + "irb-bridge": [ + { + "data": "mgmt" + } + ] + } + ], + "traffic-statistics": [ + { + "attributes": { + "junos:style": "brief" + }, + "input-packets": [ + { + "data": "0" + } + ], + "output-packets": [ + { + "data": "0" + } + ] + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "0" + } + ], + "new-hold-limit": [ + { + "data": "0" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-sendbcast-pkt-to-re": [ + { + "data": [ + null + ] + } + ] + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "mtu": [ + { + "data": "1500" + } + ], + "max-local-cache": [ + { + "data": "75000" + } + ], + "new-hold-limit": [ + { + "data": "75000" + } + ], + "intf-curr-cnt": [ + { + "data": "0" + } + ], + "intf-unresolved-cnt": [ + { + "data": "0" + } + ], + "intf-dropcnt": [ + { + "data": "0" + } + ], + "address-family-flags": [ + { + "ifff-none": [ + { + "data": [ + null + ] + } + ] + } + ], + "interface-address": [ + { + "ifa-flags": [ + { + "ifaf-down": [ + { + "data": [ + null + ] + } + ], + "ifaf-current-preferred": [ + { + "data": [ + null + ] + } + ], + "internal-flags": [ + { + "data": "0x0" + } + ] + } + ], + "ifa-destination": [ + { + "data": "fe80::/64" + } + ], + "ifa-local": [ + { + "data": "fe80::9ecc:83ff:fe50:9482" + } + ], + "interface-address": [ + { + "in6-addr-flags": [ + { + "in6-tentative": [ + { + "data": [ + null + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + "show interfaces routing-instance all terse | display json": { + "interface-information": [ + { + "attributes": { + "xmlns": "http://xml.juniper.net/junos/21.4R0/junos-interface", + "junos:style": "vrf" + }, + "physical-interface": [ + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-0/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-0/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/4.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/6.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/9.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/10.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/11.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/12.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/13.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/14.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/15.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/16.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/17.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/18.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/19.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/20.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/21.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/22.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/23.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/24.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/25.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/26.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/27.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/28.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/29.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/30.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/31.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/32.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/33.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/34.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/35.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/36.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/37.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/38.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/39.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/40.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/41.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/42.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/43.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/44.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/45.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/46.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/0/47.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-0/2/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfe-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "pfh-1/0/0.16383" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "pfh-1/0/0.16384" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private2__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/1.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/2.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/3.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/4.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/5.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/6.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/7.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/8.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/9.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/10.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/11.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/12.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/13.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/14.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/15.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/16.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/17.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/18.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/19.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/20.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/21.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/22.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/23.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/24.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/25.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/26.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/27.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/28.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/29.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/30.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/31.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/32.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/33.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/34.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/35.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/36.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/37.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/38.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/39.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/40.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/41.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/42.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/43.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/44.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/45.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/46.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "ge-1/0/47.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "default-switch" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "bme0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.1/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.4/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.16/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + }, + { + "ifa-local": [ + { + "data": "128.0.0.63/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + }, + { + "name": [ + { + "data": "bme0.32770" + } + ], + "admin-status": [ + { + "data": "down" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "irb.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::9ecc:8300:50:b701/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + }, + { + "name": [ + { + "data": "irb.16" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "198.51.100.1/23", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "jsrv.1" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "128.0.0.127/2", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_services__" + } + ] + } + ] + }, + { + "logical-interface": [ + { + "name": [ + { + "data": "lo0.16385" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "up" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "me0.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "eth-switch" + } + ] + } + ], + "vrfname": [ + { + "data": "__juniper_private1__" + } + ] + } + ] + }, + {}, + {}, + {}, + {}, + { + "logical-interface": [ + { + "name": [ + { + "data": "vme.0" + } + ], + "admin-status": [ + { + "data": "up" + } + ], + "oper-status": [ + { + "data": "down" + } + ], + "filter-information": [ + {} + ], + "address-family": [ + { + "address-family-name": [ + { + "data": "inet" + } + ] + }, + { + "address-family-name": [ + { + "data": "inet6" + } + ], + "interface-address": [ + { + "ifa-local": [ + { + "data": "fe80::9ecc:83ff:fe50:9482/64", + "attributes": { + "junos:emit": "emit" + } + } + ] + } + ] + } + ], + "vrfname": [ + { + "data": "default" + } + ] + } + ] + } + ] + } + ] + }, + "show vlans | display json": [], + "show lldp neighbors | display json": { + "lldp-neighbors-information": [ + { + "attributes": { + "junos:style": "brief" + }, + "lldp-neighbor-information": [ + { + "lldp-local-port-id": [ + { + "data": "ge-1/0/34" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "98:80:bb:d0:16:0c" + } + ], + "lldp-remote-port-description": [ + { + "data": "eth0" + } + ], + "lldp-remote-system-name": [ + { + "data": "acmelab-wb01" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-0/0/34" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "a8:f7:d9:77:27:40" + } + ], + "lldp-remote-port-description": [ + { + "data": "ETH0" + } + ], + "lldp-remote-system-name": [ + { + "data": "ACMELAB-AP01" + } + ] + }, + { + "lldp-local-port-id": [ + { + "data": "ge-0/0/42" + } + ], + "lldp-local-parent-interface-name": [ + { + "data": "-" + } + ], + "lldp-remote-chassis-id-subtype": [ + { + "data": "Mac address" + } + ], + "lldp-remote-chassis-id": [ + { + "data": "e4:1a:2c:02:9f:ff" + } + ], + "lldp-remote-port-description": [ + { + "data": "Interface 5 as eth0" + } + ], + "lldp-remote-system-name": [ + { + "data": "ACMEVF-CON01.localdomain" + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_1.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_1.json index ba9facb3..c61f0002 100755 --- a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_1.json +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_1.json @@ -1,7 +1,7 @@ { - "device_type": "MX10-T", - "hostname": "JUNOS-PE1", + "device_type": "MX960", + "hostname": "JUNOS-MX960", "mask_length": 32, "mgmt_interface": "lo0.0", - "serial": "T9958" + "serial": "JN122E628AFA" } \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_2.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_2.json new file mode 100755 index 00000000..4d0cc8da --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_2.json @@ -0,0 +1,7 @@ +{ + "device_type": "MX204", + "hostname": "JUNOS_MX204", + "mask_length": 32, + "mgmt_interface": "lo0.0", + "serial": "FH577" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_3.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_3.json new file mode 100755 index 00000000..ffb05df4 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_3.json @@ -0,0 +1,7 @@ +{ + "device_type": "MX10-T", + "hostname": "JUNOS_MX10", + "mask_length": 28, + "mgmt_interface": "ge-1/0/0.2950", + "serial": "BC899" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_4.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_4.json new file mode 100755 index 00000000..a774ef75 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_4.json @@ -0,0 +1,7 @@ +{ + "device_type": "MX240", + "hostname": "JUNOS_MX240", + "mask_length": 32, + "mgmt_interface": "lo0.0", + "serial": "JN12342D2AFC" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_5.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_5.json new file mode 100755 index 00000000..19e2337a --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_5.json @@ -0,0 +1,7 @@ +{ + "device_type": "MX480", + "hostname": "JUNOS_MX480", + "mask_length": 32, + "mgmt_interface": "lo0.0", + "serial": "JN124F540AFB" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_6.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_6.json new file mode 100755 index 00000000..53c1ba08 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_6.json @@ -0,0 +1,7 @@ +{ + "device_type": "MX80", + "hostname": "JUNOS_MX80", + "mask_length": 32, + "mgmt_interface": "lo0.0", + "serial": "T9983" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_7.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_7.json new file mode 100755 index 00000000..ec8a06ba --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_devices/expected_result_7.json @@ -0,0 +1,7 @@ +{ + "device_type": "EX4300-48P", + "hostname": "JUNOS_EX4300", + "mask_length": 23, + "mgmt_interface": "irb.16", + "serial": "PD3987654321" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_2.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_2.json new file mode 100755 index 00000000..9e26dfee --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_2.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_3.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_3.json new file mode 100755 index 00000000..9e26dfee --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_3.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_4.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_4.json new file mode 100755 index 00000000..9e26dfee --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_4.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_5.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_5.json new file mode 100755 index 00000000..9e26dfee --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_5.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_6.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_6.json new file mode 100755 index 00000000..9e26dfee --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_6.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_7.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_7.json new file mode 100755 index 00000000..9e26dfee --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_all/expected_result_7.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_1.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_1.json index 571cb30c..ee46cabc 100755 --- a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_1.json +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_1.json @@ -2,11 +2,11 @@ "interfaces": { "ae0": { "802.1Q_mode": "", - "description": "a description", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c0", + "mac_address": "3c:61:04:03:ba:c0", "mtu": "1602", "type": "lag" }, @@ -15,7 +15,7 @@ "description": "", "ip_addresses": [ { - "ip_address": "13.65.230.30", + "ip_address": "123.65.228.5", "prefix_length": "31" } ], @@ -25,22 +25,492 @@ "mtu": "1602", "type": "lag" }, - "ae11": { + "ae1": { "802.1Q_mode": "", - "description": "a description", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:c1", + "mtu": "1514", + "type": "lag" + }, + "ae10": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:ca", + "mtu": "1602", + "type": "lag" + }, + "ae10.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.57", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae15": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cb", + "mtu": "1610", + "type": "lag" + }, + "ae15.4000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.196", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1610", + "type": "lag" + }, + "ae15.4002": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.200", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1610", + "type": "lag" + }, + "ae17": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cc", + "mtu": "1522", + "type": "lag" + }, + "ae17.2100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.5.210", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae18": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cd", + "mtu": "1522", + "type": "lag" + }, + "ae18.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.27.233", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae18.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.27.241", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae18.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.27.249", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae18.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.1", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae18.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.9", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae18.3105": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.17", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae18.3600": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.17.193", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae19": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:ce", + "mtu": "1522", + "type": "lag" + }, + "ae19.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.4.0", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae19.2001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.4.4", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae19.2003": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.4.96", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:c2", + "mtu": "1602", + "type": "lag" + }, + "ae2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.167", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae25": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3e:61:04:03:b3:b5", + "mtu": "1522", + "type": "lag" + }, + "ae25.2001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.73", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.2002": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.161", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.2011": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.97", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.21.121", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.3007": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.22.229", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.3011": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.249", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.3015": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.65", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.3016": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.36.169", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.3017": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.25", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.3019": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.40.241", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae25.3050": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.16.74", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae3": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c2", + "mac_address": "3c:61:04:03:ba:c3", "mtu": "1602", "type": "lag" }, - "ae11.0": { + "ae3.0": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.231.109", + "ip_address": "123.65.228.27", "prefix_length": "31" } ], @@ -50,22 +520,22 @@ "mtu": "1602", "type": "lag" }, - "ae14": { + "ae5": { "802.1Q_mode": "", - "description": "a description", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c3", + "mac_address": "3c:61:04:03:ba:c5", "mtu": "1602", "type": "lag" }, - "ae14.0": { + "ae5.0": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.231.118", + "ip_address": "123.65.228.127", "prefix_length": "31" } ], @@ -75,223 +545,443 @@ "mtu": "1602", "type": "lag" }, - "ae3": { + "ae6": { "802.1Q_mode": "", - "description": "UMI", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c1", - "mtu": "1514", + "mac_address": "3c:61:04:03:ba:c6", + "mtu": "1602", "type": "lag" }, - "cbp0": { + "ae6.0": { "802.1Q_mode": "", "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.229", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae7": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "2a:8a:1c:56:72:11", - "mtu": "9192", - "type": "other" + "mac_address": "3c:61:04:03:ba:c7", + "mtu": "1602", + "type": "lag" }, - "demux0": { + "ae7.0": { "802.1Q_mode": "", "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.236", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae8": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", + "mac_address": "3c:61:04:03:ba:c8", + "mtu": "1602", + "type": "lag" + }, + "ae8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.123", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", "mac_address": [], - "mtu": "9192", - "type": "other" + "mtu": "1602", + "type": "lag" }, - "dsc": { + "ae9": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:c9", + "mtu": "1514", + "type": "lag" + }, + "ae99": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cf", + "mtu": "1610", + "type": "lag" + }, + "ae99.4006": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.59", + "prefix_length": "31" + } + ], + "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1610", + "type": "lag" + }, + "et-2/1/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae2", + "link_status": "True", + "mac_address": "3c:61:04:03:b4:73", + "mtu": "1602", "type": "other" }, - "em0": { + "et-2/3/0": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": "02:00:00:00:00:04", + "link_status": "False", + "mac_address": "3c:61:04:03:b4:c5", "mtu": "1514", "type": "other" }, - "em0.0": { + "ge-11/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:17", + "mtu": "1522", + "type": "other" + }, + "ge-11/0/0.2950": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "10.0.0.4", - "prefix_length": "8" + "ip_address": "123.65.212.1", + "prefix_length": "26" } ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "type": "other" }, - "em1": { + "ge-11/0/0.2951": { "802.1Q_mode": "", - "description": "UMI", - "ip_addresses": [], + "description": "", + "ip_addresses": [ + { + "ip_address": "134.248.215.65", + "prefix_length": "28" + } + ], "lag": [], "link_status": "True", - "mac_address": "02:00:02:00:00:04", - "mtu": "1514", + "mac_address": [], + "mtu": "1522", "type": "other" }, - "em1.0": { + "ge-11/0/0.2952": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "10.0.0.1", - "prefix_length": "8" + "ip_address": "123.65.0.193", + "prefix_length": "29" } ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "type": "other" }, - "esi": { + "ge-11/0/0.2953": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.132.9", + "prefix_length": "29" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "fti0": { + "ge-11/0/0.2960": { "802.1Q_mode": "", "description": "", + "ip_addresses": [ + { + "ip_address": "124.46.189.129", + "prefix_length": "26" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-11/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae6", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:18", + "mtu": "1602", + "type": "other" + }, + "ge-11/0/2": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", + "mac_address": "3c:61:04:03:ba:19", + "mtu": "1522", + "type": "other" + }, + "ge-11/0/2.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.82", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "fti1": { + "ge-11/0/3": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:1a", + "mtu": "1514", + "type": "other" + }, + "ge-11/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1b", + "mtu": "1522", + "type": "other" + }, + "ge-11/0/4.900": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.21.241", + "prefix_length": "30" + } + ], + "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "fti2": { + "ge-11/0/4.902": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.22.41", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", + "type": "other" + }, + "ge-11/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae10", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1c", + "mtu": "1602", + "type": "other" + }, + "ge-11/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1d", + "mtu": "1522", "type": "other" }, - "fti3": { + "ge-11/0/6.2000": { "802.1Q_mode": "", "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.2", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-11/0/7": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", + "mac_address": "3c:61:04:03:ba:1e", + "mtu": "1522", + "type": "other" + }, + "ge-11/0/7.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "124.22.0.1", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "fti4": { + "ge-11/0/8": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:ba:1f", + "mtu": "1514", "type": "other" }, - "fti5": { + "ge-11/0/9": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", + "link_status": "False", + "mac_address": "3c:61:04:03:ba:20", + "mtu": "1514", "type": "other" }, - "fti6": { + "ge-11/1/0": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:ba:40", + "mtu": "1514", "type": "other" }, - "fti7": { + "ge-11/1/1": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae3", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:ba:41", + "mtu": "1602", "type": "other" }, - "fxp0": { + "ge-11/1/2": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:ff", + "link_status": "False", + "mac_address": "3c:61:04:03:ba:42", "mtu": "1514", "type": "other" }, - "fxp0.0": { + "ge-11/1/3": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:43", "mtu": "1514", "type": "other" }, - "ge-1/0/0": { + "ge-11/1/4": { "802.1Q_mode": "", - "description": "UNI : : ACME9525-MS1 : Gi0/2", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:60", + "mac_address": "3c:61:04:03:ba:44", "mtu": "1522", "type": "other" }, - "ge-1/0/0.2950": { + "ge-11/1/4.2901": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.209.193", - "prefix_length": "28" + "ip_address": "123.65.19.202", + "prefix_length": "30" } ], "lag": [], @@ -300,13 +990,13 @@ "mtu": "1522", "type": "other" }, - "ge-1/0/0.2953": { + "ge-11/1/4.2902": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.145.73", - "prefix_length": "29" + "ip_address": "123.65.19.210", + "prefix_length": "30" } ], "lag": [], @@ -315,667 +1005,852 @@ "mtu": "1522", "type": "other" }, - "ge-1/0/0.32767": { + "ge-11/1/4.3005": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.19.86", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], "mtu": "1522", "type": "other" }, - "ge-1/0/1": { + "ge-11/1/5": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "False", - "mac_address": "28:8a:1c:56:72:61", + "mac_address": "3c:61:04:03:ba:45", "mtu": "1514", "type": "other" }, - "ge-1/0/2": { + "ge-11/1/6": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:62", - "mtu": "1514", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:46", + "mtu": "1522", "type": "other" }, - "ge-1/0/3": { + "ge-11/1/6.3007": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.8.77", + "prefix_length": "30" + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:63", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "1522", "type": "other" }, - "ge-1/0/4": { + "ge-11/1/7": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:64", - "mtu": "1514", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:47", + "mtu": "1522", "type": "other" }, - "ge-1/0/5": { + "ge-11/1/7.3000": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "124.34.0.1", + "prefix_length": "28" + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:65", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "1522", "type": "other" }, - "ge-1/0/6": { + "ge-11/1/8": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "False", - "mac_address": "28:8a:1c:56:72:66", + "mac_address": "3c:61:04:03:ba:48", "mtu": "1514", "type": "other" }, - "ge-1/0/7": { + "ge-11/1/9": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "False", - "mac_address": "28:8a:1c:56:72:67", + "mac_address": "3c:61:04:03:ba:49", "mtu": "1514", "type": "other" }, - "ge-1/0/8": { + "irb": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:68", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:f0", "mtu": "1514", "type": "other" }, - "ge-1/0/9": { + "irb.222": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.132.43", + "prefix_length": "29" + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:69", + "link_status": "True", + "mac_address": [], "mtu": "1514", "type": "other" }, - "ge-1/1/0": { + "lo0": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6c", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "9192", "type": "other" }, - "ge-1/1/1": { + "lo0.0": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6d", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "9192", "type": "other" }, - "ge-1/1/2": { + "xe-0/0/0": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6e", - "mtu": "1514", + "lag": "ae25", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:00", + "mtu": "1522", "type": "other" }, - "ge-1/1/3": { + "xe-0/0/1": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6f", - "mtu": "1514", + "lag": "ae19", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:01", + "mtu": "1522", "type": "other" }, - "ge-1/1/4": { + "xe-0/0/2": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:70", - "mtu": "1514", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:02", + "mtu": "1522", "type": "other" }, - "ge-1/1/5": { + "xe-0/0/2.2004": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.155.53", + "prefix_length": "30" + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:71", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "1522", "type": "other" }, - "ge-1/1/6": { + "xe-0/0/2.2005": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.155.69", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:72", - "mtu": "1514", + "mac_address": [], + "mtu": "1522", "type": "other" }, - "ge-1/1/6.16386": { + "xe-0/0/2.2006": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.155.73", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "type": "other" }, - "ge-1/1/7": { + "xe-0/0/2.2007": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.19.97", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:73", - "mtu": "1514", + "mac_address": [], + "mtu": "1522", "type": "other" }, - "ge-1/1/7.16386": { + "xe-0/0/2.2008": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.155.45", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "type": "other" }, - "ge-1/1/8": { + "xe-0/0/2.2011": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.156.57", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:74", - "mtu": "1514", + "mac_address": [], + "mtu": "1522", "type": "other" }, - "ge-1/1/8.16386": { + "xe-0/0/2.2012": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.156.85", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "type": "other" }, - "ge-1/1/9": { + "xe-0/0/2.3010": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.18.17", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:75", - "mtu": "1514", + "mac_address": [], + "mtu": "1522", "type": "other" }, - "ge-1/1/9.16386": { + "xe-0/0/2.3030": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.19.105", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "type": "other" }, - "gre": { + "xe-0/0/2.3031": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.36.249", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "ipip": { + "xe-0/0/2.3032": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.37.9", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "irb": { + "xe-0/0/3": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae99", "link_status": "True", - "mac_address": "28:8a:1c:56:72:f0", - "mtu": "1514", + "mac_address": "3c:61:04:03:b3:03", + "mtu": "1610", "type": "other" }, - "jsrv": { + "xe-0/0/4": { "802.1Q_mode": "", - "description": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:04", + "mtu": "1610", + "type": "other" + }, + "xe-0/0/5": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c0", - "mtu": "1514", + "mac_address": "3c:61:04:03:b3:05", + "mtu": "1522", "type": "other" }, - "jsrv.1": { + "xe-0/0/5.3200": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "133.4.74.127", - "prefix_length": "2" + "ip_address": "123.65.32.209", + "prefix_length": "30" } ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "type": "other" }, - "lc-0/0/0": { + "xe-0/0/5.3201": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.32.217", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "", + "mtu": "1522", + "type": "other" + }, + "xe-0/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae8", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:06", + "mtu": "1602", + "type": "other" + }, + "xe-0/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae17", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:07", + "mtu": "1522", + "type": "other" + }, + "xe-0/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:08", + "mtu": "1602", "type": "other" }, - "lc-0/0/0.32769": { + "xe-0/0/9": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae0", "link_status": "True", - "mac_address": [], - "mtu": "", + "mac_address": "3c:61:04:03:b3:09", + "mtu": "1602", "type": "other" }, - "lo0": { + "xe-1/0/0": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:a5", + "mtu": "1514", "type": "other" }, - "lo0.0": { + "xe-1/0/0.0": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "198.51.100.1", - "prefix_length": 32 + "ip_address": "123.65.35.113", + "prefix_length": "30" } ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1514", "type": "other" }, - "lo0.16384": { + "xe-1/0/1": { "802.1Q_mode": "", "description": "", - "ip_addresses": [ - { - "ip_address": "66.33.236.1", - "prefix_length": 32 - } - ], + "ip_addresses": [], "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b3:a6", + "mtu": "1514", + "type": "other" + }, + "xe-1/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae7", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:a7", + "mtu": "1602", "type": "other" }, - "lo0.16385": { + "xe-1/0/3": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b3:a8", + "mtu": "1514", + "type": "other" + }, + "xe-1/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae5", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:a9", + "mtu": "1602", "type": "other" }, - "lsi": { + "xe-1/0/5": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae15", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:aa", + "mtu": "1610", "type": "other" }, - "lsi.0": { + "xe-1/0/6": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae19", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:ab", + "mtu": "1522", "type": "other" }, - "lsi.1": { + "xe-1/0/7": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae18", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:ac", + "mtu": "1522", "type": "other" }, - "lsi.2": { + "xe-1/0/8": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae0", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:ad", + "mtu": "1602", "type": "other" }, - "lsi.3": { + "xe-1/0/9": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae0", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:ae", + "mtu": "1602", "type": "other" }, - "lsi.4": { + "xe-10/0/0": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b9:72", + "mtu": "1522", "type": "other" }, - "lsi.5": { + "xe-10/0/0.3001": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.20.57", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "lsi.6": { + "xe-10/0/1": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b9:73", + "mtu": "1522", "type": "other" }, - "lsi.7": { + "xe-10/0/1.3004": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.20.73", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "me0": { + "xe-10/0/2": { "802.1Q_mode": "", - "description": "", + "description": "UMI", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "02:00:00:00:00:0b", - "mtu": "1514", + "mac_address": "3c:61:04:03:b9:74", + "mtu": "1522", "type": "other" }, - "me0.0": { + "xe-10/0/2.1": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "type": "other" }, - "mtun": { + "xe-10/0/3": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", + "link_status": "False", + "mac_address": "3c:61:04:03:b9:75", + "mtu": "1514", "type": "other" }, - "pfe-0/0/0": { + "xe-10/0/4": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "", + "mac_address": "3c:61:04:03:b9:76", + "mtu": "1522", "type": "other" }, - "pfe-0/0/0.16383": { + "xe-10/0/4.2000": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.5.68", + "prefix_length": "31" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "", + "mtu": "1522", "type": "other" }, - "pfh-0/0/0": { + "xe-10/0/5": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae25", "link_status": "True", - "mac_address": [], - "mtu": "", + "mac_address": "3c:61:04:03:b9:77", + "mtu": "1522", "type": "other" }, - "pfh-0/0/0.16383": { + "xe-10/0/6": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "", + "mac_address": "3c:61:04:03:b9:78", + "mtu": "1522", "type": "other" }, - "pfh-0/0/0.16384": { + "xe-10/0/6.3200": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.121", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "", + "mtu": "1522", "type": "other" }, - "pimd": { + "xe-10/0/6.3201": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.125", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "pime": { + "xe-10/0/6.3202": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.129", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "pip0": { + "xe-10/0/6.3203": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.133", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:b0", - "mtu": "9192", + "mac_address": [], + "mtu": "1522", "type": "other" }, - "pp0": { + "xe-10/0/6.3204": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.137", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1532", + "mtu": "1522", "type": "other" }, - "rbeb": { + "xe-10/0/6.3205": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.141", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "tap": { + "xe-10/0/6.3206": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.38.177", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "vtep": { + "xe-10/0/6.3207": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.41.1", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "type": "other" }, - "xe-0/0/0": { + "xe-10/0/7": { "802.1Q_mode": "", - "description": "a description", + "description": "a desc", "ip_addresses": [], - "lag": "ae0", + "lag": "ae17", "link_status": "True", - "mac_address": "28:8a:1c:56:72:00", - "mtu": "1602", + "mac_address": "3c:61:04:03:b9:79", + "mtu": "1522", "type": "other" }, - "xe-0/0/0.0": { + "xe-10/0/8": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1602", - "type": "other" - }, - "xe-0/0/1": { - "802.1Q_mode": "", - "description": "a description", - "ip_addresses": [], - "lag": "ae14", - "link_status": "True", - "mac_address": "28:8a:1c:56:72:01", - "mtu": "1602", + "link_status": "False", + "mac_address": "3c:61:04:03:b9:7a", + "mtu": "1514", "type": "other" }, - "xe-0/0/1.0": { + "xe-10/0/9": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1602", + "link_status": "False", + "mac_address": "3c:61:04:03:b9:7b", + "mtu": "1514", "type": "other" }, - "xe-0/0/2": { + "xe-10/2/0": { "802.1Q_mode": "", - "description": "UNI : : ACME9525RL1- : Te1/2/8", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:02", + "mac_address": "3c:61:04:03:b9:c4", "mtu": "1522", "type": "other" }, - "xe-0/0/2.3100": { + "xe-10/2/0.3002": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.98.49", + "ip_address": "123.65.20.65", "prefix_length": "30" } ], @@ -985,27 +1860,22 @@ "mtu": "1522", "type": "other" }, - "xe-0/0/2.3101": { + "xe-10/2/1": { "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.106.245", - "prefix_length": "30" - } - ], + "description": "a desc", + "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], + "mac_address": "3c:61:04:03:b9:c5", "mtu": "1522", "type": "other" }, - "xe-0/0/2.3102": { + "xe-10/2/1.3003": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.104.1", + "ip_address": "123.65.20.81", "prefix_length": "30" } ], @@ -1015,12 +1885,12 @@ "mtu": "1522", "type": "other" }, - "xe-0/0/2.3103": { + "xe-10/2/1.3005": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.106.241", + "ip_address": "123.65.19.249", "prefix_length": "30" } ], @@ -1030,12 +1900,12 @@ "mtu": "1522", "type": "other" }, - "xe-0/0/2.3104": { + "xe-10/2/1.3006": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.106.249", + "ip_address": "123.65.20.21", "prefix_length": "30" } ], @@ -1045,27 +1915,37 @@ "mtu": "1522", "type": "other" }, - "xe-0/0/2.32767": { + "xe-10/2/2": { "802.1Q_mode": "", - "description": "", + "description": "UMI", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "1522", + "mac_address": "3c:61:04:03:b9:c6", + "mtu": "1514", "type": "other" }, - "xe-0/0/3": { + "xe-10/2/3": { "802.1Q_mode": "", - "description": "", + "description": "UMI", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:c7", + "mtu": "1514", + "type": "other" + }, + "xe-10/2/5": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:03", + "mac_address": "3c:61:04:03:b9:c9", "mtu": "1522", "type": "other" }, - "xe-0/0/3.0": { + "xe-10/2/5.0": { "802.1Q_mode": "", "description": "", "ip_addresses": [], @@ -1075,40 +1955,70 @@ "mtu": "1522", "type": "other" }, - "xe-1/2/0": { + "xe-10/2/6": { "802.1Q_mode": "", - "description": "a description", + "description": "UMI - reserved for Ixia E1S", "ip_addresses": [], - "lag": "ae11", + "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:78", - "mtu": "1602", + "mac_address": "3c:61:04:03:b9:ca", + "mtu": "1522", "type": "other" }, - "xe-1/2/0.0": { + "xe-10/2/6.3111": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.41.241", + "prefix_length": "29" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1602", + "mtu": "1522", + "type": "other" + }, + "xe-10/2/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae18", + "link_status": "True", + "mac_address": "3c:61:04:03:b9:cb", + "mtu": "1522", "type": "other" }, - "xe-1/3/0": { + "xe-10/2/8": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b9:cc", + "mtu": "1514", + "type": "other" + }, + "xe-10/2/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:84", + "mac_address": "3c:61:04:03:b9:cd", "mtu": "1522", "type": "other" }, - "xe-1/3/0.0": { + "xe-10/2/9.2003": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.5.74", + "prefix_length": "31" + } + ], "lag": [], "link_status": "True", "mac_address": [], @@ -1116,5 +2026,5 @@ "type": "other" } }, - "serial": "T9958" + "serial": "JN122E628AFA" } \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_2.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_2.json new file mode 100755 index 00000000..e45c7d22 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_2.json @@ -0,0 +1,430 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:91", + "mtu": "1602", + "type": "lag" + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.68", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:90", + "mtu": "1602", + "type": "lag" + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.70", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:93", + "mtu": "1602", + "type": "lag" + }, + "ae2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.150", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:94", + "mtu": "1602", + "type": "lag" + }, + "ae3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.230.25", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "et-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "04:69:8f:61:ed:b7", + "mtu": "1602", + "type": "other" + }, + "fxp0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "e4:5d:37:fb:79:4a", + "mtu": "1514", + "type": "other" + }, + "fxp0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "fe80::e65d:37ff:fefb:794a", + "prefix_length": "64" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + }, + "xe-0/1/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:a7", + "mtu": "1522", + "type": "other" + }, + "xe-0/1/0.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.105", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/0.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.109", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/0.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.113", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/0.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.117", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/0.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.121", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae1", + "link_status": "True", + "mac_address": "04:69:8f:61:f1:a8", + "mtu": "1602", + "type": "other" + }, + "xe-0/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae2", + "link_status": "True", + "mac_address": "04:69:8f:61:f1:a9", + "mtu": "1602", + "type": "other" + }, + "xe-0/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae3", + "link_status": "True", + "mac_address": "04:69:8f:61:f1:aa", + "mtu": "1602", + "type": "other" + }, + "xe-0/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:ac", + "mtu": "1514", + "type": "other" + }, + "xe-0/1/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.153", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "xe-0/1/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:ad", + "mtu": "1522", + "type": "other" + }, + "xe-0/1/6.3200": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.161", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/6.3201": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.165", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/6.3202": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.169", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/6.3203": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.173", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/6.3204": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.177", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/6.3205": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.181", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/1/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:ae", + "mtu": "1522", + "type": "other" + }, + "xe-0/1/7.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.210.225", + "prefix_length": "27" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + } + }, + "serial": "FH577" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_3.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_3.json new file mode 100755 index 00000000..5cf06bc0 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_3.json @@ -0,0 +1,470 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:c0", + "mtu": "1602", + "type": "lag" + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.32", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:c1", + "mtu": "1602", + "type": "lag" + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.34", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:c2", + "mtu": "1602", + "type": "lag" + }, + "ae2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.36", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "em1": { + "802.1Q_mode": "", + "description": "UMI : Internal Backplane Interface", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "02:00:02:00:00:04", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:60", + "mtu": "1522", + "type": "other" + }, + "ge-1/0/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.132.201", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:61", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:62", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:63", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:64", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:65", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:66", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:67", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:68", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:69", + "mtu": "1522", + "type": "other" + }, + "ge-1/0/9.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.137", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/9.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.61", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/9.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.69", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/9.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.57", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/9.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.65", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/1/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:6c", + "mtu": "1522", + "type": "other" + }, + "ge-1/1/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/1/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:6d", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:6e", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:6f", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:70", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:71", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae2", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:72", + "mtu": "1602", + "type": "other" + }, + "ge-1/1/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae1", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:73", + "mtu": "1602", + "type": "other" + }, + "ge-1/1/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:74", + "mtu": "1602", + "type": "other" + }, + "ge-1/1/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:75", + "mtu": "1602", + "type": "other" + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.226.112", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:00", + "mtu": "1514", + "type": "other" + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:01", + "mtu": "1514", + "type": "other" + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:02", + "mtu": "1514", + "type": "other" + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:03", + "mtu": "1514", + "type": "other" + } + }, + "serial": "BC899" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_4.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_4.json new file mode 100755 index 00000000..d3c7facb --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_4.json @@ -0,0 +1,280 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:8b:c0", + "mtu": "1602", + "type": "lag" + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.177", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:8b:c1", + "mtu": "1602", + "type": "lag" + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.179", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "64:64:9b:63:86:95", + "mtu": "1602", + "type": "other" + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae1", + "link_status": "True", + "mac_address": "64:64:9b:63:86:96", + "mtu": "1602", + "type": "other" + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:97", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:98", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:99", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9a", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9b", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9c", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9d", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9e", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/0": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3a", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/1": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3b", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/2": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3c", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/3": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3d", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/4": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3e", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/5": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3f", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/6": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:40", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/7": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:41", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/8": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:42", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/9": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:43", + "mtu": "1514", + "type": "other" + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + } + }, + "serial": "JN12342D2AFC" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_5.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_5.json new file mode 100755 index 00000000..86a402ec --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_5.json @@ -0,0 +1,820 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:c8", + "mtu": "1602", + "type": "lag" + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.242", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae17": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:67:cd", + "mtu": "1522", + "type": "lag" + }, + "ae17.2100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.18", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1522", + "type": "lag" + }, + "ae3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:67:ca", + "mtu": "1610", + "type": "lag" + }, + "ae5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:cc", + "mtu": "1602", + "type": "lag" + }, + "ae5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.71", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:c9", + "mtu": "1602", + "type": "lag" + }, + "ae7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.31", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae99": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:d0", + "mtu": "1610", + "type": "lag" + }, + "ge-0/2/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:ac", + "mtu": "1522", + "type": "other" + }, + "ge-0/2/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.221.1", + "prefix_length": "24" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-0/2/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.132.209", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-0/2/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:ad", + "mtu": "1514", + "type": "other" + }, + "ge-0/2/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:ae", + "mtu": "1514", + "type": "other" + }, + "ge-0/2/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:af", + "mtu": "1514", + "type": "other" + }, + "ge-0/2/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b0", + "mtu": "1514", + "type": "other" + }, + "ge-0/2/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b1", + "mtu": "1514", + "type": "other" + }, + "ge-0/2/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b2", + "mtu": "1514", + "type": "other" + }, + "ge-0/2/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:b3", + "mtu": "1522", + "type": "other" + }, + "ge-0/2/7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-0/2/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b4", + "mtu": "1514", + "type": "other" + }, + "ge-0/2/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:b5", + "mtu": "1514", + "type": "other" + }, + "ge-0/3/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:fe", + "mtu": "1514", + "type": "other" + }, + "ge-0/3/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:ff", + "mtu": "1514", + "type": "other" + }, + "ge-0/3/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:00", + "mtu": "1514", + "type": "other" + }, + "ge-0/3/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:01", + "mtu": "1522", + "type": "other" + }, + "ge-0/3/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-0/3/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:02", + "mtu": "1514", + "type": "other" + }, + "ge-0/3/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:03", + "mtu": "1514", + "type": "other" + }, + "ge-0/3/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:04", + "mtu": "1514", + "type": "other" + }, + "ge-0/3/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:05", + "mtu": "1514", + "type": "other" + }, + "ge-0/3/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:06", + "mtu": "1514", + "type": "other" + }, + "ge-0/3/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:07", + "mtu": "1514", + "type": "other" + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:08", + "mtu": "1522", + "type": "other" + }, + "xe-0/0/0.211": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.169", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae17", + "link_status": "False", + "mac_address": "44:f4:77:0e:60:09", + "mtu": "1522", + "type": "other" + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0a", + "mtu": "9100", + "type": "other" + }, + "xe-0/0/2.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.29.49", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9100", + "type": "other" + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:0b", + "mtu": "1514", + "type": "other" + }, + "xe-0/0/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.49", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "xe-0/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0c", + "mtu": "1522", + "type": "other" + }, + "xe-0/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0d", + "mtu": "1522", + "type": "other" + }, + "xe-0/0/5.311": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.177", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/0/5.312": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.229", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0e", + "mtu": "1610", + "type": "other" + }, + "xe-0/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae7", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0f", + "mtu": "1602", + "type": "other" + }, + "xe-0/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:10", + "mtu": "1602", + "type": "other" + }, + "xe-0/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:11", + "mtu": "1602", + "type": "other" + }, + "xe-1/0/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:52", + "mtu": "1514", + "type": "other" + }, + "xe-1/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:54", + "mtu": "1522", + "type": "other" + }, + "xe-1/0/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:55", + "mtu": "1522", + "type": "other" + }, + "xe-1/0/3.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.16.153", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-1/0/3.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.221", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-1/0/3.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.229", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-1/0/3.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.217", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-1/0/3.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.225", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-1/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:56", + "mtu": "1522", + "type": "other" + }, + "xe-1/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-1/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:57", + "mtu": "1522", + "type": "other" + }, + "xe-1/0/5.411": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.185", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-1/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:58", + "mtu": "1610", + "type": "other" + }, + "xe-1/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:59", + "mtu": "1522", + "type": "other" + }, + "xe-1/0/7.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.5.36", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-1/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:5a", + "mtu": "1602", + "type": "other" + }, + "xe-1/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:5b", + "mtu": "1602", + "type": "other" + }, + "xe-1/2/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae5", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:f6", + "mtu": "1602", + "type": "other" + }, + "xe-1/3/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:62:48", + "mtu": "1522", + "type": "other" + }, + "xe-1/3/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + } + }, + "serial": "JN124F540AFB" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_6.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_6.json new file mode 100755 index 00000000..45a79b8f --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_6.json @@ -0,0 +1,510 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:c0", + "mtu": "1602", + "type": "lag" + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.4", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "ae1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:c1", + "mtu": "1514", + "type": "lag" + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "lag" + }, + "ae11": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:c2", + "mtu": "1602", + "type": "lag" + }, + "ae11.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.170", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag" + }, + "em1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "02:00:02:00:00:04", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:60", + "mtu": "1522", + "type": "other" + }, + "ge-1/0/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.208.161", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.133.57", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:61", + "mtu": "1522", + "type": "other" + }, + "ge-1/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:62", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:63", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:64", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:65", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:66", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:67", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:68", + "mtu": "1522", + "type": "other" + }, + "ge-1/0/8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:69", + "mtu": "1522", + "type": "other" + }, + "ge-1/1/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6c", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6d", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6e", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6f", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:70", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:71", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:72", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:73", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:74", + "mtu": "1514", + "type": "other" + }, + "ge-1/1/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:75", + "mtu": "1514", + "type": "other" + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other" + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:00", + "mtu": "1602", + "type": "other" + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:01", + "mtu": "1514", + "type": "other" + }, + "xe-0/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.217", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:02", + "mtu": "1522", + "type": "other" + }, + "xe-0/0/2.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.193", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/0/2.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.24.249", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/0/2.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.6", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/0/2.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.10", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/0/2.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.14", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other" + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:03", + "mtu": "1522", + "type": "other" + }, + "xe-1/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:78", + "mtu": "1514", + "type": "other" + }, + "xe-1/3/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae11", + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:84", + "mtu": "1602", + "type": "other" + } + }, + "serial": "T9983" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_7.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_7.json new file mode 100755 index 00000000..d76d437a --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_no_options/expected_result_7.json @@ -0,0 +1,2170 @@ +{ + "interfaces": { + "ge-0/0/0": { + "802.1Q_mode": "", + "description": "TESTING AP108", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "9c:cc:83:50:b7:03", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:04", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/10": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "9c:cc:83:50:b7:0d", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/10.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/11": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0e", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/11.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/12": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0f", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/12.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/13": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:10", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/13.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/14": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:11", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/14.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/15": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:12", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/15.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/16": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:13", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/16.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/17": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:14", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/17.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/18": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:15", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/18.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/19": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:16", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/19.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:05", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/20": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:17", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/20.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/21": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:18", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/21.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/22": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:19", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/22.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/23": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1a", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/23.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/24": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1b", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/24.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/25": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1c", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/25.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/26": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1d", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/26.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/27": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1e", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/27.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/28": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1f", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/28.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/29": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:20", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/29.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:06", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/30": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:21", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/30.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/31": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:22", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/31.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/32": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:23", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/32.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/33": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:24", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/33.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/34": { + "802.1Q_mode": "", + "description": "ge-0/0/34|VFLAB-AP01+", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:25", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/34.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/35": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:26", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/35.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/36": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:27", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/36.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/37": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:28", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/37.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/38": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:29", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/38.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/39": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2a", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/39.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:07", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/40": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2b", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/40.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/41": { + "802.1Q_mode": "", + "description": "ge-0/0/41|AP04", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2c", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/41.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/42": { + "802.1Q_mode": "", + "description": "ACMEVF-ZPE01", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2d", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/42.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/43": { + "802.1Q_mode": "", + "description": "TRUST - TO FW02 PORT 6", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2e", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/43.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/44": { + "802.1Q_mode": "", + "description": "TO FW01 MGMT", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2f", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/44.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/45": { + "802.1Q_mode": "", + "description": "TRUST - TO FW01 PORT 7", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:30", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/45.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/46": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:31", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/46.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/47": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:32", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/47.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:08", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:09", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/6.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0a", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0b", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0c", + "mtu": "1514", + "type": "other" + }, + "ge-0/0/9.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:37", + "mtu": "1514", + "type": "other" + }, + "ge-0/2/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-0/2/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "ge-0/2/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "ge-0/2/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "ge-0/2/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "ge-0/2/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "ge-0/2/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:83", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:84", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/10": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8d", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/10.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/11": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8e", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/11.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/12": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8f", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/12.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/13": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:90", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/13.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/14": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:91", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/14.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/15": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:92", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/15.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/16": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:93", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/16.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/17": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:94", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/17.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/18": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:95", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/18.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/19": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:96", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/19.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:85", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/20": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:97", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/20.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/21": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:98", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/21.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/22": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:99", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/22.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/23": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9a", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/23.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/24": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9b", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/24.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/25": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9c", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/25.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/26": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9d", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/26.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/27": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9e", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/27.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/28": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9f", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/28.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/29": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a0", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/29.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:86", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/30": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a1", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/30.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/31": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a2", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/31.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/32": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a3", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/32.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/33": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a4", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/33.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/34": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a5", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/34.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/35": { + "802.1Q_mode": "", + "description": "ge-1/0/35|AP02", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a6", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/35.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/36": { + "802.1Q_mode": "", + "description": "ge-1/0/36|AP03", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a7", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/36.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/37": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a8", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/37.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/38": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a9", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/38.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/39": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:aa", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/39.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:87", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/40": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ab", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/40.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/41": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ac", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/41.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/42": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ad", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/42.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/43": { + "802.1Q_mode": "", + "description": "TRUST - TO FW02 PORT 6", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ae", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/43.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/44": { + "802.1Q_mode": "", + "description": "TO FW02 MGMT", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:af", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/44.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/45": { + "802.1Q_mode": "", + "description": "TRUST - TO FW02 PORT 7", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:b0", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/45.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/46": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:b1", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/46.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/47": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:b2", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/47.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:88", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:89", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/6.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8a", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8b", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8c", + "mtu": "1514", + "type": "other" + }, + "ge-1/0/9.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "ge-1/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "ge-1/2/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "irb": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:01", + "mtu": "1514", + "type": "other" + }, + "irb.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "fe80::9ecc:8300:50:b701", + "prefix_length": "64" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "irb.16": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": "23" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "vme": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:82", + "mtu": "1514", + "type": "other" + }, + "vme.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "fe80::9ecc:83ff:fe50:9482", + "prefix_length": "64" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other" + }, + "xe-0/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "xe-0/2/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "xe-0/2/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "xe-0/2/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "xe-0/2/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "xe-0/2/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "xe-0/2/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + }, + "xe-0/2/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other" + } + }, + "serial": "PD3987654321" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_1.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_1.json index ad6e8261..837d505c 100755 --- a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_1.json +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_1.json @@ -2,11 +2,11 @@ "interfaces": { "ae0": { "802.1Q_mode": "", - "description": "a description", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c0", + "mac_address": "3c:61:04:03:ba:c0", "mtu": "1602", "tagged_vlans": [], "type": "lag", @@ -17,7 +17,7 @@ "description": "", "ip_addresses": [ { - "ip_address": "13.65.230.30", + "ip_address": "123.65.228.5", "prefix_length": "31" } ], @@ -29,24 +29,562 @@ "type": "lag", "untagged_vlan": [] }, - "ae11": { + "ae1": { "802.1Q_mode": "", - "description": "a description", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:c1", + "mtu": "1514", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae10": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:ca", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae10.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.57", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae15": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cb", + "mtu": "1610", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae15.4000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.196", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1610", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae15.4002": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.200", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1610", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae17": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cc", + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae17.2100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.5.210", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae18": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cd", + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae18.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.27.233", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae18.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.27.241", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae18.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.27.249", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae18.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.1", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae18.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.9", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae18.3105": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.17", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae18.3600": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.17.193", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae19": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:ce", + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae19.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.4.0", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae19.2001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.4.4", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae19.2003": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.4.96", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:c2", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.167", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3e:61:04:03:b3:b5", + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.2001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.73", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.2002": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.161", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.2011": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.97", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.21.121", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.3007": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.22.229", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.3011": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.249", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.3015": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.65", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.3016": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.36.169", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.3017": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.25", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.3019": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.40.241", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae25.3050": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.16.74", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae3": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c2", + "mac_address": "3c:61:04:03:ba:c3", "mtu": "1602", "tagged_vlans": [], "type": "lag", "untagged_vlan": [] }, - "ae11.0": { + "ae3.0": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.231.109", + "ip_address": "123.65.228.27", "prefix_length": "31" } ], @@ -58,24 +596,24 @@ "type": "lag", "untagged_vlan": [] }, - "ae14": { + "ae5": { "802.1Q_mode": "", - "description": "a description", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c3", + "mac_address": "3c:61:04:03:ba:c5", "mtu": "1602", "tagged_vlans": [], "type": "lag", "untagged_vlan": [] }, - "ae14.0": { + "ae5.0": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.231.118", + "ip_address": "123.65.228.127", "prefix_length": "31" } ], @@ -87,263 +625,515 @@ "type": "lag", "untagged_vlan": [] }, - "ae3": { + "ae6": { "802.1Q_mode": "", - "description": "UMI", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c1", - "mtu": "1514", + "mac_address": "3c:61:04:03:ba:c6", + "mtu": "1602", "tagged_vlans": [], "type": "lag", "untagged_vlan": [] }, - "cbp0": { + "ae6.0": { "802.1Q_mode": "", "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.229", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae7": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "2a:8a:1c:56:72:11", - "mtu": "9192", + "mac_address": "3c:61:04:03:ba:c7", + "mtu": "1602", "tagged_vlans": [], - "type": "other", + "type": "lag", "untagged_vlan": [] }, - "demux0": { + "ae7.0": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.229.236", + "prefix_length": "31" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1602", "tagged_vlans": [], - "type": "other", + "type": "lag", "untagged_vlan": [] }, - "dsc": { + "ae8": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", + "mac_address": "3c:61:04:03:ba:c8", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.123", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1602", "tagged_vlans": [], - "type": "other", + "type": "lag", "untagged_vlan": [] }, - "em0": { + "ae9": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": "02:00:00:00:00:04", + "link_status": "False", + "mac_address": "3c:61:04:03:ba:c9", "mtu": "1514", "tagged_vlans": [], - "type": "other", + "type": "lag", + "untagged_vlan": [] + }, + "ae99": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cf", + "mtu": "1610", + "tagged_vlans": [], + "type": "lag", "untagged_vlan": [] }, - "em0.0": { + "ae99.4006": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "10.0.0.4", - "prefix_length": "8" + "ip_address": "123.65.229.59", + "prefix_length": "31" } ], "lag": [], "link_status": "True", "mac_address": [], + "mtu": "1610", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "et-2/1/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae2", + "link_status": "True", + "mac_address": "3c:61:04:03:b4:73", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "et-2/3/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b4:c5", "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "em1": { + "ge-11/0/0": { "802.1Q_mode": "", - "description": "UMI", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "02:00:02:00:00:04", - "mtu": "1514", + "mac_address": "3c:61:04:03:ba:17", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "em1.0": { + "ge-11/0/0.2950": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "10.0.0.1", - "prefix_length": "8" + "ip_address": "123.65.212.1", + "prefix_length": "26" } ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "esi": { + "ge-11/0/0.2951": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "134.248.215.65", + "prefix_length": "28" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fti0": { + "ge-11/0/0.2952": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.0.193", + "prefix_length": "29" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fti1": { + "ge-11/0/0.2953": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.132.9", + "prefix_length": "29" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fti2": { + "ge-11/0/0.2960": { "802.1Q_mode": "", "description": "", + "ip_addresses": [ + { + "ip_address": "124.46.189.129", + "prefix_length": "26" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae6", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:18", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/2": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", + "mac_address": "3c:61:04:03:ba:19", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/2.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.82", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fti3": { + "ge-11/0/3": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:1a", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1b", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/4.900": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.21.241", + "prefix_length": "30" + } + ], + "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fti4": { + "ge-11/0/4.902": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.22.41", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae10", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1c", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1d", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fti5": { + "ge-11/0/6.2000": { "802.1Q_mode": "", "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.2", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/7": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", + "mac_address": "3c:61:04:03:ba:1e", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/7.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "124.22.0.1", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1f", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-11/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:20", + "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fti6": { + "ge-11/1/0": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:ba:40", + "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fti7": { + "ge-11/1/1": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae3", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:ba:41", + "mtu": "1602", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fxp0": { + "ge-11/1/2": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:ff", + "link_status": "False", + "mac_address": "3c:61:04:03:ba:42", "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "fxp0.0": { + "ge-11/1/3": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:43", "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/0": { + "ge-11/1/4": { "802.1Q_mode": "", - "description": "UNI : : ACME9525-MS1 : Gi0/2", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:60", + "mac_address": "3c:61:04:03:ba:44", "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/0.2950": { + "ge-11/1/4.2901": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.209.193", - "prefix_length": "28" + "ip_address": "123.65.19.202", + "prefix_length": "30" } ], "lag": [], @@ -354,13 +1144,13 @@ "type": "other", "untagged_vlan": [] }, - "ge-1/0/0.2953": { + "ge-11/1/4.2902": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.145.73", - "prefix_length": "29" + "ip_address": "123.65.19.210", + "prefix_length": "30" } ], "lag": [], @@ -371,10 +1161,15 @@ "type": "other", "untagged_vlan": [] }, - "ge-1/0/0.32767": { + "ge-11/1/4.3005": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.19.86", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], @@ -383,783 +1178,973 @@ "type": "other", "untagged_vlan": [] }, - "ge-1/0/1": { + "ge-11/1/5": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "False", - "mac_address": "28:8a:1c:56:72:61", + "mac_address": "3c:61:04:03:ba:45", "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/2": { + "ge-11/1/6": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:62", - "mtu": "1514", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:46", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/3": { + "ge-11/1/6.3007": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.8.77", + "prefix_length": "30" + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:63", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/4": { + "ge-11/1/7": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:64", - "mtu": "1514", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:47", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/5": { + "ge-11/1/7.3000": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "124.34.0.1", + "prefix_length": "28" + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:65", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/6": { + "ge-11/1/8": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "False", - "mac_address": "28:8a:1c:56:72:66", + "mac_address": "3c:61:04:03:ba:48", "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/7": { + "ge-11/1/9": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "False", - "mac_address": "28:8a:1c:56:72:67", + "mac_address": "3c:61:04:03:ba:49", "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/8": { + "irb": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:68", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:f0", "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/0/9": { + "irb.222": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.132.43", + "prefix_length": "29" + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:69", + "link_status": "True", + "mac_address": [], "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/0": { + "lo0": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6c", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "9192", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/1": { + "lo0.0": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6d", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "9192", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/2": { + "xe-0/0/0": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6e", - "mtu": "1514", + "lag": "ae25", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:00", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/3": { + "xe-0/0/1": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6f", - "mtu": "1514", + "lag": "ae19", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:01", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/4": { + "xe-0/0/2": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:70", - "mtu": "1514", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:02", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/5": { + "xe-0/0/2.2004": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.155.53", + "prefix_length": "30" + } + ], "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:71", - "mtu": "1514", + "link_status": "True", + "mac_address": [], + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/6": { + "xe-0/0/2.2005": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.155.69", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:72", - "mtu": "1514", + "mac_address": [], + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/6.16386": { + "xe-0/0/2.2006": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.155.73", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/7": { + "xe-0/0/2.2007": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.19.97", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:73", - "mtu": "1514", + "mac_address": [], + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/7.16386": { + "xe-0/0/2.2008": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.155.45", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/8": { + "xe-0/0/2.2011": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.156.57", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:74", - "mtu": "1514", + "mac_address": [], + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/8.16386": { + "xe-0/0/2.2012": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.156.85", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/9": { + "xe-0/0/2.3010": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.18.17", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:75", - "mtu": "1514", + "mac_address": [], + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ge-1/1/9.16386": { + "xe-0/0/2.3030": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.19.105", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "gre": { + "xe-0/0/2.3031": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.36.249", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "ipip": { + "xe-0/0/2.3032": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.37.9", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "irb": { + "xe-0/0/3": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae99", "link_status": "True", - "mac_address": "28:8a:1c:56:72:f0", - "mtu": "1514", + "mac_address": "3c:61:04:03:b3:03", + "mtu": "1610", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "jsrv": { + "xe-0/0/4": { "802.1Q_mode": "", - "description": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:04", + "mtu": "1610", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/5": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:c0", - "mtu": "1514", + "mac_address": "3c:61:04:03:b3:05", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "jsrv.1": { + "xe-0/0/5.3200": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "133.4.74.127", - "prefix_length": "2" + "ip_address": "123.65.32.209", + "prefix_length": "30" } ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lc-0/0/0": { + "xe-0/0/5.3201": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.32.217", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lc-0/0/0.32769": { + "xe-0/0/6": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae8", "link_status": "True", - "mac_address": [], - "mtu": "", + "mac_address": "3c:61:04:03:b3:06", + "mtu": "1602", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lo0": { + "xe-0/0/7": { "802.1Q_mode": "", - "description": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae17", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:07", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:08", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:09", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:a5", + "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lo0.0": { + "xe-1/0/0.0": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "198.51.100.1", - "prefix_length": 32 + "ip_address": "123.65.35.113", + "prefix_length": "30" } ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lo0.16384": { + "xe-1/0/1": { "802.1Q_mode": "", "description": "", - "ip_addresses": [ - { - "ip_address": "66.33.236.1", - "prefix_length": 32 - } - ], + "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", + "link_status": "False", + "mac_address": "3c:61:04:03:b3:a6", + "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lo0.16385": { + "xe-1/0/2": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae7", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:a7", + "mtu": "1602", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lsi": { + "xe-1/0/3": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", + "link_status": "False", + "mac_address": "3c:61:04:03:b3:a8", + "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lsi.0": { + "xe-1/0/4": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae5", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:a9", + "mtu": "1602", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lsi.1": { + "xe-1/0/5": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae15", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:aa", + "mtu": "1610", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lsi.2": { + "xe-1/0/6": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae19", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:ab", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lsi.3": { + "xe-1/0/7": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae18", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:ac", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lsi.4": { + "xe-1/0/8": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae0", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:ad", + "mtu": "1602", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lsi.5": { + "xe-1/0/9": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae0", "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b3:ae", + "mtu": "1602", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lsi.6": { + "xe-10/0/0": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b9:72", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "lsi.7": { + "xe-10/0/0.3001": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.20.57", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "me0": { + "xe-10/0/1": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "02:00:00:00:00:0b", - "mtu": "1514", + "mac_address": "3c:61:04:03:b9:73", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "me0.0": { + "xe-10/0/1.3004": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.20.73", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1514", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "mtun": { + "xe-10/0/2": { "802.1Q_mode": "", - "description": "", + "description": "UMI", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b9:74", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "pfe-0/0/0": { + "xe-10/0/2.1": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "pfe-0/0/0.16383": { + "xe-10/0/3": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "", + "link_status": "False", + "mac_address": "3c:61:04:03:b9:75", + "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "pfh-0/0/0": { + "xe-10/0/4": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "", + "mac_address": "3c:61:04:03:b9:76", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "pfh-0/0/0.16383": { + "xe-10/0/4.2000": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.5.68", + "prefix_length": "31" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "pfh-0/0/0.16384": { + "xe-10/0/5": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], - "lag": [], + "lag": "ae25", "link_status": "True", - "mac_address": [], - "mtu": "", + "mac_address": "3c:61:04:03:b9:77", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "pimd": { + "xe-10/0/6": { "802.1Q_mode": "", - "description": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "9192", + "mac_address": "3c:61:04:03:b9:78", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "pime": { + "xe-10/0/6.3200": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.121", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "pip0": { + "xe-10/0/6.3201": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.125", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:b0", - "mtu": "9192", + "mac_address": [], + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "pp0": { + "xe-10/0/6.3202": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.129", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1532", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "rbeb": { + "xe-10/0/6.3203": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.133", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "tap": { + "xe-10/0/6.3204": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.137", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "vtep": { + "xe-10/0/6.3205": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.35.141", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "9192", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-0/0/0": { + "xe-10/0/6.3206": { "802.1Q_mode": "", - "description": "a description", - "ip_addresses": [], - "lag": "ae0", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.38.177", + "prefix_length": "30" + } + ], + "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:00", - "mtu": "1602", + "mac_address": [], + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-0/0/0.0": { + "xe-10/0/6.3207": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.41.1", + "prefix_length": "30" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1602", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-0/0/1": { + "xe-10/0/7": { "802.1Q_mode": "", - "description": "a description", + "description": "a desc", "ip_addresses": [], - "lag": "ae14", + "lag": "ae17", "link_status": "True", - "mac_address": "28:8a:1c:56:72:01", - "mtu": "1602", + "mac_address": "3c:61:04:03:b9:79", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-0/0/1.0": { + "xe-10/0/8": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1602", + "link_status": "False", + "mac_address": "3c:61:04:03:b9:7a", + "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-0/0/2": { + "xe-10/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b9:7b", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-10/2/0": { "802.1Q_mode": "", - "description": "UNI : : ACME9525RL1- : Te1/2/8", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:02", + "mac_address": "3c:61:04:03:b9:c4", "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-0/0/2.3100": { + "xe-10/2/0.3002": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.98.49", + "ip_address": "123.65.20.65", "prefix_length": "30" } ], @@ -1171,29 +2156,24 @@ "type": "other", "untagged_vlan": [] }, - "xe-0/0/2.3101": { + "xe-10/2/1": { "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.106.245", - "prefix_length": "30" - } - ], + "description": "a desc", + "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], + "mac_address": "3c:61:04:03:b9:c5", "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-0/0/2.3102": { + "xe-10/2/1.3003": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.104.1", + "ip_address": "123.65.20.81", "prefix_length": "30" } ], @@ -1205,12 +2185,12 @@ "type": "other", "untagged_vlan": [] }, - "xe-0/0/2.3103": { + "xe-10/2/1.3005": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.106.241", + "ip_address": "123.65.19.249", "prefix_length": "30" } ], @@ -1222,12 +2202,12 @@ "type": "other", "untagged_vlan": [] }, - "xe-0/0/2.3104": { + "xe-10/2/1.3006": { "802.1Q_mode": "", "description": "", "ip_addresses": [ { - "ip_address": "13.65.106.249", + "ip_address": "123.65.20.21", "prefix_length": "30" } ], @@ -1239,31 +2219,43 @@ "type": "other", "untagged_vlan": [] }, - "xe-0/0/2.32767": { + "xe-10/2/2": { "802.1Q_mode": "", - "description": "", + "description": "UMI", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": [], - "mtu": "1522", + "mac_address": "3c:61:04:03:b9:c6", + "mtu": "1514", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-0/0/3": { + "xe-10/2/3": { "802.1Q_mode": "", - "description": "", + "description": "UMI", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:c7", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-10/2/5": { + "802.1Q_mode": "", + "description": "a desc", "ip_addresses": [], "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:03", + "mac_address": "3c:61:04:03:b9:c9", "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-0/0/3.0": { + "xe-10/2/5.0": { "802.1Q_mode": "", "description": "", "ip_addresses": [], @@ -1275,46 +2267,80 @@ "type": "other", "untagged_vlan": [] }, - "xe-1/2/0": { + "xe-10/2/6": { "802.1Q_mode": "", - "description": "a description", + "description": "UMI - reserved for Ixia E1S", "ip_addresses": [], - "lag": "ae11", + "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:78", - "mtu": "1602", + "mac_address": "3c:61:04:03:b9:ca", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-1/2/0.0": { + "xe-10/2/6.3111": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.41.241", + "prefix_length": "29" + } + ], "lag": [], "link_status": "True", "mac_address": [], - "mtu": "1602", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-10/2/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae18", + "link_status": "True", + "mac_address": "3c:61:04:03:b9:cb", + "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-1/3/0": { + "xe-10/2/8": { "802.1Q_mode": "", "description": "", "ip_addresses": [], "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b9:cc", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-10/2/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], "link_status": "True", - "mac_address": "28:8a:1c:56:72:84", + "mac_address": "3c:61:04:03:b9:cd", "mtu": "1522", "tagged_vlans": [], "type": "other", "untagged_vlan": [] }, - "xe-1/3/0.0": { + "xe-10/2/9.2003": { "802.1Q_mode": "", "description": "", - "ip_addresses": [], + "ip_addresses": [ + { + "ip_address": "123.65.5.74", + "prefix_length": "31" + } + ], "lag": [], "link_status": "True", "mac_address": [], @@ -1324,5 +2350,5 @@ "untagged_vlan": [] } }, - "serial": "T9958" + "serial": "JN122E628AFA" } \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_2.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_2.json new file mode 100755 index 00000000..69737594 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_2.json @@ -0,0 +1,496 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:91", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.68", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:90", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.70", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:93", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.150", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:94", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.230.25", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "et-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "04:69:8f:61:ed:b7", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "fxp0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "e4:5d:37:fb:79:4a", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "fxp0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "fe80::e65d:37ff:fefb:794a", + "prefix_length": "64" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:a7", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/0.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.105", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/0.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.109", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/0.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.113", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/0.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.117", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/0.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.121", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae1", + "link_status": "True", + "mac_address": "04:69:8f:61:f1:a8", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae2", + "link_status": "True", + "mac_address": "04:69:8f:61:f1:a9", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae3", + "link_status": "True", + "mac_address": "04:69:8f:61:f1:aa", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:ac", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.153", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:ad", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/6.3200": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.161", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/6.3201": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.165", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/6.3202": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.169", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/6.3203": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.173", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/6.3204": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.177", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/6.3205": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.181", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:ae", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/1/7.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.210.225", + "prefix_length": "27" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + } + }, + "serial": "FH577" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_3.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_3.json new file mode 100755 index 00000000..17364b26 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_3.json @@ -0,0 +1,552 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:c0", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.32", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:c1", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.34", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:c2", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.36", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "em1": { + "802.1Q_mode": "", + "description": "UMI : Internal Backplane Interface", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "02:00:02:00:00:04", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:60", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.132.201", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:61", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:62", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:63", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:64", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:65", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:66", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:67", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:68", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:69", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.137", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.61", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.69", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.57", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.65", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:6c", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:6d", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:6e", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:6f", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:70", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:71", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae2", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:72", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae1", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:73", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:74", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:75", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.226.112", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:00", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:01", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:02", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:03", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + } + }, + "serial": "BC899" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_4.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_4.json new file mode 100755 index 00000000..644bbb4b --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_4.json @@ -0,0 +1,332 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:8b:c0", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.177", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:8b:c1", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.179", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "64:64:9b:63:86:95", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae1", + "link_status": "True", + "mac_address": "64:64:9b:63:86:96", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:97", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:98", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:99", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9a", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9b", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9c", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9d", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9e", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/0": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3a", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/1": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3b", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/2": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3c", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/3": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3d", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/4": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3e", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/5": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3f", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/6": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:40", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/7": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:41", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/8": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:42", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/9": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:43", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + } + }, + "serial": "JN12342D2AFC" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_5.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_5.json new file mode 100755 index 00000000..b8f32617 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_5.json @@ -0,0 +1,964 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:c8", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.242", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae17": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:67:cd", + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae17.2100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.18", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:67:ca", + "mtu": "1610", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:cc", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.71", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:c9", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.31", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae99": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:d0", + "mtu": "1610", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ge-0/2/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:ac", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.221.1", + "prefix_length": "24" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.132.209", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:ad", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:ae", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:af", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b0", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b1", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b2", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:b3", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b4", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:b5", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:fe", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:ff", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:00", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:01", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:02", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:03", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:04", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:05", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:06", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/3/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:07", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:08", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/0.211": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.169", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae17", + "link_status": "False", + "mac_address": "44:f4:77:0e:60:09", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0a", + "mtu": "9100", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/2.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.29.49", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9100", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:0b", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.49", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0c", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0d", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/5.311": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.177", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/5.312": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.229", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0e", + "mtu": "1610", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae7", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0f", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:10", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:11", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:52", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:54", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:55", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/3.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.16.153", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/3.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.221", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/3.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.229", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/3.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.217", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/3.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.225", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:56", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:57", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/5.411": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.185", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:58", + "mtu": "1610", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:59", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/7.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.5.36", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:5a", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:5b", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/2/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae5", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:f6", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/3/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:62:48", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/3/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + } + }, + "serial": "JN124F540AFB" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_6.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_6.json new file mode 100755 index 00000000..43dec79c --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_6.json @@ -0,0 +1,600 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:c0", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.4", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:c1", + "mtu": "1514", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae11": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:c2", + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "ae11.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.170", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "tagged_vlans": [], + "type": "lag", + "untagged_vlan": [] + }, + "em1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "02:00:02:00:00:04", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:60", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.208.161", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.133.57", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:61", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:62", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:63", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:64", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:65", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:66", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:67", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:68", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:69", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6c", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6d", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6e", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6f", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:70", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:71", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:72", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:73", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:74", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/1/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:75", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:00", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:01", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.217", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:02", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/2.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.193", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/2.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.24.249", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/2.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.6", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/2.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.10", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/2.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.14", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:03", + "mtu": "1522", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:78", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-1/3/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae11", + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:84", + "mtu": "1602", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + } + }, + "serial": "T9983" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_7.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_7.json new file mode 100755 index 00000000..0016af04 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vlans/expected_result_7.json @@ -0,0 +1,2600 @@ +{ + "interfaces": { + "ge-0/0/0": { + "802.1Q_mode": "", + "description": "TESTING AP108", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "9c:cc:83:50:b7:03", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:04", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/10": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "9c:cc:83:50:b7:0d", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/10.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/11": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0e", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/11.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/12": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0f", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/12.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/13": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:10", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/13.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/14": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:11", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/14.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/15": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:12", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/15.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/16": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:13", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/16.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/17": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:14", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/17.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/18": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:15", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/18.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/19": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:16", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/19.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:05", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/20": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:17", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/20.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/21": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:18", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/21.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/22": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:19", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/22.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/23": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1a", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/23.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/24": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1b", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/24.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/25": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1c", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/25.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/26": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1d", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/26.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/27": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1e", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/27.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/28": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1f", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/28.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/29": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:20", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/29.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:06", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/30": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:21", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/30.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/31": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:22", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/31.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/32": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:23", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/32.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/33": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:24", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/33.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/34": { + "802.1Q_mode": "", + "description": "ge-0/0/34|VFLAB-AP01+", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:25", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/34.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/35": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:26", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/35.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/36": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:27", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/36.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/37": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:28", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/37.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/38": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:29", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/38.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/39": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2a", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/39.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:07", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/40": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2b", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/40.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/41": { + "802.1Q_mode": "", + "description": "ge-0/0/41|AP04", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2c", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/41.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/42": { + "802.1Q_mode": "", + "description": "ACMEVF-ZPE01", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2d", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/42.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/43": { + "802.1Q_mode": "", + "description": "TRUST - TO FW02 PORT 6", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2e", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/43.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/44": { + "802.1Q_mode": "", + "description": "TO FW01 MGMT", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2f", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/44.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/45": { + "802.1Q_mode": "", + "description": "TRUST - TO FW01 PORT 7", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:30", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/45.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/46": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:31", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/46.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/47": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:32", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/47.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:08", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:09", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/6.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0a", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0b", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0c", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/0/9.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:37", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-0/2/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:83", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:84", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/10": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8d", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/10.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/11": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8e", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/11.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/12": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8f", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/12.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/13": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:90", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/13.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/14": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:91", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/14.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/15": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:92", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/15.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/16": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:93", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/16.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/17": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:94", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/17.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/18": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:95", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/18.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/19": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:96", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/19.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:85", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/20": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:97", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/20.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/21": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:98", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/21.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/22": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:99", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/22.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/23": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9a", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/23.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/24": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9b", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/24.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/25": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9c", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/25.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/26": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9d", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/26.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/27": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9e", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/27.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/28": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9f", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/28.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/29": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a0", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/29.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:86", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/30": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a1", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/30.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/31": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a2", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/31.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/32": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a3", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/32.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/33": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a4", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/33.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/34": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a5", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/34.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/35": { + "802.1Q_mode": "", + "description": "ge-1/0/35|AP02", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a6", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/35.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/36": { + "802.1Q_mode": "", + "description": "ge-1/0/36|AP03", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a7", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/36.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/37": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a8", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/37.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/38": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a9", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/38.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/39": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:aa", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/39.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:87", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/40": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ab", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/40.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/41": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ac", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/41.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/42": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ad", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/42.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/43": { + "802.1Q_mode": "", + "description": "TRUST - TO FW02 PORT 6", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ae", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/43.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/44": { + "802.1Q_mode": "", + "description": "TO FW02 MGMT", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:af", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/44.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/45": { + "802.1Q_mode": "", + "description": "TRUST - TO FW02 PORT 7", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:b0", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/45.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/46": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:b1", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/46.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/47": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:b2", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/47.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:88", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:89", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/6.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8a", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8b", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8c", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/0/9.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "ge-1/2/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "irb": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:01", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "irb.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "fe80::9ecc:8300:50:b701", + "prefix_length": "64" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "irb.16": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": "23" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "vme": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:82", + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "vme.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "fe80::9ecc:83ff:fe50:9482", + "prefix_length": "64" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/2/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/2/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/2/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/2/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/2/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/2/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + }, + "xe-0/2/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "tagged_vlans": [], + "type": "other", + "untagged_vlan": [] + } + }, + "serial": "PD3987654321" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_1.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_1.json index 4560593a..81faa009 100755 --- a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_1.json +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_1.json @@ -1,1224 +1,2358 @@ { - "interfaces": { - "ae0": { - "802.1Q_mode": "", - "description": "a description", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:c0", - "mtu": "1602", - "type": "lag", - "vrf": {} - }, - "ae0.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.230.30", - "prefix_length": "31" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1602", - "type": "lag", - "vrf": {} - }, - "ae11": { - "802.1Q_mode": "", - "description": "a description", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:c2", - "mtu": "1602", - "type": "lag", - "vrf": {} - }, - "ae11.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.231.109", - "prefix_length": "31" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1602", - "type": "lag", - "vrf": {} - }, - "ae14": { - "802.1Q_mode": "", - "description": "a description", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:c3", - "mtu": "1602", - "type": "lag", - "vrf": {} - }, - "ae14.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.231.118", - "prefix_length": "31" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1602", - "type": "lag", - "vrf": {} - }, - "ae3": { - "802.1Q_mode": "", - "description": "UMI", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:c1", - "mtu": "1514", - "type": "lag", - "vrf": {} - }, - "cbp0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "2a:8a:1c:56:72:11", - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "demux0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "dsc": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "em0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "02:00:00:00:00:04", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "em0.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "10.0.0.4", - "prefix_length": "8" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "em1": { - "802.1Q_mode": "", - "description": "UMI", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "02:00:02:00:00:04", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "em1.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "10.0.0.1", - "prefix_length": "8" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "esi": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "fti0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "fti1": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "fti2": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "fti3": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "fti4": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "fti5": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "fti6": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "fti7": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "fxp0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:ff", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "fxp0.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/0/0": { - "802.1Q_mode": "", - "description": "UNI : : ACME9525-MS1 : Gi0/2", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:60", - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "ge-1/0/0.2950": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.209.193", - "prefix_length": "28" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "ge-1/0/0.2953": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.145.73", - "prefix_length": "29" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "ge-1/0/0.32767": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "ge-1/0/1": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:61", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/0/2": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:62", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/0/3": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:63", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/0/4": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:64", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/0/5": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:65", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/0/6": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:66", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/0/7": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:67", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/0/8": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:68", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/0/9": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:69", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6c", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/1": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6d", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/2": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6e", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/3": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:6f", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/4": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:70", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/5": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "False", - "mac_address": "28:8a:1c:56:72:71", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/6": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:72", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/6.16386": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/7": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:73", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/7.16386": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/8": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:74", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/8.16386": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/9": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:75", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "ge-1/1/9.16386": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "gre": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "ipip": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "irb": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:f0", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "jsrv": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:c0", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "jsrv.1": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "133.4.74.127", - "prefix_length": "2" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "lc-0/0/0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "", - "type": "other", - "vrf": {} - }, - "lc-0/0/0.32769": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "", - "type": "other", - "vrf": {} - }, - "lo0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lo0.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "198.51.100.1", - "prefix_length": 32 - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lo0.16384": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "66.33.236.1", - "prefix_length": 32 - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lo0.16385": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lsi": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lsi.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lsi.1": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lsi.2": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lsi.3": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lsi.4": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lsi.5": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lsi.6": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "lsi.7": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "me0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "02:00:00:00:00:0b", - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "me0.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1514", - "type": "other", - "vrf": {} - }, - "mtun": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "pfe-0/0/0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "", - "type": "other", - "vrf": {} - }, - "pfe-0/0/0.16383": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "", - "type": "other", - "vrf": {} - }, - "pfh-0/0/0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "", - "type": "other", - "vrf": {} - }, - "pfh-0/0/0.16383": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "", - "type": "other", - "vrf": {} - }, - "pfh-0/0/0.16384": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "", - "type": "other", - "vrf": {} - }, - "pimd": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "pime": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "pip0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:b0", - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "pp0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1532", - "type": "other", - "vrf": {} - }, - "rbeb": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "tap": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "vtep": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "9192", - "type": "other", - "vrf": {} - }, - "xe-0/0/0": { - "802.1Q_mode": "", - "description": "a description", - "ip_addresses": [], - "lag": "ae0", - "link_status": "True", - "mac_address": "28:8a:1c:56:72:00", - "mtu": "1602", - "type": "other", - "vrf": {} - }, - "xe-0/0/0.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1602", - "type": "other", - "vrf": {} - }, - "xe-0/0/1": { - "802.1Q_mode": "", - "description": "a description", - "ip_addresses": [], - "lag": "ae14", - "link_status": "True", - "mac_address": "28:8a:1c:56:72:01", - "mtu": "1602", - "type": "other", - "vrf": {} - }, - "xe-0/0/1.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1602", - "type": "other", - "vrf": {} - }, - "xe-0/0/2": { - "802.1Q_mode": "", - "description": "UNI : : ACME9525RL1- : Te1/2/8", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:02", - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-0/0/2.3100": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.98.49", - "prefix_length": "30" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-0/0/2.3101": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.106.245", - "prefix_length": "30" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-0/0/2.3102": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.104.1", - "prefix_length": "30" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-0/0/2.3103": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.106.241", - "prefix_length": "30" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-0/0/2.3104": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [ - { - "ip_address": "13.65.106.249", - "prefix_length": "30" - } - ], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-0/0/2.32767": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-0/0/3": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:03", - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-0/0/3.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-1/2/0": { - "802.1Q_mode": "", - "description": "a description", - "ip_addresses": [], - "lag": "ae11", - "link_status": "True", - "mac_address": "28:8a:1c:56:72:78", - "mtu": "1602", - "type": "other", - "vrf": {} - }, - "xe-1/2/0.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1602", - "type": "other", - "vrf": {} - }, - "xe-1/3/0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": "28:8a:1c:56:72:84", - "mtu": "1522", - "type": "other", - "vrf": {} - }, - "xe-1/3/0.0": { - "802.1Q_mode": "", - "description": "", - "ip_addresses": [], - "lag": [], - "link_status": "True", - "mac_address": [], - "mtu": "1522", - "type": "other", - "vrf": {} - } - }, - "serial": "T9958" + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:c0", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.5", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:c1", + "mtu": "1514", + "type": "lag", + "vrf": {} + }, + "ae10": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:ca", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae10.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.57", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae15": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cb", + "mtu": "1610", + "type": "lag", + "vrf": {} + }, + "ae15.4000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.196", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1610", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae15.4002": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.200", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1610", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae17": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cc", + "mtu": "1522", + "type": "lag", + "vrf": {} + }, + "ae17.2100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.5.210", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "INTERNET" + } + }, + "ae18": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cd", + "mtu": "1522", + "type": "lag", + "vrf": {} + }, + "ae18.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.27.233", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ae18.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.27.241", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-GUEST" + } + }, + "ae18.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.27.249", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-IND" + } + }, + "ae18.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.1", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-USER" + } + }, + "ae18.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.9", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-DEVICES" + } + }, + "ae18.3105": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.17", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-RED" + } + }, + "ae18.3600": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.17.193", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ae19": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:ce", + "mtu": "1522", + "type": "lag", + "vrf": {} + }, + "ae19.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.4.0", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "INTERNET" + } + }, + "ae19.2001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.4.4", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "INTERNET" + } + }, + "ae19.2003": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.4.96", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "INTERNET" + } + }, + "ae2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:c2", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.167", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae25": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3e:61:04:03:b3:b5", + "mtu": "1522", + "type": "lag", + "vrf": {} + }, + "ae25.2001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.73", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "INTERNET" + } + }, + "ae25.2002": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.161", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "INTERNET" + } + }, + "ae25.2011": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.97", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "INTERNET" + } + }, + "ae25.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.21.121", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ae25.3007": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.22.229", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-IND" + } + }, + "ae25.3011": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.249", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ae25.3015": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.65", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-RTSN" + } + }, + "ae25.3016": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.36.169", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ae25.3017": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.28.25", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ae25.3019": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.40.241", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ae25.3050": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.16.74", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ae3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:c3", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.27", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:c5", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.127", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:c6", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae6.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.229", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:c7", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.236", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:c8", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.123", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:c9", + "mtu": "1514", + "type": "lag", + "vrf": {} + }, + "ae99": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:cf", + "mtu": "1610", + "type": "lag", + "vrf": {} + }, + "ae99.4006": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.59", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1610", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "et-2/1/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae2", + "link_status": "True", + "mac_address": "3c:61:04:03:b4:73", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "et-2/3/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b4:c5", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-11/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:17", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-11/0/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.212.1", + "prefix_length": "26" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-NETMGMT" + } + }, + "ge-11/0/0.2951": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "134.248.215.65", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-11/0/0.2952": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.0.193", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-NETMGMT" + } + }, + "ge-11/0/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.132.9", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-11/0/0.2960": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "124.46.189.129", + "prefix_length": "26" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-EXTMGMT" + } + }, + "ge-11/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae6", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:18", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "ge-11/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:19", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-11/0/2.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.82", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-11/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:1a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-11/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1b", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-11/0/4.900": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.21.241", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-PC-ABC" + } + }, + "ge-11/0/4.902": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.22.41", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-PC-DEF" + } + }, + "ge-11/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae10", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1c", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "ge-11/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1d", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-11/0/6.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.2", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3EXT-SIP" + } + }, + "ge-11/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1e", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-11/0/7.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "124.22.0.1", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3EXT-SIP" + } + }, + "ge-11/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:1f", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-11/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:20", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-11/1/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:40", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-11/1/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae3", + "link_status": "True", + "mac_address": "3c:61:04:03:ba:41", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "ge-11/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:42", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-11/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:43", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-11/1/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:44", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-11/1/4.2901": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.202", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-PC-ABC" + } + }, + "ge-11/1/4.2902": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.210", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-MGMT-MCBU" + } + }, + "ge-11/1/4.3005": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.86", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-11/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:45", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-11/1/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:46", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-11/1/6.3007": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.77", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-11/1/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:47", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-11/1/7.3000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "124.34.0.1", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-11/1/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:48", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-11/1/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:ba:49", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "irb": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:ba:f0", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "irb.222": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.132.43", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": {} + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": { + "name": "default" + } + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae25", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:00", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae19", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:01", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b3:02", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/2.2004": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.155.53", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.2005": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.155.69", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.2006": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.155.73", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.2007": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.97", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.2008": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.155.45", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.2011": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.156.57", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.2012": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.156.85", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.3010": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.17", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.3030": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.105", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.3031": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.36.249", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-NBLX" + } + }, + "xe-0/0/2.3032": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.9", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-NBL-ICS" + } + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:03", + "mtu": "1610", + "type": "other", + "vrf": {} + }, + "xe-0/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:04", + "mtu": "1610", + "type": "other", + "vrf": {} + }, + "xe-0/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b3:05", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/5.3200": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.32.209", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/5.3201": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.32.217", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-ETC" + } + }, + "xe-0/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae8", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:06", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-0/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae17", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:07", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:08", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-0/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:09", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b3:a5", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-1/0/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.113", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-1/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b3:a6", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-1/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae7", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:a7", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b3:a8", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-1/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae5", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:a9", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-1/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae15", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:aa", + "mtu": "1610", + "type": "other", + "vrf": {} + }, + "xe-1/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae19", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:ab", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae18", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:ac", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:ad", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-1/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "3c:61:04:03:b3:ae", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-10/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:72", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/0/0.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.20.57", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-10/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:73", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/0/1.3004": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.20.73", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-EXTRANET-IC" + } + }, + "xe-10/0/2": { + "802.1Q_mode": "", + "description": "UMI", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:74", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/0/2.1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "default" + } + }, + "xe-10/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b9:75", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-10/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:76", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/0/4.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.5.68", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "INTERNET" + } + }, + "xe-10/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae25", + "link_status": "True", + "mac_address": "3c:61:04:03:b9:77", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:78", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/0/6.3200": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.121", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-10/0/6.3201": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.125", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-GUEST" + } + }, + "xe-10/0/6.3202": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.129", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-IND" + } + }, + "xe-10/0/6.3203": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.133", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-USER" + } + }, + "xe-10/0/6.3204": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.137", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-DEVICES" + } + }, + "xe-10/0/6.3205": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.35.141", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-RED" + } + }, + "xe-10/0/6.3206": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.38.177", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-PC-ABC" + } + }, + "xe-10/0/6.3207": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.41.1", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-REG" + } + }, + "xe-10/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae17", + "link_status": "True", + "mac_address": "3c:61:04:03:b9:79", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b9:7a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-10/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b9:7b", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-10/2/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:c4", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/2/0.3002": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.20.65", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-10/2/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:c5", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/2/1.3003": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.20.81", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-RTSN" + } + }, + "xe-10/2/1.3005": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.249", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-GUEST" + } + }, + "xe-10/2/1.3006": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.20.21", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-IND" + } + }, + "xe-10/2/2": { + "802.1Q_mode": "", + "description": "UMI", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:c6", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-10/2/3": { + "802.1Q_mode": "", + "description": "UMI", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:c7", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-10/2/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:c9", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/2/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L2ACME-EXTRANET-GLOBAL-1" + } + }, + "xe-10/2/6": { + "802.1Q_mode": "", + "description": "UMI - reserved for Ixia E1S", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:ca", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/2/6.3111": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.41.241", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-10/2/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae18", + "link_status": "True", + "mac_address": "3c:61:04:03:b9:cb", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/2/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "3c:61:04:03:b9:cc", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-10/2/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "3c:61:04:03:b9:cd", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-10/2/9.2003": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.5.74", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "INTERNET" + } + } + }, + "serial": "JN122E628AFA" } \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_2.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_2.json new file mode 100755 index 00000000..30205e39 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_2.json @@ -0,0 +1,501 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:91", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.68", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:90", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.70", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:93", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.150", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f5:94", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.230.25", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "et-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "04:69:8f:61:ed:b7", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "fxp0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "e4:5d:37:fb:79:4a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "fxp0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "fe80::e65d:37ff:fefb:794a", + "prefix_length": "64" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default" + } + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": {} + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": { + "name": "default" + } + }, + "xe-0/1/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:a7", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/1/0.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.105", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/1/0.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.109", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-GUEST" + } + }, + "xe-0/1/0.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.113", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-IND" + } + }, + "xe-0/1/0.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.117", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-USER" + } + }, + "xe-0/1/0.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.121", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-DEVICES" + } + }, + "xe-0/1/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae1", + "link_status": "True", + "mac_address": "04:69:8f:61:f1:a8", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-0/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae2", + "link_status": "True", + "mac_address": "04:69:8f:61:f1:a9", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-0/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": "ae3", + "link_status": "True", + "mac_address": "04:69:8f:61:f1:aa", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-0/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:ac", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-0/1/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.153", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/1/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:ad", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/1/6.3200": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.161", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/1/6.3201": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.165", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-GUEST" + } + }, + "xe-0/1/6.3202": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.169", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-IND" + } + }, + "xe-0/1/6.3203": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.173", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-USER" + } + }, + "xe-0/1/6.3204": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.177", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-DEVICES" + } + }, + "xe-0/1/6.3205": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.181", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-RED" + } + }, + "xe-0/1/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "04:69:8f:61:f1:ae", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/1/7.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.210.225", + "prefix_length": "27" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-NETMGMT" + } + } + }, + "serial": "FH577" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_3.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_3.json new file mode 100755 index 00000000..4fca1e65 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_3.json @@ -0,0 +1,533 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:c0", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.32", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:c1", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.34", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:c2", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.36", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "em1": { + "802.1Q_mode": "", + "description": "UMI : Internal Backplane Interface", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "02:00:02:00:00:04", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:60", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-1/0/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-NETMGMT" + } + }, + "ge-1/0/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.132.201", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:61", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:62", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:63", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:64", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:65", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:66", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:67", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:68", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:69", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-1/0/9.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.137", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-1/0/9.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.61", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-GUEST" + } + }, + "ge-1/0/9.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.69", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-IND" + } + }, + "ge-1/0/9.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.57", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-USER" + } + }, + "ge-1/0/9.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.26.65", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-DEVICES" + } + }, + "ge-1/1/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "58:00:bb:8c:11:6c", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-1/1/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-1/1/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:6d", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:6e", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:6f", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:70", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:71", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae2", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:72", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "ge-1/1/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae1", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:73", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "ge-1/1/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:74", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "ge-1/1/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "58:00:bb:8c:11:75", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": {} + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.226.112", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": { + "name": "default" + } + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:00", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:01", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:02", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "58:00:bb:8c:11:03", + "mtu": "1514", + "type": "other", + "vrf": {} + } + }, + "serial": "BC899" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_4.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_4.json new file mode 100755 index 00000000..9b3b8ac3 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_4.json @@ -0,0 +1,312 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:8b:c0", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.177", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:8b:c1", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.179", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "64:64:9b:63:86:95", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae1", + "link_status": "True", + "mac_address": "64:64:9b:63:86:96", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:97", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:98", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:99", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9b", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9c", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9d", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:86:9e", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/0": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/1": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3b", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/2": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3c", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/3": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3d", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/4": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3e", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/5": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:3f", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/6": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:40", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/7": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:41", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/8": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:42", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/9": { + "802.1Q_mode": "", + "description": "*UMI*", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "64:64:9b:63:87:43", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": {} + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": { + "name": "default" + } + } + }, + "serial": "JN12342D2AFC" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_5.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_5.json new file mode 100755 index 00000000..d2359f53 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_5.json @@ -0,0 +1,930 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:c8", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.242", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae17": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:67:cd", + "mtu": "1522", + "type": "lag", + "vrf": {} + }, + "ae17.2100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.6.18", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1522", + "type": "lag", + "vrf": { + "name": "INTERNET" + } + }, + "ae3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:67:ca", + "mtu": "1610", + "type": "lag", + "vrf": {} + }, + "ae5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:cc", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.71", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:c9", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.31", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae99": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:67:d0", + "mtu": "1610", + "type": "lag", + "vrf": {} + }, + "ge-0/2/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:ac", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-0/2/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.221.1", + "prefix_length": "24" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-NETMGMT" + } + }, + "ge-0/2/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.132.209", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-0/2/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:ad", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/2/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:ae", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/2/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:af", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/2/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b0", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/2/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b1", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/2/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b2", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/2/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:b3", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-0/2/7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-0/2/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:b4", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/2/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:b5", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/3/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:fe", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/3/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:ff", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/3/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:00", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/3/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:01", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-0/3/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-0/3/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:02", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/3/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:03", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/3/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:04", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/3/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:05", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/3/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:06", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/3/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:07", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": {} + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": { + "name": "default" + } + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:08", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/0.211": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.169", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae17", + "link_status": "False", + "mac_address": "44:f4:77:0e:60:09", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0a", + "mtu": "9100", + "type": "other", + "vrf": {} + }, + "xe-0/0/2.3001": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.29.49", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9100", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:60:0b", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-0/0/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.37.49", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0c", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0d", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/5.311": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.177", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/5.312": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.19.229", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-DCI" + } + }, + "xe-0/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0e", + "mtu": "1610", + "type": "other", + "vrf": {} + }, + "xe-0/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae7", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:0f", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-0/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:10", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-0/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:60:11", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-1/0/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:52", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-1/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "44:f4:77:0e:61:54", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/0/3": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:55", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/0/3.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.16.153", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-1/0/3.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.221", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-GUEST" + } + }, + "xe-1/0/3.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.229", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-IND" + } + }, + "xe-1/0/3.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.217", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-USER" + } + }, + "xe-1/0/3.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.25.225", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-DEVICES" + } + }, + "xe-1/0/4": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:56", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/0/5": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:57", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/0/5.411": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.185", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-1/0/6": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae99", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:58", + "mtu": "1610", + "type": "other", + "vrf": {} + }, + "xe-1/0/7": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:61:59", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/0/7.2000": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.5.36", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "INTERNET" + } + }, + "xe-1/0/8": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:5a", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-1/0/9": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:5b", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-1/2/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae5", + "link_status": "True", + "mac_address": "44:f4:77:0e:61:f6", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-1/3/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "44:f4:77:0e:62:48", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/3/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": {} + } + }, + "serial": "JN124F540AFB" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_6.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_6.json new file mode 100755 index 00000000..8680c2e0 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_6.json @@ -0,0 +1,581 @@ +{ + "interfaces": { + "ae0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:c0", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.229.4", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:c1", + "mtu": "1514", + "type": "lag", + "vrf": {} + }, + "ae1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "ae11": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:c2", + "mtu": "1602", + "type": "lag", + "vrf": {} + }, + "ae11.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.228.170", + "prefix_length": "31" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1602", + "type": "lag", + "vrf": { + "name": "default" + } + }, + "em1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "02:00:02:00:00:04", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:60", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-1/0/0.2950": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.208.161", + "prefix_length": "28" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-NETMGMT" + } + }, + "ge-1/0/0.2953": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.133.57", + "prefix_length": "29" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:61", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-1/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L2ACME-2" + } + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:62", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:63", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:64", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:65", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:66", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:67", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:68", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-1/0/8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:69", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "ge-1/1/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6c", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6d", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6e", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:6f", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:70", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:71", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:72", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:73", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:74", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/1/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:75", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "lo0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": {} + }, + "lo0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": 32 + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "9192", + "type": "other", + "vrf": { + "name": "default" + } + }, + "xe-0/0/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae0", + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:00", + "mtu": "1602", + "type": "other", + "vrf": {} + }, + "xe-0/0/1": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:01", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-0/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.217", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:02", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-0/0/2.3100": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.18.193", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-CORP" + } + }, + "xe-0/0/2.3101": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.24.249", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-GUEST" + } + }, + "xe-0/0/2.3102": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.6", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-IND" + } + }, + "xe-0/0/2.3103": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.10", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-USER" + } + }, + "xe-0/0/2.3104": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "123.65.8.14", + "prefix_length": "30" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1522", + "type": "other", + "vrf": { + "name": "L3ACME-DEVICES" + } + }, + "xe-0/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:03", + "mtu": "1522", + "type": "other", + "vrf": {} + }, + "xe-1/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "28:8a:1c:56:9b:78", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "xe-1/3/0": { + "802.1Q_mode": "", + "description": "a desc", + "ip_addresses": [], + "lag": "ae11", + "link_status": "True", + "mac_address": "28:8a:1c:56:9b:84", + "mtu": "1602", + "type": "other", + "vrf": {} + } + }, + "serial": "T9983" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_7.json b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_7.json new file mode 100755 index 00000000..5532bf1f --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/juniper_junos/sync_network_data_with_vrfs/expected_result_7.json @@ -0,0 +1,2585 @@ +{ + "interfaces": { + "ge-0/0/0": { + "802.1Q_mode": "", + "description": "TESTING AP108", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "9c:cc:83:50:b7:03", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:04", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/10": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": "9c:cc:83:50:b7:0d", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/10.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "False", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/11": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0e", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/11.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/12": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0f", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/12.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/13": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:10", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/13.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/14": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:11", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/14.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/15": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:12", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/15.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/16": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:13", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/16.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/17": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:14", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/17.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/18": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:15", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/18.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/19": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:16", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/19.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:05", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/20": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:17", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/20.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/21": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:18", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/21.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/22": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:19", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/22.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/23": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/23.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/24": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1b", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/24.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/25": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1c", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/25.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/26": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1d", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/26.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/27": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1e", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/27.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/28": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:1f", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/28.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/29": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:20", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/29.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:06", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/30": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:21", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/30.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/31": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:22", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/31.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/32": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:23", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/32.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/33": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:24", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/33.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/34": { + "802.1Q_mode": "", + "description": "ge-0/0/34|VFLAB-AP01+", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:25", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/34.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/35": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:26", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/35.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/36": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:27", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/36.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/37": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:28", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/37.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/38": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:29", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/38.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/39": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/39.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:07", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/40": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2b", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/40.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/41": { + "802.1Q_mode": "", + "description": "ge-0/0/41|AP04", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2c", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/41.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/42": { + "802.1Q_mode": "", + "description": "ACMEVF-ZPE01", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2d", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/42.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/43": { + "802.1Q_mode": "", + "description": "TRUST - TO FW02 PORT 6", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2e", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/43.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/44": { + "802.1Q_mode": "", + "description": "TO FW01 MGMT", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:2f", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/44.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/45": { + "802.1Q_mode": "", + "description": "TRUST - TO FW01 PORT 7", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:30", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/45.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/46": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:31", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/46.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/47": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:32", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/47.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:08", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:09", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/6.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0b", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:0c", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/0/9.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:37", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-0/2/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-0/2/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "ge-0/2/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "ge-0/2/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "ge-0/2/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "ge-0/2/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "ge-0/2/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "ge-1/0/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:83", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:84", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/10": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8d", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/10.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/11": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8e", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/11.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/12": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8f", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/12.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/13": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:90", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/13.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/14": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:91", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/14.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/15": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:92", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/15.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/16": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:93", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/16.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/17": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:94", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/17.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/18": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:95", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/18.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/19": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:96", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/19.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:85", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/20": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:97", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/20.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/21": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:98", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/21.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/22": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:99", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/22.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/23": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/23.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/24": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9b", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/24.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/25": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9c", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/25.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/26": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9d", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/26.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/27": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9e", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/27.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/28": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:9f", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/28.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/29": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a0", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/29.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:86", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/30": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a1", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/30.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/31": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a2", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/31.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/32": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a3", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/32.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/33": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a4", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/33.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/34": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a5", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/34.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/35": { + "802.1Q_mode": "", + "description": "ge-1/0/35|AP02", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a6", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/35.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/36": { + "802.1Q_mode": "", + "description": "ge-1/0/36|AP03", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a7", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/36.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/37": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a8", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/37.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/38": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:a9", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/38.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/39": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:aa", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/39.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/4": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:87", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/4.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/40": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ab", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/40.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/41": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ac", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/41.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/42": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ad", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/42.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/43": { + "802.1Q_mode": "", + "description": "TRUST - TO FW02 PORT 6", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:ae", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/43.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/44": { + "802.1Q_mode": "", + "description": "TO FW02 MGMT", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:af", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/44.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/45": { + "802.1Q_mode": "", + "description": "TRUST - TO FW02 PORT 7", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:b0", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/45.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/46": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:b1", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/46.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/47": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:b2", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/47.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/5": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:88", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/5.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/6": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:89", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/6.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/7": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8a", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/7.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/8": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8b", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/8.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/0/9": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:8c", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "ge-1/0/9.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default-switch" + } + }, + "ge-1/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "ge-1/2/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "irb": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:b7:01", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "irb.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "fe80::9ecc:8300:50:b701", + "prefix_length": "64" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default" + } + }, + "irb.16": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "198.51.100.1", + "prefix_length": "23" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default" + } + }, + "vme": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": "True", + "mac_address": "9c:cc:83:50:94:82", + "mtu": "1514", + "type": "other", + "vrf": {} + }, + "vme.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [ + { + "ip_address": "fe80::9ecc:83ff:fe50:9482", + "prefix_length": "64" + } + ], + "lag": [], + "link_status": "True", + "mac_address": [], + "mtu": "1514", + "type": "other", + "vrf": { + "name": "default" + } + }, + "xe-0/2/0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "xe-0/2/0.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "xe-0/2/1": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "xe-0/2/1.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "xe-0/2/2": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "xe-0/2/2.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "xe-0/2/3": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + }, + "xe-0/2/3.0": { + "802.1Q_mode": "", + "description": "", + "ip_addresses": [], + "lag": [], + "link_status": [], + "mac_address": [], + "mtu": "", + "type": "other", + "vrf": {} + } + }, + "serial": "PD3987654321" +} \ No newline at end of file From 75eb7c2f11b6f979129700f68a642d474df05d61 Mon Sep 17 00:00:00 2001 From: Jeff Kala <48843785+jeffkala@users.noreply.github.com> Date: Fri, 11 Oct 2024 10:18:09 -0600 Subject: [PATCH 4/9] Add a "raw" parser concept, also add sync device platform support for hp_comware (#250) * add first attempt at comware * add raw parser and force to fake json payload * fix new raw parser type * fix comware yaml file * add raw parser and add new sync devices platform hp_comware * add raw parser docs --- README.md | 18 +-- changes/249.added | 2 + docs/user/app_yaml_overrides.md | 4 +- .../command_mappers/hp_comware.yml | 31 ++++ .../nornir_plays/command_getter.py | 4 + .../sync_devices/expected_result_1.json | 12 +- .../hp_comware/command_getter_result_1.json | 147 ++++++++++++++++++ .../sync_devices/expected_result_1.json | 7 + .../tests/test_formatter.py | 14 +- .../tests/test_transform.py | 10 +- 10 files changed, 231 insertions(+), 18 deletions(-) create mode 100755 changes/249.added create mode 100755 nautobot_device_onboarding/command_mappers/hp_comware.yml create mode 100755 nautobot_device_onboarding/tests/mock/hp_comware/command_getter_result_1.json create mode 100755 nautobot_device_onboarding/tests/mock/hp_comware/sync_devices/expected_result_1.json diff --git a/README.md b/README.md index 9c7f9d05..50fc3779 100644 --- a/README.md +++ b/README.md @@ -19,15 +19,15 @@ Regardless, the Onboarding App greatly simplifies the onboarding process by allo ### Support Matrix (Sync Devices From Network) -| Data Attribute | Cisco IOS | Cisco XE | Cisco NXOS | Cisco WLC | Juniper Junos | Arista EOS | F5 | -| ----------------------- | :----------------: | :--------------: | :--------------: | :--------------: | :--------------: | :--------------: | :-: | -| Hostname | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| Platform | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| Manufacturer | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| Serial Number | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| Device Type | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| Mgmt Interface | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | -| Mgmt IP Address | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | +| Data Attribute | Cisco IOS | Cisco XE | Cisco NXOS | Cisco WLC | Juniper Junos | Arista EOS | F5 | HP Comware | +| ----------------------- | :----------------: | :--------------: | :--------------: | :--------------: | :--------------: | :--------------: | :-: | :-: | +| Hostname | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | 🧪 | +| Platform | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | 🧪 | +| Manufacturer | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | 🧪 | +| Serial Number | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | 🧪 | +| Device Type | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | 🧪 | +| Mgmt Interface | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | 🧪 | +| Mgmt IP Address | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | 🧪 | ### Support Matrix (Sync Data From Network) diff --git a/changes/249.added b/changes/249.added new file mode 100755 index 00000000..1fa5c8cd --- /dev/null +++ b/changes/249.added @@ -0,0 +1,2 @@ +Added raw parser choice to skip jpath extraction. +Added initial hp_comware support for sync_devices job. \ No newline at end of file diff --git a/docs/user/app_yaml_overrides.md b/docs/user/app_yaml_overrides.md index 8a99cc49..3444c87e 100755 --- a/docs/user/app_yaml_overrides.md +++ b/docs/user/app_yaml_overrides.md @@ -9,8 +9,8 @@ There are only a few components to the file and they're described below: - `root key data name` - Is fully defined in the schema definition. - `commands` - List of commands to execute in order to get the required data. - `command` - Actual `show` command to execute. -- `parser` - Whether to use a parser (textfsm, pyats, ttp, etc) alternatively `none` can be used if the platform supports some other method to return structured data. E.g. (`| display json`) or an equivalent. -- `jpath` - The jmespath (specifically jdiffs implementation) to extract the data from the parsed json returned from parser. +- `parser` - Whether to use a parser (textfsm, pyats, ttp, etc) alternatives are `none` which can be used if the platform supports some other method to return structured data. E.g. (`| display json`) or an equivalent, or `raw` which allows a command to be run and **NO** jmespath extraction to take place, this is useful when simple text extractions via the `post_processor` are good enough. +- `jpath` - The jmespath (specifically jdiffs implementation) to extract the data from the parsed json returned from parser. If `raw` is used as the `parser` then `jpath` should also be set to `raw` which will be the dictionary key to extract the raw command data. - `post_processor` - Jinja2 capable code to further transform the returned data post jpath extraction. - `iterable_type` - A optional value to force a parsed result to a specific data type. diff --git a/nautobot_device_onboarding/command_mappers/hp_comware.yml b/nautobot_device_onboarding/command_mappers/hp_comware.yml new file mode 100755 index 00000000..6bf00091 --- /dev/null +++ b/nautobot_device_onboarding/command_mappers/hp_comware.yml @@ -0,0 +1,31 @@ +--- +sync_devices: + hostname: + commands: + - command: "display current | include sysname" + parser: "raw" + jpath: "raw" + post_processor: "{{ obj.lstrip().split(' ')[1] }}" + serial: + commands: + - command: "display device manuinfo" + parser: "textfsm" + jpath: "[?slot_type==`Slot`].device_serial_number" + device_type: + commands: + - command: "display device manuinfo" + parser: "textfsm" + jpath: "[?slot_type==`Slot`].device_name" + mgmt_interface: + commands: + - command: "display ip interface" + parser: "textfsm" + jpath: "[*].{interface: interface, ip_addr: ip_address[0]}" + post_processor: "{% for i in obj %}{% if i['ip_addr'] %}{% if original_host in i['ip_addr'] %}{{ i['interface'] }}{% endif %}{% endif %}{% endfor %}" + mask_length: + commands: + - command: "display ip interface" + parser: "textfsm" + jpath: "[*].ip_address[?contains(@, `{{ obj }}`)][]" + post_processor: "{{ obj[0].split('/')[1] }}" + iterable_type: "int" diff --git a/nautobot_device_onboarding/nornir_plays/command_getter.py b/nautobot_device_onboarding/nornir_plays/command_getter.py index 71cefca9..89f941eb 100755 --- a/nautobot_device_onboarding/nornir_plays/command_getter.py +++ b/nautobot_device_onboarding/nornir_plays/command_getter.py @@ -156,6 +156,10 @@ def netmiko_send_commands( task.results[result_idx].result = [] task.results[result_idx].failed = False else: + if command["parser"] == "raw": + raw = {"raw": current_result.result} + task.results[result_idx].result = json.loads(json.dumps(raw)) + task.results[result_idx].failed = False if command["parser"] == "none": try: jsonified = json.loads(current_result.result) diff --git a/nautobot_device_onboarding/tests/mock/cisco_wlc/sync_devices/expected_result_1.json b/nautobot_device_onboarding/tests/mock/cisco_wlc/sync_devices/expected_result_1.json index 7ea657e9..bc261398 100755 --- a/nautobot_device_onboarding/tests/mock/cisco_wlc/sync_devices/expected_result_1.json +++ b/nautobot_device_onboarding/tests/mock/cisco_wlc/sync_devices/expected_result_1.json @@ -1,5 +1,7 @@ -{"device_type": "AIR-CT5520-K9", - "hostname": "ABCWC-01", - "mask_length": 28, - "mgmt_interface": "management", - "serial": "FCH2145V28L"} \ No newline at end of file +{ + "device_type": "AIR-CT5520-K9", + "hostname": "ABCWC-01", + "mask_length": 28, + "mgmt_interface": "management", + "serial": "FCH2145V28L" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/hp_comware/command_getter_result_1.json b/nautobot_device_onboarding/tests/mock/hp_comware/command_getter_result_1.json new file mode 100755 index 00000000..5ae3f457 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/hp_comware/command_getter_result_1.json @@ -0,0 +1,147 @@ +{ + "display current | include sysname": { + "raw": " sysname 133-SW-Core" + }, + "display device manuinfo": [ + { + "chassis_id": "", + "slot_type": "Slot", + "slot_id": "1", + "device_name": "5510 24G 4SFP+ HI JH145A", + "device_serial_number": "CN73H0Y0H9", + "manufacturing_date": "2017-03-14", + "vendor_name": "HPE", + "mac_address": "40B9-3CA0-4B2D" + }, + { + "chassis_id": "", + "slot_type": "Subslot", + "slot_id": "1", + "device_name": "HP 5130/5510 10GbE SFP+ 2p Module JH157A", + "device_serial_number": "CN83H1B0DN", + "manufacturing_date": "2018-04-06", + "vendor_name": "HPE", + "mac_address": "" + }, + { + "chassis_id": "", + "slot_type": "Fan", + "slot_id": "1", + "device_name": "", + "device_serial_number": "", + "manufacturing_date": "", + "vendor_name": "", + "mac_address": "" + }, + { + "chassis_id": "", + "slot_type": "Fan", + "slot_id": "2", + "device_name": "", + "device_serial_number": "", + "manufacturing_date": "", + "vendor_name": "", + "mac_address": "" + }, + { + "chassis_id": "", + "slot_type": "Power", + "slot_id": "1", + "device_name": "HPE X361 150W AC Power Supply JD362B", + "device_serial_number": "CN70JW52NY", + "manufacturing_date": "2017-10-23", + "vendor_name": "HPE", + "mac_address": "" + } + ], + "display ip interface": [ + { + "interface": "GigabitEthernet1/0/4", + "line_status": "UP", + "protocol_status": "UP", + "route_map": "", + "ip_address": [ + "10.51.100.1/29" + ], + "mtu": "1500" + }, + { + "interface": "M-GigabitEthernet0/0/0", + "line_status": "DOWN", + "protocol_status": "DOWN", + "route_map": "", + "ip_address": [], + "mtu": "" + }, + { + "interface": "Vlan-interface16", + "line_status": "UP", + "protocol_status": "UP", + "route_map": "", + "ip_address": [ + "10.133.16.1/22" + ], + "mtu": "1500" + }, + { + "interface": "Vlan-interface20", + "line_status": "UP", + "protocol_status": "UP", + "route_map": "", + "ip_address": [ + "10.133.20.1/23" + ], + "mtu": "1500" + }, + { + "interface": "Vlan-interface32", + "line_status": "UP", + "protocol_status": "UP", + "route_map": "", + "ip_address": [ + "10.133.32.1/24" + ], + "mtu": "1500" + }, + { + "interface": "Vlan-interface64", + "line_status": "UP", + "protocol_status": "UP", + "route_map": "", + "ip_address": [ + "10.133.64.1/23" + ], + "mtu": "1500" + }, + { + "interface": "Vlan-interface68", + "line_status": "UP", + "protocol_status": "UP", + "route_map": "", + "ip_address": [ + "10.133.68.1/23" + ], + "mtu": "1500" + }, + { + "interface": "Vlan-interface100", + "line_status": "UP", + "protocol_status": "UP", + "route_map": "", + "ip_address": [ + "198.51.100.1/24" + ], + "mtu": "1500" + }, + { + "interface": "Vlan-interface102", + "line_status": "UP", + "protocol_status": "UP", + "route_map": "", + "ip_address": [ + "10.133.102.1/24" + ], + "mtu": "1500" + } + ] + } \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/mock/hp_comware/sync_devices/expected_result_1.json b/nautobot_device_onboarding/tests/mock/hp_comware/sync_devices/expected_result_1.json new file mode 100755 index 00000000..38848228 --- /dev/null +++ b/nautobot_device_onboarding/tests/mock/hp_comware/sync_devices/expected_result_1.json @@ -0,0 +1,7 @@ +{ + "device_type": "5510 24G 4SFP+ HI JH145A", + "hostname": "133-SW-Core", + "mask_length": 24, + "mgmt_interface": "Vlan-interface100", + "serial": "CN73H0Y0H9" +} \ No newline at end of file diff --git a/nautobot_device_onboarding/tests/test_formatter.py b/nautobot_device_onboarding/tests/test_formatter.py index abf85f1f..a4b41979 100755 --- a/nautobot_device_onboarding/tests/test_formatter.py +++ b/nautobot_device_onboarding/tests/test_formatter.py @@ -427,7 +427,15 @@ def setUp(self, mock_repo): def test_add_platform_parsing_info_sane_defaults(self): # Note: This is also officially tested in test_transform, but secondary check here as well. - default_mappers = ["cisco_ios", "arista_eos", "cisco_wlc", "cisco_xe", "juniper_junos", "cisco_nxos"] + default_mappers = [ + "cisco_ios", + "arista_eos", + "cisco_wlc", + "cisco_xe", + "juniper_junos", + "cisco_nxos", + "hp_comware", + ] self.assertEqual(sorted(default_mappers), list(sorted(self.platform_parsing_info.keys()))) def test_create_inventory_host_per_platform(self): @@ -510,6 +518,7 @@ def test_perform_data_extraction_simple_host_values(self): def test_perform_data_extraction_sync_network_data_no_options(self): supported_platforms = list(self.platform_parsing_info.keys()) supported_platforms.remove("cisco_wlc") + supported_platforms.remove("hp_comware") for platform in supported_platforms: self.host.platform = platform current_test_dir = f"{MOCK_DIR}/{platform}/" @@ -577,6 +586,7 @@ def test_perform_data_extraction_simple_host_values(self): def test_perform_data_extraction_sync_network_data_with_vrfs(self): supported_platforms = list(self.platform_parsing_info.keys()) supported_platforms.remove("cisco_wlc") + supported_platforms.remove("hp_comware") for platform in supported_platforms: self.host.platform = platform current_test_dir = f"{MOCK_DIR}/{platform}/" @@ -644,6 +654,7 @@ def test_perform_data_extraction_simple_host_values(self): def test_perform_data_extraction_sync_network_data_with_vlans(self): supported_platforms = list(self.platform_parsing_info.keys()) supported_platforms.remove("cisco_wlc") + supported_platforms.remove("hp_comware") for platform in supported_platforms: self.host.platform = platform current_test_dir = f"{MOCK_DIR}/{platform}/" @@ -712,6 +723,7 @@ def test_perform_data_extraction_simple_host_values(self): def test_perform_data_extraction_sync_network_data_all(self): supported_platforms = list(self.platform_parsing_info.keys()) supported_platforms.remove("cisco_wlc") + supported_platforms.remove("hp_comware") for platform in supported_platforms: self.host.platform = platform current_test_dir = f"{MOCK_DIR}/{platform}/" diff --git a/nautobot_device_onboarding/tests/test_transform.py b/nautobot_device_onboarding/tests/test_transform.py index efea3f5b..b8405404 100755 --- a/nautobot_device_onboarding/tests/test_transform.py +++ b/nautobot_device_onboarding/tests/test_transform.py @@ -24,7 +24,15 @@ def setUp(self): def test_add_platform_parsing_info_sane_defaults(self): command_mappers = add_platform_parsing_info() - default_mappers = ["cisco_ios", "arista_eos", "cisco_wlc", "cisco_xe", "juniper_junos", "cisco_nxos"] + default_mappers = [ + "cisco_ios", + "arista_eos", + "cisco_wlc", + "cisco_xe", + "juniper_junos", + "cisco_nxos", + "hp_comware", + ] self.assertEqual(sorted(default_mappers), list(sorted(command_mappers.keys()))) def test_load_command_mappers_from_dir(self): From e7af24710a950b4171e24021c842262fc5578e38 Mon Sep 17 00:00:00 2001 From: Susan Hooks <51679702+susanhooks@users.noreply.github.com> Date: Fri, 11 Oct 2024 10:57:59 -0600 Subject: [PATCH 5/9] update to fix mtu int error (#247) --- changes/238.fixed | 1 + .../adapters/sync_network_data_adapters.py | 95 +++++++++++++++---- 2 files changed, 76 insertions(+), 20 deletions(-) create mode 100644 changes/238.fixed diff --git a/changes/238.fixed b/changes/238.fixed new file mode 100644 index 00000000..0666a4d9 --- /dev/null +++ b/changes/238.fixed @@ -0,0 +1 @@ +Added a fix for mtu as an integer rather than a string. \ No newline at end of file diff --git a/nautobot_device_onboarding/diffsync/adapters/sync_network_data_adapters.py b/nautobot_device_onboarding/diffsync/adapters/sync_network_data_adapters.py index 04511c27..914afdf1 100644 --- a/nautobot_device_onboarding/diffsync/adapters/sync_network_data_adapters.py +++ b/nautobot_device_onboarding/diffsync/adapters/sync_network_data_adapters.py @@ -13,7 +13,9 @@ from netutils.interface import canonical_interface_name from nautobot_device_onboarding.diffsync.models import sync_network_data_models -from nautobot_device_onboarding.nornir_plays.command_getter import sync_network_data_command_getter +from nautobot_device_onboarding.nornir_plays.command_getter import ( + sync_network_data_command_getter, +) from nautobot_device_onboarding.utils import diffsync_utils app_settings = settings.PLUGINS_CONFIG["nautobot_device_onboarding"] @@ -29,7 +31,9 @@ class FilteredNautobotAdapter(NautobotAdapter): def _load_objects(self, diffsync_model): # pylint: disable=protected-access """Given a diffsync model class, load a list of models from the database and return them.""" parameter_names = self._get_parameter_names(diffsync_model) - for database_object in diffsync_model._get_queryset(adapter=self): # pylint: disable=protected-access + for database_object in diffsync_model._get_queryset( # pylint: disable=protected-access + adapter=self + ): self._load_single_object(database_object, diffsync_model, parameter_names) @@ -80,6 +84,12 @@ def load_param_mac_address(self, parameter_name, database_object): return str(database_object.mac_address) return "" + def load_param_mtu(self, parameter_name, database_object): + """Convert interface mtu to string.""" + if database_object.mtu: + return str(database_object.mtu) + return "" + def load_ip_addresses(self): """Load IP addresses into the DiffSync store. @@ -440,7 +450,9 @@ def _handle_general_load_exception(self, error, hostname, data, model_type): def execute_command_getter(self): """Query devices for data.""" result = sync_network_data_command_getter( - self.job.job_result, self.job.logger.getEffectiveLevel(), self.job.job_result.task_kwargs + self.job.job_result, + self.job.logger.getEffectiveLevel(), + self.job.job_result.task_kwargs, ) # verify data returned is a dict data_type_check = diffsync_utils.check_data_type(result) @@ -495,7 +507,7 @@ def load_interface(self, hostname, interface_name, interface_data): status__name=self.job.interface_status.name, type=interface_data["type"], mac_address=self._process_mac_address(mac_address=interface_data["mac_address"]), - mtu=interface_data["mtu"] if interface_data["mtu"] else 1500, + mtu=interface_data["mtu"] if interface_data["mtu"] else "1500", description=interface_data["description"], enabled=interface_data["link_status"], mode=interface_data["802.1Q_mode"], @@ -508,7 +520,10 @@ def load_interface(self, hostname, interface_name, interface_data): def load_ip_addresses(self): """Load IP addresses into the DiffSync store.""" - for hostname, device_data in self.job.command_getter_result.items(): # pylint: disable=too-many-nested-blocks + for ( # pylint: disable=too-many-nested-blocks + hostname, + device_data, + ) in self.job.command_getter_result.items(): if self.job.debug: self.job.logger.debug(f"Loading IP Addresses from {hostname}") # for interface in device_data["interfaces"]: @@ -534,9 +549,14 @@ def load_ip_addresses(self): "DiffSync store. This is a duplicate IP Address." ) continue - except Exception as err: # pylint: disable=broad-exception-caught + except ( + Exception # pylint: disable=broad-exception-caught + ) as err: self._handle_general_load_exception( - error=err, hostname=hostname, data=device_data, model_type="ip_address" + error=err, + hostname=hostname, + data=device_data, + model_type="ip_address", ) continue @@ -546,7 +566,10 @@ def load_vlans(self): for device in self.job.devices_to_load: location_names[device.name] = device.location.name - for hostname, device_data in self.job.command_getter_result.items(): # pylint: disable=too-many-nested-blocks + for ( + hostname, + device_data, + ) in self.job.command_getter_result.items(): # pylint: disable=too-many-nested-blocks if self.job.debug: self.job.logger.debug(f"Loading Vlans from {hostname}") # for interface in device_data["interfaces"]: @@ -565,7 +588,10 @@ def load_vlans(self): continue except Exception as err: # pylint: disable=broad-exception-caught self._handle_general_load_exception( - error=err, hostname=hostname, data=device_data, model_type="vlan" + error=err, + hostname=hostname, + data=device_data, + model_type="vlan", ) continue # check for untagged vlan and add if necessary @@ -582,13 +608,19 @@ def load_vlans(self): continue except Exception as err: # pylint: disable=broad-exception-caught self._handle_general_load_exception( - error=err, hostname=hostname, data=device_data, model_type="vlan" + error=err, + hostname=hostname, + data=device_data, + model_type="vlan", ) continue def load_vrfs(self): """Load vrfs into the Diffsync store.""" - for hostname, device_data in self.job.command_getter_result.items(): # pylint: disable=too-many-nested-blocks + for ( + hostname, + device_data, + ) in self.job.command_getter_result.items(): # pylint: disable=too-many-nested-blocks if self.job.debug: self.job.logger.debug(f"Loading Vrfs from {hostname}") # for interface in device_data["interfaces"]: @@ -605,13 +637,19 @@ def load_vrfs(self): continue except Exception as err: # pylint: disable=broad-exception-caught self._handle_general_load_exception( - error=err, hostname=hostname, data=device_data, model_type="vrf" + error=err, + hostname=hostname, + data=device_data, + model_type="vrf", ) continue def load_ip_address_to_interfaces(self): """Load ip address interface assignments into the Diffsync store.""" - for hostname, device_data in self.job.command_getter_result.items(): # pylint: disable=too-many-nested-blocks + for ( + hostname, + device_data, + ) in self.job.command_getter_result.items(): # pylint: disable=too-many-nested-blocks for interface_name, interface_data in device_data["interfaces"].items(): for ip_address in interface_data["ip_addresses"]: if ip_address["ip_address"]: # the ip_address and mask_length may be empty, skip these @@ -626,9 +664,14 @@ def load_ip_address_to_interfaces(self): ), ) self.add(network_ip_address_to_interface) - except Exception as err: # pylint: disable=broad-exception-caught + except ( + Exception # pylint: disable=broad-exception-caught + ) as err: self._handle_general_load_exception( - error=err, hostname=hostname, data=device_data, model_type="ip_address to interface" + error=err, + hostname=hostname, + data=device_data, + model_type="ip_address to interface", ) continue @@ -647,7 +690,10 @@ def load_tagged_vlans_to_interface(self): self.add(network_tagged_vlans_to_interface) except Exception as err: # pylint: disable=broad-exception-caught self._handle_general_load_exception( - error=err, hostname=hostname, data=device_data, model_type="tagged vlan to interface" + error=err, + hostname=hostname, + data=device_data, + model_type="tagged vlan to interface", ) continue @@ -666,7 +712,10 @@ def load_untagged_vlan_to_interface(self): self.add(network_untagged_vlan_to_interface) except Exception as err: # pylint: disable=broad-exception-caught self._handle_general_load_exception( - error=err, hostname=hostname, data=device_data, model_type="untagged vlan to interface" + error=err, + hostname=hostname, + data=device_data, + model_type="untagged vlan to interface", ) continue @@ -680,12 +729,15 @@ def load_lag_to_interface(self): adapter=self, device__name=hostname, name=interface_name, - lag__interface__name=interface_data["lag"] if interface_data["lag"] else "", + lag__interface__name=(interface_data["lag"] if interface_data["lag"] else ""), ) self.add(network_lag_to_interface) except Exception as err: # pylint: disable=broad-exception-caught self._handle_general_load_exception( - error=err, hostname=hostname, data=device_data, model_type="lag to interface" + error=err, + hostname=hostname, + data=device_data, + model_type="lag to interface", ) continue @@ -704,7 +756,10 @@ def load_vrf_to_interface(self): self.add(network_vrf_to_interface) except Exception as err: # pylint: disable=broad-exception-caught self._handle_general_load_exception( - error=err, hostname=hostname, data=device_data, model_type="vrf to interface" + error=err, + hostname=hostname, + data=device_data, + model_type="vrf to interface", ) continue From eadf415f69e40e3e4c68d998f7ffa371b8f43b2a Mon Sep 17 00:00:00 2001 From: Jeff Kala <48843785+jeffkala@users.noreply.github.com> Date: Wed, 16 Oct 2024 06:17:05 -0600 Subject: [PATCH 6/9] Add terminal errors in subtask logging (#256) * fix connection and timeout failures not showing in job results * fix logging --- changes/192.fixed | 1 + nautobot_device_onboarding/jinja_filters.py | 6 +++--- nautobot_device_onboarding/nornir_plays/processor.py | 12 +++++++++++- 3 files changed, 15 insertions(+), 4 deletions(-) create mode 100755 changes/192.fixed diff --git a/changes/192.fixed b/changes/192.fixed new file mode 100755 index 00000000..71cd741b --- /dev/null +++ b/changes/192.fixed @@ -0,0 +1 @@ +Fixes lack of logging of certain termination based failures. diff --git a/nautobot_device_onboarding/jinja_filters.py b/nautobot_device_onboarding/jinja_filters.py index 17792c8e..aadd8129 100755 --- a/nautobot_device_onboarding/jinja_filters.py +++ b/nautobot_device_onboarding/jinja_filters.py @@ -193,8 +193,8 @@ def junos_get_valid_interfaces(interfaces): """Get valid interfaces from Junos.""" result = {} for interface in interfaces: - result[interface['name']] = {} - if interface['units']: - for unit in interface['units']: + result[interface["name"]] = {} + if interface["units"]: + for unit in interface["units"]: result[f"{interface['name']}.{unit}"] = {} return result diff --git a/nautobot_device_onboarding/nornir_plays/processor.py b/nautobot_device_onboarding/nornir_plays/processor.py index 0c3bb34b..dc36b3ac 100755 --- a/nautobot_device_onboarding/nornir_plays/processor.py +++ b/nautobot_device_onboarding/nornir_plays/processor.py @@ -87,7 +87,17 @@ def task_instance_completed(self, task: Task, host: Host, result: MultiResult) - def subtask_instance_completed(self, task: Task, host: Host, result: MultiResult) -> None: """Processor for logging and data processing on subtask completed.""" - self.logger.info(f"Subtask completed: {task.name}, {task.host}.", extra={"object": task.host}) + self.logger.info( + f"Subtask {'failed' if result.failed else 'succeeded'}: {task.name}, {task.host}.", + extra={"object": task.host}, + ) + if result.failed: + for res in result: + if res.exception: + self.logger.info( + f"{host.name} an exception occured: {res.exception}.", + extra={"object": host.name}, + ) def subtask_instance_started(self, task: Task, host: Host) -> None: # show command start """Processor for logging and data processing on subtask start.""" From 233315353cf19013f71e61da75a5214d07574757 Mon Sep 17 00:00:00 2001 From: Nautobot-Bot <79372327+nautobot-bot@users.noreply.github.com> Date: Fri, 18 Oct 2024 11:24:33 -0400 Subject: [PATCH 7/9] Cookie updated by NetworkToCode Cookie Drift Manager Tool (#253) * Cookie updated by NetworkToCode Cookie Drift Manager Tool * fix lockfile * fix badge url * add docs url --------- Co-authored-by: bakebot Co-authored-by: Gary Snider <75227981+gsnider2195@users.noreply.github.com> --- .bandit.yml | 6 - .cookiecutter.json | 9 +- .github/workflows/ci.yml | 6 +- .github/workflows/upstream_testing.yml | 3 +- README.md | 2 +- changes/+nautobot-app-v2.4.0.housekeeping | 1 + development/Dockerfile | 6 +- development/development.env | 1 + development/towncrier_template.j2 | 15 + docs/dev/contributing.md | 24 +- docs/dev/release_checklist.md | 214 +++ nautobot_device_onboarding/__init__.py | 1 + nautobot_device_onboarding/urls.py | 9 + poetry.lock | 1617 +++++++++++---------- tasks.py | 61 +- 15 files changed, 1158 insertions(+), 817 deletions(-) delete mode 100644 .bandit.yml create mode 100644 changes/+nautobot-app-v2.4.0.housekeeping create mode 100644 docs/dev/release_checklist.md create mode 100644 nautobot_device_onboarding/urls.py diff --git a/.bandit.yml b/.bandit.yml deleted file mode 100644 index 56f7a83b..00000000 --- a/.bandit.yml +++ /dev/null @@ -1,6 +0,0 @@ ---- -skips: [] -# No need to check for security issues in the test scripts! -exclude_dirs: - - "./tests/" - - "./.venv/" diff --git a/.cookiecutter.json b/.cookiecutter.json index 6311567c..68253f94 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -21,15 +21,16 @@ "_drift_manager": { "template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", "template_dir": "nautobot-app", - "template_ref": "refs/tags/nautobot-app-v2.3.2", + "template_ref": "refs/tags/nautobot-app-v2.4.0", "cookie_dir": "", "branch_prefix": "drift-manager", "pull_request_strategy": "create", "post_actions": [ - "black" + "ruff", + "poetry" ], - "draft": true, - "baked_commit_ref": "56195cad1cb296db964271e2ee9bf643e3d4404b" + "draft": false, + "baked_commit_ref": "0c65eb129a4fdeeeee9cd46c022c2e8247377320" } } } \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c412425f..910b196a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - name: "Setup environment" uses: "networktocode/gh-action-setup-poetry-environment@v6" - name: "Linting: ruff" - run: "poetry run invoke ruff" + run: "poetry run invoke ruff --action lint" check-docs-build: runs-on: "ubuntu-22.04" env: @@ -176,9 +176,9 @@ jobs: - name: "Run Tests" run: "poetry run invoke unittest" changelog: - if: | + if: > contains(fromJson('["develop","ltm-1.6"]'), github.base_ref) && - (github.head_ref != 'main') + (github.head_ref != 'main') && (!startsWith(github.head_ref, 'release')) runs-on: "ubuntu-22.04" steps: - name: "Check out repository code" diff --git a/.github/workflows/upstream_testing.yml b/.github/workflows/upstream_testing.yml index 6704f680..53bb21c0 100644 --- a/.github/workflows/upstream_testing.yml +++ b/.github/workflows/upstream_testing.yml @@ -4,10 +4,11 @@ name: "Nautobot Upstream Monitor" on: # yamllint disable-line rule:truthy rule:comments schedule: - cron: "0 4 */2 * *" # every other day at midnight + workflow_dispatch: jobs: upstream-test: uses: "nautobot/nautobot/.github/workflows/plugin_upstream_testing_base.yml@develop" with: # Below could potentially be collapsed into a single argument if a concrete relationship between both is enforced invoke_context_name: "NAUTOBOT_DEVICE_ONBOARDING" - plugin_name: "nautobot-app-device-onboarding" + plugin_name: "nautobot-device-onboarding" diff --git a/README.md b/README.md index 50fc3779..f06dbcc5 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@


- + diff --git a/changes/+nautobot-app-v2.4.0.housekeeping b/changes/+nautobot-app-v2.4.0.housekeeping new file mode 100644 index 00000000..9b23ffe3 --- /dev/null +++ b/changes/+nautobot-app-v2.4.0.housekeeping @@ -0,0 +1 @@ +Rebaked from the cookie `nautobot-app-v2.4.0`. diff --git a/development/Dockerfile b/development/Dockerfile index 157b88f0..222d115d 100644 --- a/development/Dockerfile +++ b/development/Dockerfile @@ -54,14 +54,16 @@ WORKDIR /source COPY . /source # Build args must be declared in each stage +ARG NAUTOBOT_VER ARG PYTHON_VER -# Constrain the Nautobot version to NAUTOBOT_VER +# Constrain the Nautobot version to NAUTOBOT_VER, fall back to installing from git branch if not available on PyPi # In CI, this should be done outside of the Dockerfile to prevent cross-compile build failures ARG CI RUN if [ -z "${CI+x}" ]; then \ INSTALLED_NAUTOBOT_VER=$(pip show nautobot | grep "^Version" | sed "s/Version: //"); \ - poetry add --lock nautobot@${INSTALLED_NAUTOBOT_VER} --python ${PYTHON_VER}; fi + poetry add --lock nautobot@${INSTALLED_NAUTOBOT_VER} --python ${PYTHON_VER} || \ + poetry add --lock git+https://github.com/nautobot/nautobot.git#${NAUTOBOT_VER} --python ${PYTHON_VER}; fi # Install the app RUN poetry install --extras all --with dev diff --git a/development/development.env b/development/development.env index 11d1edcc..d553437d 100644 --- a/development/development.env +++ b/development/development.env @@ -7,6 +7,7 @@ NAUTOBOT_BANNER_TOP="Local" NAUTOBOT_CHANGELOG_RETENTION=0 NAUTOBOT_DEBUG=True +NAUTOBOT_LOG_DEPRECATION_WARNINGS=True NAUTOBOT_LOG_LEVEL=DEBUG NAUTOBOT_METRICS_ENABLED=True NAUTOBOT_NAPALM_TIMEOUT=5 diff --git a/development/towncrier_template.j2 b/development/towncrier_template.j2 index 76ea3af7..bf14440c 100644 --- a/development/towncrier_template.j2 +++ b/development/towncrier_template.j2 @@ -1,4 +1,15 @@ +# v{{ versiondata.version.split(".")[:2] | join(".") }} Release Notes + +This document describes all new features and changes in the release. The format is based on [Keep a +Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic +Versioning](https://semver.org/spec/v2.0.0.html). + +## Release Overview + +- Major features or milestones +- Changes to compatibility with Nautobot and/or other apps, libraries etc. + {% if render_title %} ## [v{{ versiondata.version }} ({{ versiondata.date }})](https://github.com/nautobot/nautobot-app-device-onboarding/releases/tag/v{{ versiondata.version}}) @@ -12,7 +23,11 @@ {% if definitions[category]['showcontent'] %} {% for text, values in sections[section][category].items() %} {% for item in text.split('\n') %} +{% if values %} - {{ values|join(', ') }} - {{ item.strip() }} +{% else %} +- {{ item.strip() }} +{% endif %} {% endfor %} {% endfor %} diff --git a/docs/dev/contributing.md b/docs/dev/contributing.md index b26279a7..ed773012 100644 --- a/docs/dev/contributing.md +++ b/docs/dev/contributing.md @@ -51,24 +51,14 @@ The branching policy includes the following tenets: Device Onboarding will observe semantic versioning, as of 1.0. This may result in a quick turnaround in minor versions to keep pace with an ever-growing feature set. +### Backporting to Older Releases + +If you are backporting any fixes to a prior major or minor version of this app, please open an issue, comment on an existing issue, or post in the [Network to Code Slack](https://networktocode.slack.com/) (channel `#nautobot`). + +We will create a `release-X.Y` branch for you to open your PR against and cut a new release once the PR is successfully merged. + ## Release Policy Device Onboarding has currently no intended scheduled release schedule, and will release new features in minor versions. -When a new release, from `develop` to `main`, is created the following should happen. - -- A release PR is created from `develop` with: - - Update the release notes in `docs/admin/release_notes/version_..md` file to reflect the changes. - - Change the version from `..-beta` to `..` in `pyproject.toml`. - - Set the PR to the `main` branch. -- Ensure the tests for the PR pass. -- Merge the PR. -- Create a new tag: - - The tag should be in the form of `v..`. - - The title should be in the form of `v..`. - - The description should be the changes that were added to the `version_..md` document. -- If merged into `main`, then push from `main` to `develop`, in order to retain the merge commit created when the PR was merged -- A post release PR is created with: - - Change the version from `..` to `..-beta` in both `pyproject.toml` and `nautobot.__init__.__version__`. - - Set the PR to the proper branch, `develop`. - - Once tests pass, merge. +The steps taken by maintainers when creating a new release are documented in the [release checklist](./release_checklist.md). diff --git a/docs/dev/release_checklist.md b/docs/dev/release_checklist.md new file mode 100644 index 00000000..403fe13a --- /dev/null +++ b/docs/dev/release_checklist.md @@ -0,0 +1,214 @@ +# Release Checklist + +This document is intended for app maintainers and outlines the steps to perform when releasing a new version of the app. + +!!! important + Before starting, make sure your **local** `develop`, `main`, and (if applicable) the current LTM branch are all up to date with upstream! + + ``` + git fetch + git switch develop && git pull # and repeat for main/ltm + ``` + +Choose your own adventure: + +- LTM release? Jump [here](#ltm-releases). +- Patch release from `develop`? Jump [here](#all-releases-from-develop). +- Minor release? Continue with [Minor Version Bumps](#minor-version-bumps) and then [All Releases from `develop`](#all-releases-from-develop). + +## Minor Version Bumps + +### Update Requirements + +Every minor version release should refresh `poetry.lock`, so that it lists the most recent stable release of each package. To do this: + +0. Run `poetry update --dry-run` to have Poetry automatically tell you what package updates are available and the versions it would upgrade to. This requires an existing environment created from the lock file (i.e. via `poetry install`). +1. Review each requirement's release notes for any breaking or otherwise noteworthy changes. +2. Run `poetry update ` to update the package versions in `poetry.lock` as appropriate. +3. If a required package requires updating to a new release not covered in the version constraints for a package as defined in `pyproject.toml`, (e.g. `Django ~3.1.7` would never install `Django >=4.0.0`), update it manually in `pyproject.toml`. +4. Run `poetry install` to install the refreshed versions of all required packages. +5. Run all tests (`poetry run invoke tests`) and check that the UI and API function as expected. + +### Update Documentation + +If there are any changes to the compatibility matrix (such as a bump in the minimum supported Nautobot version), update it accordingly. + +Commit any resulting changes from the following sections to the documentation before proceeding with the release. + +!!! tip + Fire up the documentation server in your development environment with `poetry run mkdocs serve`! This allows you to view the documentation site locally (the link is in the output of the command) and automatically rebuilds it as you make changes. + +### Verify the Installation and Upgrade Steps + +Follow the [installation instructions](../admin/install.md) to perform a new production installation of the app. If possible, also test the [upgrade process](../admin/upgrade.md) from the previous released version. + +The goal of this step is to walk through the entire install process *as documented* to make sure nothing there needs to be changed or updated, to catch any errors or omissions in the documentation, and to ensure that it is current with each release. + +--- + +## All Releases from `develop` + +### Verify CI Build Status + +Ensure that continuous integration testing on the `develop` branch is completing successfully. + +### Bump the Version + +Update the package version using `poetry version` if necessary. This command shows the current version of the project or bumps the version of the project and writes the new version back to `pyproject.toml` if a valid bump rule is provided. + +The new version must be a valid semver string or a valid bump rule: `patch`, `minor`, `major`, `prepatch`, `preminor`, `premajor`, `prerelease`. Always try to use a bump rule when you can. + +Display the current version with no arguments: + +```no-highlight +> poetry version +nautobot-device-onboarding 1.0.0-beta.2 +``` + +Bump pre-release versions using `prerelease`: + +```no-highlight +> poetry version prerelease +Bumping version from 1.0.0-beta.2 to 1.0.0-beta.3 +``` + +For major versions, use `major`: + +```no-highlight +> poetry version major +Bumping version from 1.0.0-beta.2 to 1.0.0 +``` + +For patch versions, use `minor`: + +```no-highlight +> poetry version minor +Bumping version from 1.0.0 to 1.1.0 +``` + +And lastly, for patch versions, you guessed it, use `patch`: + +```no-highlight +> poetry version patch +Bumping version from 1.1.0 to 1.1.1 +``` + +Please see the [official Poetry documentation on `version`](https://python-poetry.org/docs/cli/#version) for more information. + +### Update the Changelog + +!!! important + The changelog must adhere to the [Keep a Changelog](https://keepachangelog.com/) style guide. + +This guide uses `1.4.2` as the new version in its examples, so change it to match the version you bumped to in the previous step! Every. single. time. you. copy/paste commands :) + +First, create a release branch off of `develop` (`git switch -c release-1.4.2 develop`). + +> You will need to have the project's poetry environment built at this stage, as the towncrier command runs **locally only**. If you don't have it, run `poetry install` first. + +Generate release notes with `invoke generate-release-notes --version 1.4.2` and answer `yes` to the prompt `Is it okay if I remove those files? [Y/n]:`. This will update the release notes in `docs/admin/release_notes/version_X.Y.md`, stage that file in git, and `git rm` all the fragments that have now been incorporated into the release notes. + +There are two possibilities: + +1. If you're releasing a new major or minor version, rename the `version_X.Y.md` file accordingly (e.g. rename to `docs/admin/release_notes/version_1.4.md`). Update the `Release Overview` and add this new page to the table of contents within `mkdocs.yml`. +2. If you're releasing a patch version, copy your version's section from the `version_X.Y.md` file into the already existing `docs/admin/release_notes/version_1.4.md` file. Delete the `version_X.Y.md` file. + +Stage all the changes (`git add`) and check the diffs to verify all of the changes are correct (`git diff --cached`). + +Commit `git commit -m "Release v1.4.2"` and `git push` the staged changes. + +### Submit Release Pull Request + +Submit a pull request titled `Release v1.4.2` to merge your release branch into `main`. Copy the documented release notes into the pull request's body. + +!!! important + Do not squash merge this branch into `main`. Make sure to select `Create a merge commit` when merging in GitHub. + +Once CI has completed on the PR, merge it. + +### Create a New Release in GitHub + +Draft a [new release](https://github.com/nautobot/nautobot-app-device-onboarding/releases/new) with the following parameters. + +* **Tag:** Input current version (e.g. `v1.4.2`) and select `Create new tag: v1.4.2 on publish` +* **Target:** `main` +* **Title:** Version and date (e.g. `v1.4.2 - 2024-04-02`) + +Click "Generate Release Notes" and edit the auto-generated content as follows: + +- Change the entries generated by GitHub to only the usernames of the contributors. e.g. `* Updated dockerfile by @nautobot_user in https://github.com/nautobot/nautobot-app-device-onboarding/pull/123` -> `* @nautobot_user`. + - This should give you the list for the new `Contributors` section. + - Make sure there are no duplicated entries. +- Replace the content of the `What's Changed` section with the description of changes from the release PR (what towncrier generated). +- If it exists, leave the `New Contributors` list as it is. + +The release notes should look as follows: + +```markdown +## What's Changed + +**Towncrier generated Changed/Fixed/Housekeeping etc. sections here** + +## Contributors + +* @alice +* @bob + +## New Contributors + +* @bob + +**Full Changelog**: https://github.com/nautobot/nautobot-app-device-onboarding/compare/v1.4.1...v1.4.2 +``` + +Publish the release! + +### Create a PR from `main` back to `develop` + +First, sync your `main` branch with upstream changes: `git switch main && git pull`. + +Create a new branch from `main` called `release-1.4.2-to-develop` and use `poetry version prepatch` to bump the development version to the next release. + +For example, if you just released `v1.4.2`: + +```no-highlight +> git switch -c release-1.4.2-to-develop main +Switched to a new branch 'release-1.4.2-to-develop' + +> poetry version prepatch +Bumping version from 1.4.2 to 1.4.3a1 + +> git add pyproject.toml && git commit -m "Bump version" + +> git push +``` + +!!! important + Do not squash merge this branch into `develop`. Make sure to select `Create a merge commit` when merging in GitHub. + +Open a new PR from `release-1.4.2-to-develop` against `develop`, wait for CI to pass, and merge it. + +### Final checks + +At this stage, the CI should be running or finished for the `v1.4.2` tag and a package successfully published to PyPI and added into the GitHub Release. Double check that's the case. + +Documentation should also have been built for the tag on ReadTheDocs and if you're reading this page online, refresh it and look for the new version in the little version fly-out menu down at the bottom right of the page. + +All done! + + +## LTM Releases + +For projects maintaining a Nautobot LTM compatible release, all development and release management is done through the `ltm-x.y` branch. The `x.y` relates to the LTM version of Nautobot it's compatible with, for example `1.6`. + +The process is similar to releasing from `develop`, but there is no need for post-release branch syncing because you'll release directly from the LTM branch: + +1. Make sure your `ltm-1.6` branch is passing CI. +2. Create a release branch from the `ltm-1.6` branch: `git switch -c release-1.2.3 ltm-1.6`. +3. Bump up the patch version `poetry version patch`. If you're backporting a feature instead of bugfixes, bump the minor version instead with `poetry version minor`. +4. Generate the release notes: `invoke generate-release-notes --version 1.2.3`. +5. Move the release notes from the generated `docs/admin/release_notes/version_X.Y.md` to `docs/admin/release_notes/version_1.2.md`. +6. Add all the changes and `git commit -m "Release v1.2.3"`, then `git push`. +7. Open a new PR against `ltm-1.6`. Once CI is passing in the PR, `Create a merge commit` (don't squash!). +8. Create a New Release in GitHub - use the same steps documented [here](#create-a-new-release-in-github). +9. Open a separate PR against `develop` to synchronize all LTM release changelogs into the latest version of the docs for visibility. diff --git a/nautobot_device_onboarding/__init__.py b/nautobot_device_onboarding/__init__.py index 3d4a53d1..5f41cdc9 100644 --- a/nautobot_device_onboarding/__init__.py +++ b/nautobot_device_onboarding/__init__.py @@ -44,6 +44,7 @@ class NautobotDeviceOnboardingConfig(NautobotAppConfig): "object_match_strategy": "loose", } caching_config = {} + docs_view_name = "plugins:nautobot_device_onboarding:docs" config = NautobotDeviceOnboardingConfig # pylint:disable=invalid-name diff --git a/nautobot_device_onboarding/urls.py b/nautobot_device_onboarding/urls.py new file mode 100644 index 00000000..01859248 --- /dev/null +++ b/nautobot_device_onboarding/urls.py @@ -0,0 +1,9 @@ +"""Django urlpatterns declaration for nautobot_device_onboarding app.""" + +from django.templatetags.static import static +from django.urls import path +from django.views.generic import RedirectView + +urlpatterns = [ + path("docs/", RedirectView.as_view(url=static("nautobot_device_onboarding/docs/index.html")), name="docs"), +] diff --git a/poetry.lock b/poetry.lock index 7b35fe71..f2cae2c5 100755 --- a/poetry.lock +++ b/poetry.lock @@ -41,13 +41,13 @@ typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.9\""} [[package]] name = "anyio" -version = "4.4.0" +version = "4.5.0" description = "High level compatibility layer for multiple asynchronous event loop implementations" optional = false python-versions = ">=3.8" files = [ - {file = "anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7"}, - {file = "anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94"}, + {file = "anyio-4.5.0-py3-none-any.whl", hash = "sha256:fdeb095b7cc5a5563175eedd926ec4ae55413bb4be5770c424af0ba46ccb4a78"}, + {file = "anyio-4.5.0.tar.gz", hash = "sha256:c5a275fe5ca0afd788001f58fca1e69e29ce706d746e317d660e21f70c530ef9"}, ] [package.dependencies] @@ -57,9 +57,9 @@ sniffio = ">=1.1" typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} [package.extras] -doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] -trio = ["trio (>=0.23)"] +doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.21.0b1)"] +trio = ["trio (>=0.26.1)"] [[package]] name = "appnope" @@ -154,37 +154,37 @@ files = [ [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "autopep8" -version = "2.0.0" +version = "2.3.1" description = "A tool that automatically formats Python code to conform to the PEP 8 style guide" optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "autopep8-2.0.0-py2.py3-none-any.whl", hash = "sha256:ad924b42c2e27a1ac58e432166cc4588f5b80747de02d0d35b1ecbd3e7d57207"}, - {file = "autopep8-2.0.0.tar.gz", hash = "sha256:8b1659c7f003e693199f52caffdc06585bb0716900bbc6a7442fd931d658c077"}, + {file = "autopep8-2.3.1-py2.py3-none-any.whl", hash = "sha256:a203fe0fcad7939987422140ab17a930f684763bf7335bdb6709991dd7ef6c2d"}, + {file = "autopep8-2.3.1.tar.gz", hash = "sha256:8d6c87eba648fdcfc83e29b788910b8643171c395d9c4bcf115ece035b9c9dda"}, ] [package.dependencies] -pycodestyle = ">=2.9.1" -tomli = "*" +pycodestyle = ">=2.12.0" +tomli = {version = "*", markers = "python_version < \"3.11\""} [[package]] name = "babel" @@ -287,13 +287,13 @@ typecheck = ["mypy"] [[package]] name = "billiard" -version = "4.2.0" +version = "4.2.1" description = "Python multiprocessing fork with improvements and bugfixes" optional = false python-versions = ">=3.7" files = [ - {file = "billiard-4.2.0-py3-none-any.whl", hash = "sha256:07aa978b308f334ff8282bd4a746e681b3513db5c9a514cbdd810cbbdc19714d"}, - {file = "billiard-4.2.0.tar.gz", hash = "sha256:9a3c3184cb275aa17a732f93f65b20c525d3d9f253722d26a82194803ade5a2c"}, + {file = "billiard-4.2.1-py3-none-any.whl", hash = "sha256:40b59a4ac8806ba2c2369ea98d876bc6108b051c227baffd928c644d15d8f3cb"}, + {file = "billiard-4.2.1.tar.gz", hash = "sha256:12b641b0c539073fc8d3f5b8b7be998956665c4233c7c1fcd66a7e677c4fb36f"}, ] [[package]] @@ -354,13 +354,13 @@ zstd = ["zstandard (==0.22.0)"] [[package]] name = "certifi" -version = "2024.2.2" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, - {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] @@ -444,101 +444,116 @@ pycparser = "*" [[package]] name = "charset-normalizer" -version = "3.3.2" +version = "3.4.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7.0" files = [ - {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, - {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, - {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, - {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, - {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, - {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, - {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, - {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc"}, + {file = "charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99"}, + {file = "charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7"}, + {file = "charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67"}, + {file = "charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win32.whl", hash = "sha256:9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149"}, + {file = "charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win32.whl", hash = "sha256:7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613"}, + {file = "charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win32.whl", hash = "sha256:2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2"}, + {file = "charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca"}, + {file = "charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079"}, + {file = "charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e"}, ] [[package]] @@ -634,63 +649,83 @@ files = [ [[package]] name = "coverage" -version = "7.5.3" +version = "7.6.1" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.8" files = [ - {file = "coverage-7.5.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a6519d917abb15e12380406d721e37613e2a67d166f9fb7e5a8ce0375744cd45"}, - {file = "coverage-7.5.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aea7da970f1feccf48be7335f8b2ca64baf9b589d79e05b9397a06696ce1a1ec"}, - {file = "coverage-7.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:923b7b1c717bd0f0f92d862d1ff51d9b2b55dbbd133e05680204465f454bb286"}, - {file = "coverage-7.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62bda40da1e68898186f274f832ef3e759ce929da9a9fd9fcf265956de269dbc"}, - {file = "coverage-7.5.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8b7339180d00de83e930358223c617cc343dd08e1aa5ec7b06c3a121aec4e1d"}, - {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:25a5caf742c6195e08002d3b6c2dd6947e50efc5fc2c2205f61ecb47592d2d83"}, - {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:05ac5f60faa0c704c0f7e6a5cbfd6f02101ed05e0aee4d2822637a9e672c998d"}, - {file = "coverage-7.5.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:239a4e75e09c2b12ea478d28815acf83334d32e722e7433471fbf641c606344c"}, - {file = "coverage-7.5.3-cp310-cp310-win32.whl", hash = "sha256:a5812840d1d00eafae6585aba38021f90a705a25b8216ec7f66aebe5b619fb84"}, - {file = "coverage-7.5.3-cp310-cp310-win_amd64.whl", hash = "sha256:33ca90a0eb29225f195e30684ba4a6db05dbef03c2ccd50b9077714c48153cac"}, - {file = "coverage-7.5.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f81bc26d609bf0fbc622c7122ba6307993c83c795d2d6f6f6fd8c000a770d974"}, - {file = "coverage-7.5.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7cec2af81f9e7569280822be68bd57e51b86d42e59ea30d10ebdbb22d2cb7232"}, - {file = "coverage-7.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55f689f846661e3f26efa535071775d0483388a1ccfab899df72924805e9e7cd"}, - {file = "coverage-7.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:50084d3516aa263791198913a17354bd1dc627d3c1639209640b9cac3fef5807"}, - {file = "coverage-7.5.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:341dd8f61c26337c37988345ca5c8ccabeff33093a26953a1ac72e7d0103c4fb"}, - {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ab0b028165eea880af12f66086694768f2c3139b2c31ad5e032c8edbafca6ffc"}, - {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:5bc5a8c87714b0c67cfeb4c7caa82b2d71e8864d1a46aa990b5588fa953673b8"}, - {file = "coverage-7.5.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:38a3b98dae8a7c9057bd91fbf3415c05e700a5114c5f1b5b0ea5f8f429ba6614"}, - {file = "coverage-7.5.3-cp311-cp311-win32.whl", hash = "sha256:fcf7d1d6f5da887ca04302db8e0e0cf56ce9a5e05f202720e49b3e8157ddb9a9"}, - {file = "coverage-7.5.3-cp311-cp311-win_amd64.whl", hash = "sha256:8c836309931839cca658a78a888dab9676b5c988d0dd34ca247f5f3e679f4e7a"}, - {file = "coverage-7.5.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:296a7d9bbc598e8744c00f7a6cecf1da9b30ae9ad51c566291ff1314e6cbbed8"}, - {file = "coverage-7.5.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:34d6d21d8795a97b14d503dcaf74226ae51eb1f2bd41015d3ef332a24d0a17b3"}, - {file = "coverage-7.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e317953bb4c074c06c798a11dbdd2cf9979dbcaa8ccc0fa4701d80042d4ebf1"}, - {file = "coverage-7.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:705f3d7c2b098c40f5b81790a5fedb274113373d4d1a69e65f8b68b0cc26f6db"}, - {file = "coverage-7.5.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1196e13c45e327d6cd0b6e471530a1882f1017eb83c6229fc613cd1a11b53cd"}, - {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:015eddc5ccd5364dcb902eaecf9515636806fa1e0d5bef5769d06d0f31b54523"}, - {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:fd27d8b49e574e50caa65196d908f80e4dff64d7e592d0c59788b45aad7e8b35"}, - {file = "coverage-7.5.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:33fc65740267222fc02975c061eb7167185fef4cc8f2770267ee8bf7d6a42f84"}, - {file = "coverage-7.5.3-cp312-cp312-win32.whl", hash = "sha256:7b2a19e13dfb5c8e145c7a6ea959485ee8e2204699903c88c7d25283584bfc08"}, - {file = "coverage-7.5.3-cp312-cp312-win_amd64.whl", hash = "sha256:0bbddc54bbacfc09b3edaec644d4ac90c08ee8ed4844b0f86227dcda2d428fcb"}, - {file = "coverage-7.5.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f78300789a708ac1f17e134593f577407d52d0417305435b134805c4fb135adb"}, - {file = "coverage-7.5.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b368e1aee1b9b75757942d44d7598dcd22a9dbb126affcbba82d15917f0cc155"}, - {file = "coverage-7.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f836c174c3a7f639bded48ec913f348c4761cbf49de4a20a956d3431a7c9cb24"}, - {file = "coverage-7.5.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:244f509f126dc71369393ce5fea17c0592c40ee44e607b6d855e9c4ac57aac98"}, - {file = "coverage-7.5.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4c2872b3c91f9baa836147ca33650dc5c172e9273c808c3c3199c75490e709d"}, - {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dd4b3355b01273a56b20c219e74e7549e14370b31a4ffe42706a8cda91f19f6d"}, - {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:f542287b1489c7a860d43a7d8883e27ca62ab84ca53c965d11dac1d3a1fab7ce"}, - {file = "coverage-7.5.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:75e3f4e86804023e991096b29e147e635f5e2568f77883a1e6eed74512659ab0"}, - {file = "coverage-7.5.3-cp38-cp38-win32.whl", hash = "sha256:c59d2ad092dc0551d9f79d9d44d005c945ba95832a6798f98f9216ede3d5f485"}, - {file = "coverage-7.5.3-cp38-cp38-win_amd64.whl", hash = "sha256:fa21a04112c59ad54f69d80e376f7f9d0f5f9123ab87ecd18fbb9ec3a2beed56"}, - {file = "coverage-7.5.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f5102a92855d518b0996eb197772f5ac2a527c0ec617124ad5242a3af5e25f85"}, - {file = "coverage-7.5.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d1da0a2e3b37b745a2b2a678a4c796462cf753aebf94edcc87dcc6b8641eae31"}, - {file = "coverage-7.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8383a6c8cefba1b7cecc0149415046b6fc38836295bc4c84e820872eb5478b3d"}, - {file = "coverage-7.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9aad68c3f2566dfae84bf46295a79e79d904e1c21ccfc66de88cd446f8686341"}, - {file = "coverage-7.5.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e079c9ec772fedbade9d7ebc36202a1d9ef7291bc9b3a024ca395c4d52853d7"}, - {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bde997cac85fcac227b27d4fb2c7608a2c5f6558469b0eb704c5726ae49e1c52"}, - {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:990fb20b32990b2ce2c5f974c3e738c9358b2735bc05075d50a6f36721b8f303"}, - {file = "coverage-7.5.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3d5a67f0da401e105753d474369ab034c7bae51a4c31c77d94030d59e41df5bd"}, - {file = "coverage-7.5.3-cp39-cp39-win32.whl", hash = "sha256:e08c470c2eb01977d221fd87495b44867a56d4d594f43739a8028f8646a51e0d"}, - {file = "coverage-7.5.3-cp39-cp39-win_amd64.whl", hash = "sha256:1d2a830ade66d3563bb61d1e3c77c8def97b30ed91e166c67d0632c018f380f0"}, - {file = "coverage-7.5.3-pp38.pp39.pp310-none-any.whl", hash = "sha256:3538d8fb1ee9bdd2e2692b3b18c22bb1c19ffbefd06880f5ac496e42d7bb3884"}, - {file = "coverage-7.5.3.tar.gz", hash = "sha256:04aefca5190d1dc7a53a4c1a5a7f8568811306d7a8ee231c42fb69215571944f"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b06079abebbc0e89e6163b8e8f0e16270124c154dc6e4a47b413dd538859af16"}, + {file = "coverage-7.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cf4b19715bccd7ee27b6b120e7e9dd56037b9c0681dcc1adc9ba9db3d417fa36"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61c0abb4c85b095a784ef23fdd4aede7a2628478e7baba7c5e3deba61070a02"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd21f6ae3f08b41004dfb433fa895d858f3f5979e7762d052b12aef444e29afc"}, + {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f59d57baca39b32db42b83b2a7ba6f47ad9c394ec2076b084c3f029b7afca23"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a1ac0ae2b8bd743b88ed0502544847c3053d7171a3cff9228af618a068ed9c34"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e6a08c0be454c3b3beb105c0596ebdc2371fab6bb90c0c0297f4e58fd7e1012c"}, + {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f5796e664fe802da4f57a168c85359a8fbf3eab5e55cd4e4569fbacecc903959"}, + {file = "coverage-7.6.1-cp310-cp310-win32.whl", hash = "sha256:7bb65125fcbef8d989fa1dd0e8a060999497629ca5b0efbca209588a73356232"}, + {file = "coverage-7.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:3115a95daa9bdba70aea750db7b96b37259a81a709223c8448fa97727d546fe0"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7dea0889685db8550f839fa202744652e87c60015029ce3f60e006f8c4462c93"}, + {file = "coverage-7.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed37bd3c3b063412f7620464a9ac1314d33100329f39799255fb8d3027da50d3"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85f5e9a5f8b73e2350097c3756ef7e785f55bd71205defa0bfdaf96c31616ff"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bc572be474cafb617672c43fe989d6e48d3c83af02ce8de73fff1c6bb3c198d"}, + {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0420b573964c760df9e9e86d1a9a622d0d27f417e1a949a8a66dd7bcee7bc6"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f4aa8219db826ce6be7099d559f8ec311549bfc4046f7f9fe9b5cea5c581c56"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:fc5a77d0c516700ebad189b587de289a20a78324bc54baee03dd486f0855d234"}, + {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b48f312cca9621272ae49008c7f613337c53fadca647d6384cc129d2996d1133"}, + {file = "coverage-7.6.1-cp311-cp311-win32.whl", hash = "sha256:1125ca0e5fd475cbbba3bb67ae20bd2c23a98fac4e32412883f9bcbaa81c314c"}, + {file = "coverage-7.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:8ae539519c4c040c5ffd0632784e21b2f03fc1340752af711f33e5be83a9d6c6"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:95cae0efeb032af8458fc27d191f85d1717b1d4e49f7cb226cf526ff28179778"}, + {file = "coverage-7.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5621a9175cf9d0b0c84c2ef2b12e9f5f5071357c4d2ea6ca1cf01814f45d2391"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:260933720fdcd75340e7dbe9060655aff3af1f0c5d20f46b57f262ab6c86a5e8"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e2ca0ad381b91350c0ed49d52699b625aab2b44b65e1b4e02fa9df0e92ad2d"}, + {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44fee9975f04b33331cb8eb272827111efc8930cfd582e0320613263ca849ca"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877abb17e6339d96bf08e7a622d05095e72b71f8afd8a9fefc82cf30ed944163"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e0cadcf6733c09154b461f1ca72d5416635e5e4ec4e536192180d34ec160f8a"}, + {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3c02d12f837d9683e5ab2f3d9844dc57655b92c74e286c262e0fc54213c216d"}, + {file = "coverage-7.6.1-cp312-cp312-win32.whl", hash = "sha256:e05882b70b87a18d937ca6768ff33cc3f72847cbc4de4491c8e73880766718e5"}, + {file = "coverage-7.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:b5d7b556859dd85f3a541db6a4e0167b86e7273e1cdc973e5b175166bb634fdb"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a4acd025ecc06185ba2b801f2de85546e0b8ac787cf9d3b06e7e2a69f925b106"}, + {file = "coverage-7.6.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a6d3adcf24b624a7b778533480e32434a39ad8fa30c315208f6d3e5542aeb6e9"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0c212c49b6c10e6951362f7c6df3329f04c2b1c28499563d4035d964ab8e08c"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e81d7a3e58882450ec4186ca59a3f20a5d4440f25b1cff6f0902ad890e6748a"}, + {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b260de9790fd81e69401c2dc8b17da47c8038176a79092a89cb2b7d945d060"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a78d169acd38300060b28d600344a803628c3fd585c912cacc9ea8790fe96862"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2c09f4ce52cb99dd7505cd0fc8e0e37c77b87f46bc9c1eb03fe3bc9991085388"}, + {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6878ef48d4227aace338d88c48738a4258213cd7b74fd9a3d4d7582bb1d8a155"}, + {file = "coverage-7.6.1-cp313-cp313-win32.whl", hash = "sha256:44df346d5215a8c0e360307d46ffaabe0f5d3502c8a1cefd700b34baf31d411a"}, + {file = "coverage-7.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:8284cf8c0dd272a247bc154eb6c95548722dce90d098c17a883ed36e67cdb129"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3296782ca4eab572a1a4eca686d8bfb00226300dcefdf43faa25b5242ab8a3e"}, + {file = "coverage-7.6.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:502753043567491d3ff6d08629270127e0c31d4184c4c8d98f92c26f65019962"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a89ecca80709d4076b95f89f308544ec8f7b4727e8a547913a35f16717856cb"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a318d68e92e80af8b00fa99609796fdbcdfef3629c77c6283566c6f02c6d6704"}, + {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13b0a73a0896988f053e4fbb7de6d93388e6dd292b0d87ee51d106f2c11b465b"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4421712dbfc5562150f7554f13dde997a2e932a6b5f352edcce948a815efee6f"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:166811d20dfea725e2e4baa71fffd6c968a958577848d2131f39b60043400223"}, + {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:225667980479a17db1048cb2bf8bfb39b8e5be8f164b8f6628b64f78a72cf9d3"}, + {file = "coverage-7.6.1-cp313-cp313t-win32.whl", hash = "sha256:170d444ab405852903b7d04ea9ae9b98f98ab6d7e63e1115e82620807519797f"}, + {file = "coverage-7.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b9f222de8cded79c49bf184bdbc06630d4c58eec9459b939b4a690c82ed05657"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6db04803b6c7291985a761004e9060b2bca08da6d04f26a7f2294b8623a0c1a0"}, + {file = "coverage-7.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f1adfc8ac319e1a348af294106bc6a8458a0f1633cc62a1446aebc30c5fa186a"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a95324a9de9650a729239daea117df21f4b9868ce32e63f8b650ebe6cef5595b"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b43c03669dc4618ec25270b06ecd3ee4fa94c7f9b3c14bae6571ca00ef98b0d3"}, + {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8929543a7192c13d177b770008bc4e8119f2e1f881d563fc6b6305d2d0ebe9de"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:a09ece4a69cf399510c8ab25e0950d9cf2b42f7b3cb0374f95d2e2ff594478a6"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9054a0754de38d9dbd01a46621636689124d666bad1936d76c0341f7d71bf569"}, + {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0dbde0f4aa9a16fa4d754356a8f2e36296ff4d83994b2c9d8398aa32f222f989"}, + {file = "coverage-7.6.1-cp38-cp38-win32.whl", hash = "sha256:da511e6ad4f7323ee5702e6633085fb76c2f893aaf8ce4c51a0ba4fc07580ea7"}, + {file = "coverage-7.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:3f1156e3e8f2872197af3840d8ad307a9dd18e615dc64d9ee41696f287c57ad8"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abd5fd0db5f4dc9289408aaf34908072f805ff7792632250dcb36dc591d24255"}, + {file = "coverage-7.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:547f45fa1a93154bd82050a7f3cddbc1a7a4dd2a9bf5cb7d06f4ae29fe94eaf8"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645786266c8f18a931b65bfcefdbf6952dd0dea98feee39bd188607a9d307ed2"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e0b2df163b8ed01d515807af24f63de04bebcecbd6c3bfeff88385789fdf75a"}, + {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:609b06f178fe8e9f89ef676532760ec0b4deea15e9969bf754b37f7c40326dbc"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:702855feff378050ae4f741045e19a32d57d19f3e0676d589df0575008ea5004"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2bdb062ea438f22d99cba0d7829c2ef0af1d768d1e4a4f528087224c90b132cb"}, + {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9c56863d44bd1c4fe2abb8a4d6f5371d197f1ac0ebdee542f07f35895fc07f36"}, + {file = "coverage-7.6.1-cp39-cp39-win32.whl", hash = "sha256:6e2cd258d7d927d09493c8df1ce9174ad01b381d4729a9d8d4e38670ca24774c"}, + {file = "coverage-7.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:06a737c882bd26d0d6ee7269b20b12f14a8704807a01056c80bb881a4b2ce6ca"}, + {file = "coverage-7.6.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:e9a6e0eb86070e8ccaedfbd9d38fec54864f3125ab95419970575b42af7541df"}, + {file = "coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d"}, ] [package.extras] @@ -698,13 +733,13 @@ toml = ["tomli"] [[package]] name = "cron-descriptor" -version = "1.4.3" +version = "1.4.5" description = "A Python library that converts cron expressions into human readable strings." optional = false python-versions = "*" files = [ - {file = "cron_descriptor-1.4.3-py3-none-any.whl", hash = "sha256:a67ba21804983b1427ed7f3e1ec27ee77bf24c652b0430239c268c5ddfbf9dc0"}, - {file = "cron_descriptor-1.4.3.tar.gz", hash = "sha256:7b1a00d7d25d6ae6896c0da4457e790b98cba778398a3d48e341e5e0d33f0488"}, + {file = "cron_descriptor-1.4.5-py3-none-any.whl", hash = "sha256:736b3ae9d1a99bc3dbfc5b55b5e6e7c12031e7ba5de716625772f8b02dcd6013"}, + {file = "cron_descriptor-1.4.5.tar.gz", hash = "sha256:f51ce4ffc1d1f2816939add8524f206c376a42c87a5fca3091ce26725b3b1bca"}, ] [package.extras] @@ -712,43 +747,38 @@ dev = ["polib"] [[package]] name = "cryptography" -version = "42.0.7" +version = "43.0.1" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." optional = false python-versions = ">=3.7" files = [ - {file = "cryptography-42.0.7-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477"}, - {file = "cryptography-42.0.7-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a"}, - {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604"}, - {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8"}, - {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55"}, - {file = "cryptography-42.0.7-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc"}, - {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2"}, - {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13"}, - {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da"}, - {file = "cryptography-42.0.7-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7"}, - {file = "cryptography-42.0.7-cp37-abi3-win32.whl", hash = "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b"}, - {file = "cryptography-42.0.7-cp37-abi3-win_amd64.whl", hash = "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678"}, - {file = "cryptography-42.0.7-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4"}, - {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858"}, - {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785"}, - {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda"}, - {file = "cryptography-42.0.7-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9"}, - {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e"}, - {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f"}, - {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1"}, - {file = "cryptography-42.0.7-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886"}, - {file = "cryptography-42.0.7-cp39-abi3-win32.whl", hash = "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda"}, - {file = "cryptography-42.0.7-cp39-abi3-win_amd64.whl", hash = "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b"}, - {file = "cryptography-42.0.7-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82"}, - {file = "cryptography-42.0.7-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60"}, - {file = "cryptography-42.0.7-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd"}, - {file = "cryptography-42.0.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582"}, - {file = "cryptography-42.0.7-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562"}, - {file = "cryptography-42.0.7-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14"}, - {file = "cryptography-42.0.7-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9"}, - {file = "cryptography-42.0.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68"}, - {file = "cryptography-42.0.7.tar.gz", hash = "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2"}, + {file = "cryptography-43.0.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:8385d98f6a3bf8bb2d65a73e17ed87a3ba84f6991c155691c51112075f9ffc5d"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27e613d7077ac613e399270253259d9d53872aaf657471473ebfc9a52935c062"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68aaecc4178e90719e95298515979814bda0cbada1256a4485414860bd7ab962"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:de41fd81a41e53267cb020bb3a7212861da53a7d39f863585d13ea11049cf277"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f98bf604c82c416bc829e490c700ca1553eafdf2912a91e23a79d97d9801372a"}, + {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:61ec41068b7b74268fa86e3e9e12b9f0c21fcf65434571dbb13d954bceb08042"}, + {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:014f58110f53237ace6a408b5beb6c427b64e084eb451ef25a28308270086494"}, + {file = "cryptography-43.0.1-cp37-abi3-win32.whl", hash = "sha256:2bd51274dcd59f09dd952afb696bf9c61a7a49dfc764c04dd33ef7a6b502a1e2"}, + {file = "cryptography-43.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:666ae11966643886c2987b3b721899d250855718d6d9ce41b521252a17985f4d"}, + {file = "cryptography-43.0.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac119bb76b9faa00f48128b7f5679e1d8d437365c5d26f1c2c3f0da4ce1b553d"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bbcce1a551e262dfbafb6e6252f1ae36a248e615ca44ba302df077a846a8806"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58d4e9129985185a06d849aa6df265bdd5a74ca6e1b736a77959b498e0505b85"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d03a475165f3134f773d1388aeb19c2d25ba88b6a9733c5c590b9ff7bbfa2e0c"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:511f4273808ab590912a93ddb4e3914dfd8a388fed883361b02dea3791f292e1"}, + {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:80eda8b3e173f0f247f711eef62be51b599b5d425c429b5d4ca6a05e9e856baa"}, + {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:38926c50cff6f533f8a2dae3d7f19541432610d114a70808f0926d5aaa7121e4"}, + {file = "cryptography-43.0.1-cp39-abi3-win32.whl", hash = "sha256:a575913fb06e05e6b4b814d7f7468c2c660e8bb16d8d5a1faf9b33ccc569dd47"}, + {file = "cryptography-43.0.1-cp39-abi3-win_amd64.whl", hash = "sha256:d75601ad10b059ec832e78823b348bfa1a59f6b8d545db3a24fd44362a1564cb"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ea25acb556320250756e53f9e20a4177515f012c9eaea17eb7587a8c4d8ae034"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c1332724be35d23a854994ff0b66530119500b6053d0bd3363265f7e5e77288d"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fba1007b3ef89946dbbb515aeeb41e30203b004f0b4b00e5e16078b518563289"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5b43d1ea6b378b54a1dc99dd8a2b5be47658fe9a7ce0a58ff0b55f4b43ef2b84"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:88cce104c36870d70c49c7c8fd22885875d950d9ee6ab54df2745f83ba0dc365"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d3cdb25fa98afdd3d0892d132b8d7139e2c087da1712041f6b762e4f807cc96"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e710bf40870f4db63c3d7d929aa9e09e4e7ee219e703f949ec4073b4294f6172"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7c05650fe8023c5ed0d46793d4b7d7e6cd9c04e68eabe5b0aeea836e37bdcec2"}, + {file = "cryptography-43.0.1.tar.gz", hash = "sha256:203e92a75716d8cfb491dc47c79e17d0d9207ccffcbcb35f598fbe463ae3444d"}, ] [package.dependencies] @@ -761,7 +791,7 @@ nox = ["nox"] pep8test = ["check-sdist", "click", "mypy", "ruff"] sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test = ["certifi", "cryptography-vectors (==43.0.1)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] [[package]] @@ -827,13 +857,13 @@ redis = ["redis (>=4.3,<5.0)"] [[package]] name = "dill" -version = "0.3.8" +version = "0.3.9" description = "serialize all of Python" optional = false python-versions = ">=3.8" files = [ - {file = "dill-0.3.8-py3-none-any.whl", hash = "sha256:c36ca9ffb54365bdd2f8eb3eff7d2a21237f8452b57ace88b1ac615b7e815bd7"}, - {file = "dill-0.3.8.tar.gz", hash = "sha256:3ebe3c479ad625c4553aca177444d89b486b1d84982eeacded644afc0cf797ca"}, + {file = "dill-0.3.9-py3-none-any.whl", hash = "sha256:468dff3b89520b474c0397703366b7b95eebe6303f108adf9b19da1f702be87a"}, + {file = "dill-0.3.9.tar.gz", hash = "sha256:81aa267dddf68cbfe8029c42ca9ec6a4ab3b22371d1c450abc54422577b4512c"}, ] [package.extras] @@ -954,17 +984,17 @@ Django = "*" [[package]] name = "django-debug-toolbar" -version = "4.3.0" +version = "4.4.6" description = "A configurable set of panels that display various debug information about the current request/response." optional = false python-versions = ">=3.8" files = [ - {file = "django_debug_toolbar-4.3.0-py3-none-any.whl", hash = "sha256:e09b7dcb8417b743234dfc57c95a7c1d1d87a88844abd13b4c5387f807b31bf6"}, - {file = "django_debug_toolbar-4.3.0.tar.gz", hash = "sha256:0b0dddee5ea29b9cb678593bc0d7a6d76b21d7799cb68e091a2148341a80f3c4"}, + {file = "django_debug_toolbar-4.4.6-py3-none-any.whl", hash = "sha256:3beb671c9ec44ffb817fad2780667f172bd1c067dbcabad6268ce39a81335f45"}, + {file = "django_debug_toolbar-4.4.6.tar.gz", hash = "sha256:36e421cb908c2f0675e07f9f41e3d1d8618dc386392ec82d23bcfcd5d29c7044"}, ] [package.dependencies] -django = ">=3.2.4" +django = ">=4.2.9" sqlparse = ">=0.2" [[package]] @@ -1121,6 +1151,7 @@ files = [ [package.dependencies] asgiref = ">=3.6.0" +celery = {version = ">=5.1", optional = true, markers = "extra == \"celery\""} django = ">=4.2" django-ipware = ">=6.0.2" structlog = ">=21.4.0" @@ -1266,13 +1297,13 @@ sidecar = ["drf-spectacular-sidecar"] [[package]] name = "drf-spectacular-sidecar" -version = "2024.5.1" +version = "2024.7.1" description = "Serve self-contained distribution builds of Swagger UI and Redoc with Django" optional = false python-versions = ">=3.6" files = [ - {file = "drf_spectacular_sidecar-2024.5.1-py3-none-any.whl", hash = "sha256:089fdef46b520b7b1c8a497a398cde9336c3f20b115835baeb158dc4138d743d"}, - {file = "drf_spectacular_sidecar-2024.5.1.tar.gz", hash = "sha256:1ecfbe86174461e3cf78a9cd49f69aa8d9e0710cb5e8b35107d3f8cc0f380c21"}, + {file = "drf_spectacular_sidecar-2024.7.1-py3-none-any.whl", hash = "sha256:5dc8b38ad153e90b328152674c7959bf114bf86360a617a5a4516e135cb832bc"}, + {file = "drf_spectacular_sidecar-2024.7.1.tar.gz", hash = "sha256:beb992d6ece806a2d422ad626983e2472c0a5550de9647a7ed6764716a5abdfe"}, ] [package.dependencies] @@ -1311,13 +1342,13 @@ test = ["pytest (>=6)"] [[package]] name = "executing" -version = "2.0.1" +version = "2.1.0" description = "Get the currently executing AST node of a frame, and other information" optional = false -python-versions = ">=3.5" +python-versions = ">=3.8" files = [ - {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"}, - {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"}, + {file = "executing-2.1.0-py2.py3-none-any.whl", hash = "sha256:8d63781349375b5ebccc3142f4b30350c0cd9c79f921cde38be2be4637e98eaf"}, + {file = "executing-2.1.0.tar.gz", hash = "sha256:8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab"}, ] [package.extras] @@ -1385,13 +1416,13 @@ test = ["coverage[toml]", "ddt (>=1.1.1,!=1.4.3)", "mock", "mypy", "pre-commit", [[package]] name = "gprof2dot" -version = "2022.7.29" +version = "2024.6.6" description = "Generate a dot graph from the output of several profilers." optional = false -python-versions = ">=2.7" +python-versions = ">=3.8" files = [ - {file = "gprof2dot-2022.7.29-py2.py3-none-any.whl", hash = "sha256:f165b3851d3c52ee4915eb1bd6cca571e5759823c2cd0f71a79bda93c2dc85d6"}, - {file = "gprof2dot-2022.7.29.tar.gz", hash = "sha256:45b4d298bd36608fccf9511c3fd88a773f7a1abc04d6cd39445b11ba43133ec5"}, + {file = "gprof2dot-2024.6.6-py2.py3-none-any.whl", hash = "sha256:45b14ad7ce64e299c8f526881007b9eb2c6b75505d5613e96e66ee4d5ab33696"}, + {file = "gprof2dot-2024.6.6.tar.gz", hash = "sha256:fa1420c60025a9eb7734f65225b4da02a10fc6dd741b37fa129bc6b41951e5ab"}, ] [[package]] @@ -1514,13 +1545,13 @@ files = [ [[package]] name = "httpcore" -version = "1.0.5" +version = "1.0.6" description = "A minimal low-level HTTP client." optional = false python-versions = ">=3.8" files = [ - {file = "httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5"}, - {file = "httpcore-1.0.5.tar.gz", hash = "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61"}, + {file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"}, + {file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"}, ] [package.dependencies] @@ -1531,7 +1562,7 @@ h11 = ">=0.13,<0.15" asyncio = ["anyio (>=4.0,<5.0)"] http2 = ["h2 (>=3,<5)"] socks = ["socksio (==1.*)"] -trio = ["trio (>=0.22.0,<0.26.0)"] +trio = ["trio (>=0.22.0,<1.0)"] [[package]] name = "httpx" @@ -1559,15 +1590,18 @@ socks = ["socksio (==1.*)"] [[package]] name = "idna" -version = "3.7" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, - {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + [[package]] name = "importlib-metadata" version = "4.13.0" @@ -1589,36 +1623,43 @@ testing = ["flake8 (<5)", "flufl.flake8", "importlib-resources (>=1.3)", "packag [[package]] name = "importlib-resources" -version = "6.4.0" +version = "6.4.5" description = "Read resources from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c"}, - {file = "importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145"}, + {file = "importlib_resources-6.4.5-py3-none-any.whl", hash = "sha256:ac29d5f956f01d5e4bb63102a5a19957f1b9175e45649977264a1416783bb717"}, + {file = "importlib_resources-6.4.5.tar.gz", hash = "sha256:980862a1d16c9e147a59603677fa2aa5fd82b87f223b6cb870695bcfce830065"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"] +type = ["pytest-mypy"] [[package]] name = "incremental" -version = "22.10.0" -description = "\"A small library that versions your Python projects.\"" +version = "24.7.2" +description = "A small library that versions your Python projects." optional = false -python-versions = "*" +python-versions = ">=3.8" files = [ - {file = "incremental-22.10.0-py2.py3-none-any.whl", hash = "sha256:b864a1f30885ee72c5ac2835a761b8fe8aa9c28b9395cacf27286602688d3e51"}, - {file = "incremental-22.10.0.tar.gz", hash = "sha256:912feeb5e0f7e0188e6f42241d2f450002e11bbc0937c65865045854c24c0bd0"}, + {file = "incremental-24.7.2-py3-none-any.whl", hash = "sha256:8cb2c3431530bec48ad70513931a760f446ad6c25e8333ca5d95e24b0ed7b8fe"}, + {file = "incremental-24.7.2.tar.gz", hash = "sha256:fb4f1d47ee60efe87d4f6f0ebb5f70b9760db2b2574c59c8e8912be4ebd464c9"}, ] +[package.dependencies] +setuptools = ">=61.0" +tomli = {version = "*", markers = "python_version < \"3.11\""} + [package.extras] -mypy = ["click (>=6.0)", "mypy (==0.812)", "twisted (>=16.4.0)"] -scripts = ["click (>=6.0)", "twisted (>=16.4.0)"] +scripts = ["click (>=6.0)"] [[package]] name = "inflection" @@ -1759,13 +1800,13 @@ files = [ [[package]] name = "jsonschema" -version = "4.22.0" +version = "4.23.0" description = "An implementation of JSON Schema validation for Python" optional = false python-versions = ">=3.8" files = [ - {file = "jsonschema-4.22.0-py3-none-any.whl", hash = "sha256:ff4cfd6b1367a40e7bc6411caec72effadd3db0bbe5017de188f2d6108335802"}, - {file = "jsonschema-4.22.0.tar.gz", hash = "sha256:5b22d434a45935119af990552c862e5d6d564e8f6601206b305a61fdf661a2b7"}, + {file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"}, + {file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"}, ] [package.dependencies] @@ -1778,7 +1819,7 @@ rpds-py = ">=0.7.1" [package.extras] format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] -format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=24.6.0)"] [[package]] name = "jsonschema-specifications" @@ -1820,30 +1861,31 @@ yamlordereddictloader = "*" [[package]] name = "kombu" -version = "5.3.7" +version = "5.4.2" description = "Messaging library for Python." optional = false python-versions = ">=3.8" files = [ - {file = "kombu-5.3.7-py3-none-any.whl", hash = "sha256:5634c511926309c7f9789f1433e9ed402616b56836ef9878f01bd59267b4c7a9"}, - {file = "kombu-5.3.7.tar.gz", hash = "sha256:011c4cd9a355c14a1de8d35d257314a1d2456d52b7140388561acac3cf1a97bf"}, + {file = "kombu-5.4.2-py3-none-any.whl", hash = "sha256:14212f5ccf022fc0a70453bb025a1dcc32782a588c49ea866884047d66e14763"}, + {file = "kombu-5.4.2.tar.gz", hash = "sha256:eef572dd2fd9fc614b37580e3caeafdd5af46c1eff31e7fba89138cdb406f2cf"}, ] [package.dependencies] amqp = ">=5.1.1,<6.0.0" "backports.zoneinfo" = {version = ">=0.2.1", extras = ["tzdata"], markers = "python_version < \"3.9\""} -typing-extensions = {version = "*", markers = "python_version < \"3.10\""} -vine = "*" +typing-extensions = {version = "4.12.2", markers = "python_version < \"3.10\""} +tzdata = {version = "*", markers = "python_version >= \"3.9\""} +vine = "5.1.0" [package.extras] azureservicebus = ["azure-servicebus (>=7.10.0)"] azurestoragequeues = ["azure-identity (>=1.12.0)", "azure-storage-queue (>=12.6.0)"] confluentkafka = ["confluent-kafka (>=2.2.0)"] -consul = ["python-consul2"] +consul = ["python-consul2 (==0.1.5)"] librabbitmq = ["librabbitmq (>=2.0.0)"] mongodb = ["pymongo (>=4.1.1)"] -msgpack = ["msgpack"] -pyro = ["pyro4"] +msgpack = ["msgpack (==1.1.0)"] +pyro = ["pyro4 (==4.82)"] qpid = ["qpid-python (>=0.26)", "qpid-tools (>=0.26)"] redis = ["redis (>=4.5.2,!=4.5.5,!=5.0.2)"] slmq = ["softlayer-messaging (>=1.0.3)"] @@ -2222,13 +2264,13 @@ min-versions = ["babel (==2.9.0)", "click (==7.0)", "colorama (==0.4)", "ghp-imp [[package]] name = "mkdocs-autorefs" -version = "1.0.1" +version = "1.2.0" description = "Automatically link across pages in MkDocs." optional = false python-versions = ">=3.8" files = [ - {file = "mkdocs_autorefs-1.0.1-py3-none-any.whl", hash = "sha256:aacdfae1ab197780fb7a2dac92ad8a3d8f7ca8049a9cbe56a4218cd52e8da570"}, - {file = "mkdocs_autorefs-1.0.1.tar.gz", hash = "sha256:f684edf847eced40b570b57846b15f0bf57fb93ac2c510450775dcf16accb971"}, + {file = "mkdocs_autorefs-1.2.0-py3-none-any.whl", hash = "sha256:d588754ae89bd0ced0c70c06f58566a4ee43471eeeee5202427da7de9ef85a2f"}, + {file = "mkdocs_autorefs-1.2.0.tar.gz", hash = "sha256:a86b93abff653521bda71cf3fc5596342b7a23982093915cb74273f67522190f"}, ] [package.dependencies] @@ -2381,18 +2423,18 @@ typing-extensions = ">=4.3.0" [[package]] name = "nautobot" -version = "2.3.2" +version = "2.3.6" description = "Source of truth and network automation platform." optional = false python-versions = "<3.13,>=3.8" files = [ - {file = "nautobot-2.3.2-py3-none-any.whl", hash = "sha256:5318a26af1dde8919345bd242a3ed2be221bf2cc11149708fdcfdc55470b761a"}, - {file = "nautobot-2.3.2.tar.gz", hash = "sha256:03f0c7ca0224bf2a37a0a81ef978a20284c44e896a14e75bd403a0d09c2f913d"}, + {file = "nautobot-2.3.6-py3-none-any.whl", hash = "sha256:ff8cc2ab4964d1ea47e65607cdb0c7756a575b3521c5895e0aa5439b1b851f42"}, + {file = "nautobot-2.3.6.tar.gz", hash = "sha256:3a0aaf289b9b9a28084369122cd8f60f070e1f9857402fc85fde9830fa80d5bf"}, ] [package.dependencies] celery = ">=5.3.6,<5.4.0" -Django = ">=4.2.15,<4.3.0" +Django = ">=4.2.16,<4.3.0" django-ajax-tables = ">=1.1.1,<1.2.0" django-celery-beat = ">=2.6.0,<2.7.0" django-celery-results = ">=2.5.1,<2.6.0" @@ -2406,7 +2448,7 @@ django-jinja = ">=2.11.0,<2.12.0" django-prometheus = ">=2.3.1,<2.4.0" django-redis = ">=5.4.0,<5.5.0" django-silk = ">=5.1.0,<5.2.0" -django-structlog = {version = ">=8.1.0,<9.0.0", extras = ["all"]} +django-structlog = {version = ">=8.1.0,<9.0.0", extras = ["celery"]} django-tables2 = ">=2.7.0,<2.8.0" django-taggit = ">=5.0.0,<5.1.0" django-timezone-field = ">=7.0,<7.1" @@ -2431,8 +2473,8 @@ Pillow = ">=10.3.0,<10.4.0" prometheus-client = ">=0.20.0,<0.21.0" psycopg2-binary = ">=2.9.9,<2.10.0" python-slugify = ">=8.0.3,<8.1.0" -pyuwsgi = ">=2.0.23,<2.1.0" -PyYAML = ">=6.0,<6.1" +pyuwsgi = ">=2.0.26,<2.1.0" +PyYAML = ">=6.0.2,<6.1.0" social-auth-app-django = ">=5.4.2,<5.5.0" svgwrite = ">=1.4.2,<1.5.0" @@ -2493,12 +2535,12 @@ servicenow = ["Jinja2 (>=2.11.3)", "PyYAML (>=6)", "ijson (>=2.5.1)", "oauthlib [[package]] name = "ncclient" -version = "0.6.15" +version = "0.6.16" description = "Python library for NETCONF clients" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" files = [ - {file = "ncclient-0.6.15.tar.gz", hash = "sha256:6757cb41bc9160dfe47f22f5de8cf2f1adf22f27463fb50453cc415ab96773d8"}, + {file = "ncclient-0.6.16.tar.gz", hash = "sha256:a16a351d8c234e3bbf3495577b63c96ae4adfcdf67f2d84194313473ea65b805"}, ] [package.dependencies] @@ -2544,13 +2586,13 @@ textfsm = ">=1.1.3" [[package]] name = "netutils" -version = "1.9.1" +version = "1.10.0" description = "Common helper functions useful in network automation." optional = false python-versions = "<4.0,>=3.8" files = [ - {file = "netutils-1.9.1-py3-none-any.whl", hash = "sha256:0d6e9026cc529f365a63377159aed07769baee0bf7a7138fa86fce37b64dd9d4"}, - {file = "netutils-1.9.1.tar.gz", hash = "sha256:8ad8b5e02eb9d6692d0aaaf9c0f36da1a81f520f426a79d0e08e56cf7dbb3476"}, + {file = "netutils-1.10.0-py3-none-any.whl", hash = "sha256:19b8cc3d2cf567a986f916c90f298d241af03a71c62ec6d38d6dc3395347670b"}, + {file = "netutils-1.10.0.tar.gz", hash = "sha256:f457fb85cb622e89aa0403fb2128c50986f7ce38d93a5873981727d088619793"}, ] [package.extras] @@ -2558,27 +2600,27 @@ optionals = ["jsonschema (>=4.17.3,<5.0.0)", "napalm (>=4.0.0,<5.0.0)"] [[package]] name = "nh3" -version = "0.2.17" +version = "0.2.18" description = "Python bindings to the ammonia HTML sanitization library." optional = false python-versions = "*" files = [ - {file = "nh3-0.2.17-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:551672fd71d06cd828e282abdb810d1be24e1abb7ae2543a8fa36a71c1006fe9"}, - {file = "nh3-0.2.17-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:c551eb2a3876e8ff2ac63dff1585236ed5dfec5ffd82216a7a174f7c5082a78a"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:66f17d78826096291bd264f260213d2b3905e3c7fae6dfc5337d49429f1dc9f3"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0316c25b76289cf23be6b66c77d3608a4fdf537b35426280032f432f14291b9a"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:22c26e20acbb253a5bdd33d432a326d18508a910e4dcf9a3316179860d53345a"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:85cdbcca8ef10733bd31f931956f7fbb85145a4d11ab9e6742bbf44d88b7e351"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:40015514022af31975c0b3bca4014634fa13cb5dc4dbcbc00570acc781316dcc"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ba73a2f8d3a1b966e9cdba7b211779ad8a2561d2dba9674b8a19ed817923f65f"}, - {file = "nh3-0.2.17-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c21bac1a7245cbd88c0b0e4a420221b7bfa838a2814ee5bb924e9c2f10a1120b"}, - {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:d7a25fd8c86657f5d9d576268e3b3767c5cd4f42867c9383618be8517f0f022a"}, - {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:c790769152308421283679a142dbdb3d1c46c79c823008ecea8e8141db1a2062"}, - {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:b4427ef0d2dfdec10b641ed0bdaf17957eb625b2ec0ea9329b3d28806c153d71"}, - {file = "nh3-0.2.17-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a3f55fabe29164ba6026b5ad5c3151c314d136fd67415a17660b4aaddacf1b10"}, - {file = "nh3-0.2.17-cp37-abi3-win32.whl", hash = "sha256:1a814dd7bba1cb0aba5bcb9bebcc88fd801b63e21e2450ae6c52d3b3336bc911"}, - {file = "nh3-0.2.17-cp37-abi3-win_amd64.whl", hash = "sha256:1aa52a7def528297f256de0844e8dd680ee279e79583c76d6fa73a978186ddfb"}, - {file = "nh3-0.2.17.tar.gz", hash = "sha256:40d0741a19c3d645e54efba71cb0d8c475b59135c1e3c580f879ad5514cbf028"}, + {file = "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:14c5a72e9fe82aea5fe3072116ad4661af5cf8e8ff8fc5ad3450f123e4925e86"}, + {file = "nh3-0.2.18-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:7b7c2a3c9eb1a827d42539aa64091640bd275b81e097cd1d8d82ef91ffa2e811"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42c64511469005058cd17cc1537578eac40ae9f7200bedcfd1fc1a05f4f8c200"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0411beb0589eacb6734f28d5497ca2ed379eafab8ad8c84b31bb5c34072b7164"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:5f36b271dae35c465ef5e9090e1fdaba4a60a56f0bb0ba03e0932a66f28b9189"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34c03fa78e328c691f982b7c03d4423bdfd7da69cd707fe572f544cf74ac23ad"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19aaba96e0f795bd0a6c56291495ff59364f4300d4a39b29a0abc9cb3774a84b"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ceed6e661954871d6cd78b410213bdcb136f79aafe22aa7182e028b8c7307"}, + {file = "nh3-0.2.18-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6955369e4d9f48f41e3f238a9e60f9410645db7e07435e62c6a9ea6135a4907f"}, + {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:f0eca9ca8628dbb4e916ae2491d72957fdd35f7a5d326b7032a345f111ac07fe"}, + {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:3a157ab149e591bb638a55c8c6bcb8cdb559c8b12c13a8affaba6cedfe51713a"}, + {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:c8b3a1cebcba9b3669ed1a84cc65bf005728d2f0bc1ed2a6594a992e817f3a50"}, + {file = "nh3-0.2.18-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:36c95d4b70530b320b365659bb5034341316e6a9b30f0b25fa9c9eff4c27a204"}, + {file = "nh3-0.2.18-cp37-abi3-win32.whl", hash = "sha256:a7f1b5b2c15866f2db413a3649a8fe4fd7b428ae58be2c0f6bca5eefd53ca2be"}, + {file = "nh3-0.2.18-cp37-abi3-win_amd64.whl", hash = "sha256:8ce0f819d2f1933953fca255db2471ad58184a60508f03e6285e5114b6254844"}, + {file = "nh3-0.2.18.tar.gz", hash = "sha256:94a166927e53972a9698af9542ace4e38b9de50c34352b962f4d9a7d4c927af4"}, ] [[package]] @@ -2683,13 +2725,13 @@ nornir = ">=3,<4" [[package]] name = "ntc-templates" -version = "6.0.0" +version = "6.1.0" description = "TextFSM Templates for Network Devices, and Python wrapper for TextFSM's CliTable." optional = false python-versions = "<4.0,>=3.8" files = [ - {file = "ntc_templates-6.0.0-py3-none-any.whl", hash = "sha256:fbfbf7ebe6e1be1ad7123dfc907f353eda68a539d4f54555f8a081e8174659df"}, - {file = "ntc_templates-6.0.0.tar.gz", hash = "sha256:b1f235f017a20408057b8d43856c072b76a169ca420715217b048eff871a3a95"}, + {file = "ntc_templates-6.1.0-py3-none-any.whl", hash = "sha256:568f85f0eae8f563188231ebf54685b00442f43473b2eccc887d82ed8ca20949"}, + {file = "ntc_templates-6.1.0.tar.gz", hash = "sha256:a58efc5ebd0ef55389731d5e9ecd2fc3ec5b5d6c263c1bf6f8c2971ded681a6e"}, ] [package.dependencies] @@ -2753,13 +2795,13 @@ lint = ["black"] [[package]] name = "paramiko" -version = "3.4.1" +version = "3.5.0" description = "SSH2 protocol library" optional = false python-versions = ">=3.6" files = [ - {file = "paramiko-3.4.1-py3-none-any.whl", hash = "sha256:8e49fd2f82f84acf7ffd57c64311aa2b30e575370dc23bdb375b10262f7eac32"}, - {file = "paramiko-3.4.1.tar.gz", hash = "sha256:8b15302870af7f6652f2e038975c1d2973f06046cb5d7d65355668b3ecbece0c"}, + {file = "paramiko-3.5.0-py3-none-any.whl", hash = "sha256:1fedf06b085359051cd7d0d270cebe19e755a8a921cc2ddbfa647fb0cd7d68f9"}, + {file = "paramiko-3.5.0.tar.gz", hash = "sha256:ad11e540da4f55cedda52931f1a3f812a8238a7af7f62a60de538cd80bb28124"}, ] [package.dependencies] @@ -2922,19 +2964,19 @@ files = [ [[package]] name = "platformdirs" -version = "4.2.2" +version = "4.3.6" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, - {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] -type = ["mypy (>=1.8)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "prometheus-client" @@ -2968,13 +3010,13 @@ test = ["coveralls", "futures", "mock", "pytest (>=2.7.3)", "pytest-benchmark", [[package]] name = "prompt-toolkit" -version = "3.0.45" +version = "3.0.48" description = "Library for building powerful interactive command lines in Python" optional = false python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.45-py3-none-any.whl", hash = "sha256:a29b89160e494e3ea8622b09fa5897610b437884dcdcd054fdc1308883326c2a"}, - {file = "prompt_toolkit-3.0.45.tar.gz", hash = "sha256:07c60ee4ab7b7e90824b61afa840c8f5aad2d46b3e2e10acc33d8ecc94a49089"}, + {file = "prompt_toolkit-3.0.48-py3-none-any.whl", hash = "sha256:f49a827f90062e411f1ce1f854f2aedb3c23353244f8108b89283587397ac10e"}, + {file = "prompt_toolkit-3.0.48.tar.gz", hash = "sha256:d6623ab0477a80df74e646bdbc93621143f5caf104206aa29294d53de1a03d90"}, ] [package.dependencies] @@ -3074,13 +3116,13 @@ files = [ [[package]] name = "pure-eval" -version = "0.2.2" +version = "0.2.3" description = "Safely evaluate AST nodes without side effects" optional = false python-versions = "*" files = [ - {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, - {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, + {file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"}, + {file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"}, ] [package.extras] @@ -3099,13 +3141,13 @@ files = [ [[package]] name = "pycodestyle" -version = "2.9.1" +version = "2.12.1" description = "Python style guide checker" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "pycodestyle-2.9.1-py2.py3-none-any.whl", hash = "sha256:d1735fc58b418fd7c5f658d28d943854f8a849b01a5d0a1e6f3f3fdd0166804b"}, - {file = "pycodestyle-2.9.1.tar.gz", hash = "sha256:2c9607871d58c76354b697b42f5d57e1ada7d261c261efac224b664affdc5785"}, + {file = "pycodestyle-2.12.1-py2.py3-none-any.whl", hash = "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3"}, + {file = "pycodestyle-2.12.1.tar.gz", hash = "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521"}, ] [[package]] @@ -3121,18 +3163,18 @@ files = [ [[package]] name = "pydantic" -version = "2.9.1" +version = "2.9.2" description = "Data validation using Python type hints" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic-2.9.1-py3-none-any.whl", hash = "sha256:7aff4db5fdf3cf573d4b3c30926a510a10e19a0774d38fc4967f78beb6deb612"}, - {file = "pydantic-2.9.1.tar.gz", hash = "sha256:1363c7d975c7036df0db2b4a61f2e062fbc0aa5ab5f2772e0ffc7191a4f4bce2"}, + {file = "pydantic-2.9.2-py3-none-any.whl", hash = "sha256:f048cec7b26778210e28a0459867920654d48e5e62db0958433636cde4254f12"}, + {file = "pydantic-2.9.2.tar.gz", hash = "sha256:d155cef71265d1e9807ed1c32b4c8deec042a44a50a4188b25ac67ecd81a9c0f"}, ] [package.dependencies] annotated-types = ">=0.6.0" -pydantic-core = "2.23.3" +pydantic-core = "2.23.4" typing-extensions = {version = ">=4.6.1", markers = "python_version < \"3.13\""} [package.extras] @@ -3141,100 +3183,100 @@ timezone = ["tzdata"] [[package]] name = "pydantic-core" -version = "2.23.3" +version = "2.23.4" description = "Core functionality for Pydantic validation and serialization" optional = false python-versions = ">=3.8" files = [ - {file = "pydantic_core-2.23.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:7f10a5d1b9281392f1bf507d16ac720e78285dfd635b05737c3911637601bae6"}, - {file = "pydantic_core-2.23.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3c09a7885dd33ee8c65266e5aa7fb7e2f23d49d8043f089989726391dd7350c5"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6470b5a1ec4d1c2e9afe928c6cb37eb33381cab99292a708b8cb9aa89e62429b"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9172d2088e27d9a185ea0a6c8cebe227a9139fd90295221d7d495944d2367700"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86fc6c762ca7ac8fbbdff80d61b2c59fb6b7d144aa46e2d54d9e1b7b0e780e01"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0cb80fd5c2df4898693aa841425ea1727b1b6d2167448253077d2a49003e0ed"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03667cec5daf43ac4995cefa8aaf58f99de036204a37b889c24a80927b629cec"}, - {file = "pydantic_core-2.23.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:047531242f8e9c2db733599f1c612925de095e93c9cc0e599e96cf536aaf56ba"}, - {file = "pydantic_core-2.23.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5499798317fff7f25dbef9347f4451b91ac2a4330c6669821c8202fd354c7bee"}, - {file = "pydantic_core-2.23.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bbb5e45eab7624440516ee3722a3044b83fff4c0372efe183fd6ba678ff681fe"}, - {file = "pydantic_core-2.23.3-cp310-none-win32.whl", hash = "sha256:8b5b3ed73abb147704a6e9f556d8c5cb078f8c095be4588e669d315e0d11893b"}, - {file = "pydantic_core-2.23.3-cp310-none-win_amd64.whl", hash = "sha256:2b603cde285322758a0279995b5796d64b63060bfbe214b50a3ca23b5cee3e83"}, - {file = "pydantic_core-2.23.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:c889fd87e1f1bbeb877c2ee56b63bb297de4636661cc9bbfcf4b34e5e925bc27"}, - {file = "pydantic_core-2.23.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ea85bda3189fb27503af4c45273735bcde3dd31c1ab17d11f37b04877859ef45"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a7f7f72f721223f33d3dc98a791666ebc6a91fa023ce63733709f4894a7dc611"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2b2b55b0448e9da68f56b696f313949cda1039e8ec7b5d294285335b53104b61"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c24574c7e92e2c56379706b9a3f07c1e0c7f2f87a41b6ee86653100c4ce343e5"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2b05e6ccbee333a8f4b8f4d7c244fdb7a979e90977ad9c51ea31261e2085ce0"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2c409ce1c219c091e47cb03feb3c4ed8c2b8e004efc940da0166aaee8f9d6c8"}, - {file = "pydantic_core-2.23.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d965e8b325f443ed3196db890d85dfebbb09f7384486a77461347f4adb1fa7f8"}, - {file = "pydantic_core-2.23.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f56af3a420fb1ffaf43ece3ea09c2d27c444e7c40dcb7c6e7cf57aae764f2b48"}, - {file = "pydantic_core-2.23.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5b01a078dd4f9a52494370af21aa52964e0a96d4862ac64ff7cea06e0f12d2c5"}, - {file = "pydantic_core-2.23.3-cp311-none-win32.whl", hash = "sha256:560e32f0df04ac69b3dd818f71339983f6d1f70eb99d4d1f8e9705fb6c34a5c1"}, - {file = "pydantic_core-2.23.3-cp311-none-win_amd64.whl", hash = "sha256:c744fa100fdea0d000d8bcddee95213d2de2e95b9c12be083370b2072333a0fa"}, - {file = "pydantic_core-2.23.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:e0ec50663feedf64d21bad0809f5857bac1ce91deded203efc4a84b31b2e4305"}, - {file = "pydantic_core-2.23.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:db6e6afcb95edbe6b357786684b71008499836e91f2a4a1e55b840955b341dbb"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98ccd69edcf49f0875d86942f4418a4e83eb3047f20eb897bffa62a5d419c8fa"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a678c1ac5c5ec5685af0133262103defb427114e62eafeda12f1357a12140162"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:01491d8b4d8db9f3391d93b0df60701e644ff0894352947f31fff3e52bd5c801"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fcf31facf2796a2d3b7fe338fe8640aa0166e4e55b4cb108dbfd1058049bf4cb"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7200fd561fb3be06827340da066df4311d0b6b8eb0c2116a110be5245dceb326"}, - {file = "pydantic_core-2.23.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dc1636770a809dee2bd44dd74b89cc80eb41172bcad8af75dd0bc182c2666d4c"}, - {file = "pydantic_core-2.23.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:67a5def279309f2e23014b608c4150b0c2d323bd7bccd27ff07b001c12c2415c"}, - {file = "pydantic_core-2.23.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:748bdf985014c6dd3e1e4cc3db90f1c3ecc7246ff5a3cd4ddab20c768b2f1dab"}, - {file = "pydantic_core-2.23.3-cp312-none-win32.whl", hash = "sha256:255ec6dcb899c115f1e2a64bc9ebc24cc0e3ab097775755244f77360d1f3c06c"}, - {file = "pydantic_core-2.23.3-cp312-none-win_amd64.whl", hash = "sha256:40b8441be16c1e940abebed83cd006ddb9e3737a279e339dbd6d31578b802f7b"}, - {file = "pydantic_core-2.23.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:6daaf5b1ba1369a22c8b050b643250e3e5efc6a78366d323294aee54953a4d5f"}, - {file = "pydantic_core-2.23.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d015e63b985a78a3d4ccffd3bdf22b7c20b3bbd4b8227809b3e8e75bc37f9cb2"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3fc572d9b5b5cfe13f8e8a6e26271d5d13f80173724b738557a8c7f3a8a3791"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f6bd91345b5163ee7448bee201ed7dd601ca24f43f439109b0212e296eb5b423"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc379c73fd66606628b866f661e8785088afe2adaba78e6bbe80796baf708a63"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbdce4b47592f9e296e19ac31667daed8753c8367ebb34b9a9bd89dacaa299c9"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc3cf31edf405a161a0adad83246568647c54404739b614b1ff43dad2b02e6d5"}, - {file = "pydantic_core-2.23.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8e22b477bf90db71c156f89a55bfe4d25177b81fce4aa09294d9e805eec13855"}, - {file = "pydantic_core-2.23.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:0a0137ddf462575d9bce863c4c95bac3493ba8e22f8c28ca94634b4a1d3e2bb4"}, - {file = "pydantic_core-2.23.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:203171e48946c3164fe7691fc349c79241ff8f28306abd4cad5f4f75ed80bc8d"}, - {file = "pydantic_core-2.23.3-cp313-none-win32.whl", hash = "sha256:76bdab0de4acb3f119c2a4bff740e0c7dc2e6de7692774620f7452ce11ca76c8"}, - {file = "pydantic_core-2.23.3-cp313-none-win_amd64.whl", hash = "sha256:37ba321ac2a46100c578a92e9a6aa33afe9ec99ffa084424291d84e456f490c1"}, - {file = "pydantic_core-2.23.3-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d063c6b9fed7d992bcbebfc9133f4c24b7a7f215d6b102f3e082b1117cddb72c"}, - {file = "pydantic_core-2.23.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6cb968da9a0746a0cf521b2b5ef25fc5a0bee9b9a1a8214e0a1cfaea5be7e8a4"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edbefe079a520c5984e30e1f1f29325054b59534729c25b874a16a5048028d16"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cbaaf2ef20d282659093913da9d402108203f7cb5955020bd8d1ae5a2325d1c4"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fb539d7e5dc4aac345846f290cf504d2fd3c1be26ac4e8b5e4c2b688069ff4cf"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7e6f33503c5495059148cc486867e1d24ca35df5fc064686e631e314d959ad5b"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04b07490bc2f6f2717b10c3969e1b830f5720b632f8ae2f3b8b1542394c47a8e"}, - {file = "pydantic_core-2.23.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:03795b9e8a5d7fda05f3873efc3f59105e2dcff14231680296b87b80bb327295"}, - {file = "pydantic_core-2.23.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c483dab0f14b8d3f0df0c6c18d70b21b086f74c87ab03c59250dbf6d3c89baba"}, - {file = "pydantic_core-2.23.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8b2682038e255e94baf2c473dca914a7460069171ff5cdd4080be18ab8a7fd6e"}, - {file = "pydantic_core-2.23.3-cp38-none-win32.whl", hash = "sha256:f4a57db8966b3a1d1a350012839c6a0099f0898c56512dfade8a1fe5fb278710"}, - {file = "pydantic_core-2.23.3-cp38-none-win_amd64.whl", hash = "sha256:13dd45ba2561603681a2676ca56006d6dee94493f03d5cadc055d2055615c3ea"}, - {file = "pydantic_core-2.23.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:82da2f4703894134a9f000e24965df73cc103e31e8c31906cc1ee89fde72cbd8"}, - {file = "pydantic_core-2.23.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dd9be0a42de08f4b58a3cc73a123f124f65c24698b95a54c1543065baca8cf0e"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89b731f25c80830c76fdb13705c68fef6a2b6dc494402987c7ea9584fe189f5d"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6de1ec30c4bb94f3a69c9f5f2182baeda5b809f806676675e9ef6b8dc936f28"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bb68b41c3fa64587412b104294b9cbb027509dc2f6958446c502638d481525ef"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c3980f2843de5184656aab58698011b42763ccba11c4a8c35936c8dd6c7068c"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94f85614f2cba13f62c3c6481716e4adeae48e1eaa7e8bac379b9d177d93947a"}, - {file = "pydantic_core-2.23.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:510b7fb0a86dc8f10a8bb43bd2f97beb63cffad1203071dc434dac26453955cd"}, - {file = "pydantic_core-2.23.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1eba2f7ce3e30ee2170410e2171867ea73dbd692433b81a93758ab2de6c64835"}, - {file = "pydantic_core-2.23.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4b259fd8409ab84b4041b7b3f24dcc41e4696f180b775961ca8142b5b21d0e70"}, - {file = "pydantic_core-2.23.3-cp39-none-win32.whl", hash = "sha256:40d9bd259538dba2f40963286009bf7caf18b5112b19d2b55b09c14dde6db6a7"}, - {file = "pydantic_core-2.23.3-cp39-none-win_amd64.whl", hash = "sha256:5a8cd3074a98ee70173a8633ad3c10e00dcb991ecec57263aacb4095c5efb958"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f399e8657c67313476a121a6944311fab377085ca7f490648c9af97fc732732d"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:6b5547d098c76e1694ba85f05b595720d7c60d342f24d5aad32c3049131fa5c4"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0dda0290a6f608504882d9f7650975b4651ff91c85673341789a476b1159f211"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65b6e5da855e9c55a0c67f4db8a492bf13d8d3316a59999cfbaf98cc6e401961"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:09e926397f392059ce0afdcac920df29d9c833256354d0c55f1584b0b70cf07e"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:87cfa0ed6b8c5bd6ae8b66de941cece179281239d482f363814d2b986b79cedc"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:e61328920154b6a44d98cabcb709f10e8b74276bc709c9a513a8c37a18786cc4"}, - {file = "pydantic_core-2.23.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ce3317d155628301d649fe5e16a99528d5680af4ec7aa70b90b8dacd2d725c9b"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:e89513f014c6be0d17b00a9a7c81b1c426f4eb9224b15433f3d98c1a071f8433"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:4f62c1c953d7ee375df5eb2e44ad50ce2f5aff931723b398b8bc6f0ac159791a"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2718443bc671c7ac331de4eef9b673063b10af32a0bb385019ad61dcf2cc8f6c"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0d90e08b2727c5d01af1b5ef4121d2f0c99fbee692c762f4d9d0409c9da6541"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b676583fc459c64146debea14ba3af54e540b61762dfc0613dc4e98c3f66eeb"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:50e4661f3337977740fdbfbae084ae5693e505ca2b3130a6d4eb0f2281dc43b8"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:68f4cf373f0de6abfe599a38307f4417c1c867ca381c03df27c873a9069cda25"}, - {file = "pydantic_core-2.23.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:59d52cf01854cb26c46958552a21acb10dd78a52aa34c86f284e66b209db8cab"}, - {file = "pydantic_core-2.23.3.tar.gz", hash = "sha256:3cb0f65d8b4121c1b015c60104a685feb929a29d7cf204387c7f2688c7974690"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:b10bd51f823d891193d4717448fab065733958bdb6a6b351967bd349d48d5c9b"}, + {file = "pydantic_core-2.23.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4fc714bdbfb534f94034efaa6eadd74e5b93c8fa6315565a222f7b6f42ca1166"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63e46b3169866bd62849936de036f901a9356e36376079b05efa83caeaa02ceb"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed1a53de42fbe34853ba90513cea21673481cd81ed1be739f7f2efb931b24916"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cfdd16ab5e59fc31b5e906d1a3f666571abc367598e3e02c83403acabc092e07"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255a8ef062cbf6674450e668482456abac99a5583bbafb73f9ad469540a3a232"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a7cd62e831afe623fbb7aabbb4fe583212115b3ef38a9f6b71869ba644624a2"}, + {file = "pydantic_core-2.23.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f09e2ff1f17c2b51f2bc76d1cc33da96298f0a036a137f5440ab3ec5360b624f"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e38e63e6f3d1cec5a27e0afe90a085af8b6806ee208b33030e65b6516353f1a3"}, + {file = "pydantic_core-2.23.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0dbd8dbed2085ed23b5c04afa29d8fd2771674223135dc9bc937f3c09284d071"}, + {file = "pydantic_core-2.23.4-cp310-none-win32.whl", hash = "sha256:6531b7ca5f951d663c339002e91aaebda765ec7d61b7d1e3991051906ddde119"}, + {file = "pydantic_core-2.23.4-cp310-none-win_amd64.whl", hash = "sha256:7c9129eb40958b3d4500fa2467e6a83356b3b61bfff1b414c7361d9220f9ae8f"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:77733e3892bb0a7fa797826361ce8a9184d25c8dffaec60b7ffe928153680ba8"}, + {file = "pydantic_core-2.23.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b84d168f6c48fabd1f2027a3d1bdfe62f92cade1fb273a5d68e621da0e44e6d"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df49e7a0861a8c36d089c1ed57d308623d60416dab2647a4a17fe050ba85de0e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff02b6d461a6de369f07ec15e465a88895f3223eb75073ffea56b84d9331f607"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:996a38a83508c54c78a5f41456b0103c30508fed9abcad0a59b876d7398f25fd"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d97683ddee4723ae8c95d1eddac7c192e8c552da0c73a925a89fa8649bf13eea"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:216f9b2d7713eb98cb83c80b9c794de1f6b7e3145eef40400c62e86cee5f4e1e"}, + {file = "pydantic_core-2.23.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6f783e0ec4803c787bcea93e13e9932edab72068f68ecffdf86a99fd5918878b"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d0776dea117cf5272382634bd2a5c1b6eb16767c223c6a5317cd3e2a757c61a0"}, + {file = "pydantic_core-2.23.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d5f7a395a8cf1621939692dba2a6b6a830efa6b3cee787d82c7de1ad2930de64"}, + {file = "pydantic_core-2.23.4-cp311-none-win32.whl", hash = "sha256:74b9127ffea03643e998e0c5ad9bd3811d3dac8c676e47db17b0ee7c3c3bf35f"}, + {file = "pydantic_core-2.23.4-cp311-none-win_amd64.whl", hash = "sha256:98d134c954828488b153d88ba1f34e14259284f256180ce659e8d83e9c05eaa3"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f3e0da4ebaef65158d4dfd7d3678aad692f7666877df0002b8a522cdf088f231"}, + {file = "pydantic_core-2.23.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f69a8e0b033b747bb3e36a44e7732f0c99f7edd5cea723d45bc0d6e95377ffee"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:723314c1d51722ab28bfcd5240d858512ffd3116449c557a1336cbe3919beb87"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb2802e667b7051a1bebbfe93684841cc9351004e2badbd6411bf357ab8d5ac8"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d18ca8148bebe1b0a382a27a8ee60350091a6ddaf475fa05ef50dc35b5df6327"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33e3d65a85a2a4a0dc3b092b938a4062b1a05f3a9abde65ea93b233bca0e03f2"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:128585782e5bfa515c590ccee4b727fb76925dd04a98864182b22e89a4e6ed36"}, + {file = "pydantic_core-2.23.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:68665f4c17edcceecc112dfed5dbe6f92261fb9d6054b47d01bf6371a6196126"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:20152074317d9bed6b7a95ade3b7d6054845d70584216160860425f4fbd5ee9e"}, + {file = "pydantic_core-2.23.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9261d3ce84fa1d38ed649c3638feefeae23d32ba9182963e465d58d62203bd24"}, + {file = "pydantic_core-2.23.4-cp312-none-win32.whl", hash = "sha256:4ba762ed58e8d68657fc1281e9bb72e1c3e79cc5d464be146e260c541ec12d84"}, + {file = "pydantic_core-2.23.4-cp312-none-win_amd64.whl", hash = "sha256:97df63000f4fea395b2824da80e169731088656d1818a11b95f3b173747b6cd9"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7530e201d10d7d14abce4fb54cfe5b94a0aefc87da539d0346a484ead376c3cc"}, + {file = "pydantic_core-2.23.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:df933278128ea1cd77772673c73954e53a1c95a4fdf41eef97c2b779271bd0bd"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0cb3da3fd1b6a5d0279a01877713dbda118a2a4fc6f0d821a57da2e464793f05"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:42c6dcb030aefb668a2b7009c85b27f90e51e6a3b4d5c9bc4c57631292015b0d"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:696dd8d674d6ce621ab9d45b205df149399e4bb9aa34102c970b721554828510"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2971bb5ffe72cc0f555c13e19b23c85b654dd2a8f7ab493c262071377bfce9f6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8394d940e5d400d04cad4f75c0598665cbb81aecefaca82ca85bd28264af7f9b"}, + {file = "pydantic_core-2.23.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0dff76e0602ca7d4cdaacc1ac4c005e0ce0dcfe095d5b5259163a80d3a10d327"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7d32706badfe136888bdea71c0def994644e09fff0bfe47441deaed8e96fdbc6"}, + {file = "pydantic_core-2.23.4-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ed541d70698978a20eb63d8c5d72f2cc6d7079d9d90f6b50bad07826f1320f5f"}, + {file = "pydantic_core-2.23.4-cp313-none-win32.whl", hash = "sha256:3d5639516376dce1940ea36edf408c554475369f5da2abd45d44621cb616f769"}, + {file = "pydantic_core-2.23.4-cp313-none-win_amd64.whl", hash = "sha256:5a1504ad17ba4210df3a045132a7baeeba5a200e930f57512ee02909fc5c4cb5"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:d4488a93b071c04dc20f5cecc3631fc78b9789dd72483ba15d423b5b3689b555"}, + {file = "pydantic_core-2.23.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:81965a16b675b35e1d09dd14df53f190f9129c0202356ed44ab2728b1c905658"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ffa2ebd4c8530079140dd2d7f794a9d9a73cbb8e9d59ffe24c63436efa8f271"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61817945f2fe7d166e75fbfb28004034b48e44878177fc54d81688e7b85a3665"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:29d2c342c4bc01b88402d60189f3df065fb0dda3654744d5a165a5288a657368"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e11661ce0fd30a6790e8bcdf263b9ec5988e95e63cf901972107efc49218b13"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d18368b137c6295db49ce7218b1a9ba15c5bc254c96d7c9f9e924a9bc7825ad"}, + {file = "pydantic_core-2.23.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ec4e55f79b1c4ffb2eecd8a0cfba9955a2588497d96851f4c8f99aa4a1d39b12"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:374a5e5049eda9e0a44c696c7ade3ff355f06b1fe0bb945ea3cac2bc336478a2"}, + {file = "pydantic_core-2.23.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5c364564d17da23db1106787675fc7af45f2f7b58b4173bfdd105564e132e6fb"}, + {file = "pydantic_core-2.23.4-cp38-none-win32.whl", hash = "sha256:d7a80d21d613eec45e3d41eb22f8f94ddc758a6c4720842dc74c0581f54993d6"}, + {file = "pydantic_core-2.23.4-cp38-none-win_amd64.whl", hash = "sha256:5f5ff8d839f4566a474a969508fe1c5e59c31c80d9e140566f9a37bba7b8d556"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a4fa4fc04dff799089689f4fd502ce7d59de529fc2f40a2c8836886c03e0175a"}, + {file = "pydantic_core-2.23.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0a7df63886be5e270da67e0966cf4afbae86069501d35c8c1b3b6c168f42cb36"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcedcd19a557e182628afa1d553c3895a9f825b936415d0dbd3cd0bbcfd29b4b"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f54b118ce5de9ac21c363d9b3caa6c800341e8c47a508787e5868c6b79c9323"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86d2f57d3e1379a9525c5ab067b27dbb8a0642fb5d454e17a9ac434f9ce523e3"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:de6d1d1b9e5101508cb37ab0d972357cac5235f5c6533d1071964c47139257df"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1278e0d324f6908e872730c9102b0112477a7f7cf88b308e4fc36ce1bdb6d58c"}, + {file = "pydantic_core-2.23.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9a6b5099eeec78827553827f4c6b8615978bb4b6a88e5d9b93eddf8bb6790f55"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e55541f756f9b3ee346b840103f32779c695a19826a4c442b7954550a0972040"}, + {file = "pydantic_core-2.23.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a5c7ba8ffb6d6f8f2ab08743be203654bb1aaa8c9dcb09f82ddd34eadb695605"}, + {file = "pydantic_core-2.23.4-cp39-none-win32.whl", hash = "sha256:37b0fe330e4a58d3c58b24d91d1eb102aeec675a3db4c292ec3928ecd892a9a6"}, + {file = "pydantic_core-2.23.4-cp39-none-win_amd64.whl", hash = "sha256:1498bec4c05c9c787bde9125cfdcc63a41004ff167f495063191b863399b1a29"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f455ee30a9d61d3e1a15abd5068827773d6e4dc513e795f380cdd59932c782d5"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1e90d2e3bd2c3863d48525d297cd143fe541be8bbf6f579504b9712cb6b643ec"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e203fdf807ac7e12ab59ca2bfcabb38c7cf0b33c41efeb00f8e5da1d86af480"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e08277a400de01bc72436a0ccd02bdf596631411f592ad985dcee21445bd0068"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f220b0eea5965dec25480b6333c788fb72ce5f9129e8759ef876a1d805d00801"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:d06b0c8da4f16d1d1e352134427cb194a0a6e19ad5db9161bf32b2113409e728"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ba1a0996f6c2773bd83e63f18914c1de3c9dd26d55f4ac302a7efe93fb8e7433"}, + {file = "pydantic_core-2.23.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:9a5bce9d23aac8f0cf0836ecfc033896aa8443b501c58d0602dbfd5bd5b37753"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:78ddaaa81421a29574a682b3179d4cf9e6d405a09b99d93ddcf7e5239c742e21"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:883a91b5dd7d26492ff2f04f40fbb652de40fcc0afe07e8129e8ae779c2110eb"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88ad334a15b32a791ea935af224b9de1bf99bcd62fabf745d5f3442199d86d59"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:233710f069d251feb12a56da21e14cca67994eab08362207785cf8c598e74577"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:19442362866a753485ba5e4be408964644dd6a09123d9416c54cd49171f50744"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:624e278a7d29b6445e4e813af92af37820fafb6dcc55c012c834f9e26f9aaaef"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f5ef8f42bec47f21d07668a043f077d507e5bf4e668d5c6dfe6aaba89de1a5b8"}, + {file = "pydantic_core-2.23.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:aea443fffa9fbe3af1a9ba721a87f926fe548d32cab71d188a6ede77d0ff244e"}, + {file = "pydantic_core-2.23.4.tar.gz", hash = "sha256:2584f7cf844ac4d970fba483a717dbe10c1c1c96a969bf65d61ffe94df1b2863"}, ] [package.dependencies] @@ -3273,19 +3315,19 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyjwt" -version = "2.8.0" +version = "2.9.0" description = "JSON Web Token implementation in Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, - {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, + {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, + {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, ] [package.extras] crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] @@ -3368,17 +3410,17 @@ pylint = ">=1.7" [[package]] name = "pymdown-extensions" -version = "10.7.1" +version = "10.11.2" description = "Extension pack for Python Markdown." optional = false python-versions = ">=3.8" files = [ - {file = "pymdown_extensions-10.7.1-py3-none-any.whl", hash = "sha256:f5cc7000d7ff0d1ce9395d216017fa4df3dde800afb1fb72d1c7d3fd35e710f4"}, - {file = "pymdown_extensions-10.7.1.tar.gz", hash = "sha256:c70e146bdd83c744ffc766b4671999796aba18842b268510a329f7f64700d584"}, + {file = "pymdown_extensions-10.11.2-py3-none-any.whl", hash = "sha256:41cdde0a77290e480cf53892f5c5e50921a7ee3e5cd60ba91bf19837b33badcf"}, + {file = "pymdown_extensions-10.11.2.tar.gz", hash = "sha256:bc8847ecc9e784a098efd35e20cba772bc5a1b529dfcef9dc1972db9021a1049"}, ] [package.dependencies] -markdown = ">=3.5" +markdown = ">=3.6" pyyaml = "*" [package.extras] @@ -3456,12 +3498,13 @@ cp2110 = ["hidapi"] [[package]] name = "python-crontab" -version = "3.1.0" +version = "3.2.0" description = "Python Crontab API" optional = false python-versions = "*" files = [ - {file = "python-crontab-3.1.0.tar.gz", hash = "sha256:f4ea1605d24533b67fa7a634ef26cb59a5f2e7954f6e677d2d7a2229959a2fc8"}, + {file = "python_crontab-3.2.0-py3-none-any.whl", hash = "sha256:82cb9b6a312d41ff66fd3caf3eed7115c28c195bfb50711bc2b4b9592feb9fe5"}, + {file = "python_crontab-3.2.0.tar.gz", hash = "sha256:40067d1dd39ade3460b2ad8557c7651514cd3851deffff61c5c60e1227c5c36b"}, ] [package.dependencies] @@ -3536,125 +3579,131 @@ postgresql = ["psycopg2"] [[package]] name = "pytz" -version = "2024.1" +version = "2024.2" description = "World timezone definitions, modern and historical" optional = false python-versions = "*" files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, + {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"}, + {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"}, ] [[package]] name = "pyuwsgi" -version = "2.0.23.post0" +version = "2.0.26" description = "The uWSGI server" optional = false python-versions = "*" files = [ - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49dfe43726f4a71d3440f7a36eb3ba5b361e04807164d34ececda138e2dc2375"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65420b185003dd5b66f41a6d1aa03d63d953a18e818bd4a013fc8e9d580f11cb"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7bc7c60d8e1242b3a638754d2487c505112c642010c460442993be85f3ca9ec7"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1ae2abaa47cb9c0018c790935897aec8001fb709dfac54286a37ab2e0b88dca"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:af376cafca1501b2d4b8184c427c55b32c1a3dcb6070dc27115ca552898c7ff8"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f56a729808ed7aa1d7973d6f900a75bc36b976b7ab6c8867064f36e34cdafd4e"}, - {file = "pyuwsgi-2.0.23.post0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4270e68bb2633b0fc132aad6d415e4e0cde67093a97e64dd84bd186264a8c083"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:97c940a69242dc45658dba3330e64d809f34e33d9631547b6928fd20075b4bb9"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8cac396c2e8e0d199bde9bb8fc90538c82207d0c3d722d08b9a63619b41945d6"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:59d6a718ad42be54b2b80c8c236b728b8b83fb93438786e95f63fc259229ccd7"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c38b5bb59e1bf59030f2d43a3e67aa18e6089c8e7f43e9c5f2099567466d35f4"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7199009447770812056a5b417c4847bd44db1b0230d4bb64c48a4ffacd4e96f0"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f361d168cf175796fe36ab6a88dee079245a2f08e587e8190a38bd1b33238fa8"}, - {file = "pyuwsgi-2.0.23.post0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:52a45e98fe746ae9c9437c5b6f0cdb6117f979c8800f09c8e4dae2997786affd"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f7455976abfa1dd43b5f3376f7f04a925c16babba1c3fc6edcdd81f5c0f24383"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:508f5d84cd677cecc640d0e321badc61080c40c61843cd130b32f356729a599f"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dcf93afec49f5cf29b0a68f4d2fb3e44a3ad1f205704ab2f41f9db47dacb8e13"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a19ab0d5c43bc179a70cb079feb7804e39be6326bf98ec38808fcea5e7d44bd0"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8c5283e38c4fd3130cd7384d57535d60435c63b81a41a6463f26f340efeda9de"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:0d9dfb79bffa552e5985385bc114ecec1d4079b95ce24796f577ef0df727da06"}, - {file = "pyuwsgi-2.0.23.post0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b531ac80155b6c839215d05f95569b34e614e97aab055072c74112b1d2a45546"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:eae183104f3fa26f3d9c28fe75f2ad914e3a365103a6a66e329c0f59f9e461d4"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a34ab2863ff0120c6e0e75c63c9ced462bfb4777e6b8237e4e1df60fb34af51"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc18481f336be63e80fc983aaa1a040e7c69c25c3145edcf93f0e6de2f1ad0d6"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:245da016b424c261d148bbb83d2407aac77e6d5793cbd4e23a17f7e3a8aa061f"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:8de1d975be958cff9122ecc82bf393bf7f41fff6f1047e76ed972047763bbd31"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d75859311605a510a6050ec622ec4beb9f2f8cce5f090e5cea70a1ff74133f8b"}, - {file = "pyuwsgi-2.0.23.post0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d3ad00212ffbb208b7146744ad3710b908734f844b5e2bf533fb09fc44726f37"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:374142b106de187c4572b4441a367fa3466d9ea5aaabe475da42bb9f2202a690"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:137db348bd5f585e8e5a609046d3ac9ef58483bba93de1e3c568c1a860c31b9c"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:52b7a837dbc8702b245481514a32c88418a42df7b5ee68d45695eba457abd3ee"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cfcfeb1eaca5f4dd0e6ed9194e7ec98dcb3a8ac108e8f0414ed7c28d608517ef"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7887c2acc8262223ff9cdce974851da0917818c12ef3ec0f49ec11a9943731fe"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:bae72689ddf8e0bdd1a974a364ed052dd19d7897f1d5c3efcf8d9010c60f56ef"}, - {file = "pyuwsgi-2.0.23.post0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:9565569474f9e9f02f6fa490d96d8c5c7e3004829c01c0446cdb74c618b6a433"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6ba86c6aa815635eefe7728b9b219af281a4e956bab240c5871db6c151c300a8"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29ab8a02e812fbc34026ddb79f274a574c96fc488f384f320d3af37bd7edf932"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4f9c0694a11d8dfbbe2814b8b242a7c4dfa143b63e01447fabce9966a90fa60"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f75e45e14462cbb94fc32242378eef7bda97173de57a68a5d46e4053677a7547"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e7140fc3548cd9d0f02c4511b679ba47d26593d2cceb249d2d147c9901d90022"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ed348cc4c5a4964c8e8fa61ab0ef50c00f7676179a6c0cb0f55f0122db1db1c2"}, - {file = "pyuwsgi-2.0.23.post0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17a8818ec98f92e7935cf0ff56ed4f02a069362e10554df969f70fcdf78d9199"}, - {file = "pyuwsgi-2.0.23.post0.tar.gz", hash = "sha256:04ec79c4a3acad21002ebf1479050c3208605d27cc6659008df51092951eeb8e"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5fe6149521f6545548452ae66d670be7ece962045952d07af7fdd156409771d4"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:03ce17f4a114e0ca53686748e7a4556e62c7a0edc8a6033e076eb3bc4db5489f"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:244c81e050e240ebc8a1c455db8aefc6b5c9f4582551b34905092da0e03415a3"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:596c55b36b72fbb04b6e024578e8f9867185b6b07f50fcead75e71b6534154e7"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a9e82434e640eb5c7ce0845c3cfd6711088cff3b0265d98e6a34216972eec07"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:df91af8b7dfd573683ccecfa646d447e4a23be7dc84329c0633e70faa9431ba8"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:ffa63939802f29873a8b92e437fd9e17fccde0a80004260a2abe8ad71b42bd1d"}, + {file = "pyuwsgi-2.0.26-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:910642f91877e8dac6d0286c79688543d0d573e43e78d030d998faee8ca49bdb"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b20664df152f225d56f6ba810347d47efa126d9ce751e6e5fbad07a12d7cdae2"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:35aeca4b60e883796f0c2fa4b78fa34e5f31947b317b7d63526aa68a31036467"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46f95c39b8713121536e5f0c4292eab30adcb8dabd088641fd34b5641d4fd81d"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:85f8a3b09b41177496e5ed84aa9e0e3f815ac53422d37f72eec7933609f742e9"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9b9bed61cf18002ed7e9cef81c42e6b825c01b7c8d983f2cff223f905987e64"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a0bc7cb23a35b7da5ead97b2e9ea2894a74c96d9864782789526e66fdfcf5f91"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bb69885e3f02a7538137197a8618766cda7e29bd7da005fce699e6385215a786"}, + {file = "pyuwsgi-2.0.26-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c7bb17f907f7e165d45b676939c9641dbf4d7c8c532caaa704006c6be69c3b60"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:01aac38118cd35adb141a7ddbd721845c3b895a18d6cfddca3a237e0da5e5fc7"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ead0863e90397be562ca9816b2e0704f8e59e734ab158eb467db333814af704e"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf4e2828ca8c213f91673ff960a29ebbc037d743e57b2758ea5a76dd13c0b01c"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d48accc82c82d637be27ebb153c17a2773758df582602d7f8c1702e9dcf8ea3a"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c87bd20906bceebf0bfb3fc4f25b12ca3943aafeaf0dc289df9144d4ee41f9c5"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e5f14b676f8aacd79a2106695657c212b4469cd98f1624dc0473e1e0e695bcc9"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:70aec45ba640742df86e0f1a0baa01964b162d11f24ee70d56146bd6331462f9"}, + {file = "pyuwsgi-2.0.26-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c8ded279e1c4da7273f25d658979071520ae97712650f70ea50715618cb51910"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:288f34589e7d76e70f4ebaccfeb34b76cefa661f41302b38722f305a22310e1f"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:524c5620aff07c72f9ef6526712f92a06ff9741c0c3ea7b46284045de1b8db40"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e9f5f0c377d9efc04d12937e79567628c4c1f72c0991f45c6dbb76541ca1b683"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db26c9ca688fb19e1716c7ab8e09811a9bd431576432ca626d89e9ebbef96fc1"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:489ff6e77fcbe14ca7a853916388ddb4bd4e087dd243abef0b7a4732563401ba"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:3d07829faf43b5981487130a929eb8521aefdf39dd723c50e2e168362dafafdc"}, + {file = "pyuwsgi-2.0.26-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:d9e21e147f851a77ab893a27466a166a52450558c88ce885974c2e63f6e3c298"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7cfa8b9524bccca9052c6fd2682ec2fc744a9397eaf5febde8e60334fac4313a"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a13acc603cca50510dd2b0772f398bad1bcfaa5c418069becba016edac22ac4"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:544e2f791912dc5f38cb1159eae8ba037cdd472b40e2fcfc0ea7fb973aaebaaa"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c807ae36058dd7ae2653451081536c10886c74fc06aa1bf7a28cc2f0c815307"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:af04d0ff93a89c65369c8b0b10d07394046e7d78694fad998b316aa7f8ca3e1d"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:fb1ba584cd07339f2adad5eb33ab51854330748426a63fbd58cb39031ffb7498"}, + {file = "pyuwsgi-2.0.26-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:709d3704dcb9e85576a31a1c04782fe17df6a577a6eaf07dd2b7c34982ca905f"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4a81548e59852276af18d4404512cfcbaf20c40f38f345bb80b1a87f1dc7285c"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bb840399ff19b3e2308e33b2cd37143bc55b1666e99b38370660b95127b081aa"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:115cf76fe6358a7863e4f28d9dfd2fa51f1f198a7259ee5fec2e7cb52d0060bf"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fd517e4336ebae0493063a031da0e6a53ff436dc5cd551b57f387d38459085c"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14769dd0c41bc531dba7fc8fe202a11d984d93f251896ffcc74daa0476eda966"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:312575bcc9513dfd7d76d993b7753d18b9a36e54cffca6b72ad2e1397636c7fd"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3d839d584276784f660168b89209c28ce9a1cb14f8911322f21d919c2566e49d"}, + {file = "pyuwsgi-2.0.26-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ea8e3e197f54902b34c5648880bc3c111ad4f677a7350203d1052606cc04119b"}, + {file = "pyuwsgi-2.0.26.tar.gz", hash = "sha256:c7f167545939764a1c6fcd0f861023f641ca09f9806f1f4b7e48b9ea2682db8e"}, ] [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0.2" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] @@ -3673,21 +3722,21 @@ pyyaml = "*" [[package]] name = "redis" -version = "5.0.4" +version = "5.1.1" description = "Python client for Redis database and key-value store" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "redis-5.0.4-py3-none-any.whl", hash = "sha256:7adc2835c7a9b5033b7ad8f8918d09b7344188228809c98df07af226d39dec91"}, - {file = "redis-5.0.4.tar.gz", hash = "sha256:ec31f2ed9675cc54c21ba854cfe0462e6faf1d83c8ce5944709db8a4700b9c61"}, + {file = "redis-5.1.1-py3-none-any.whl", hash = "sha256:f8ea06b7482a668c6475ae202ed8d9bcaa409f6e87fb77ed1043d912afd62e24"}, + {file = "redis-5.1.1.tar.gz", hash = "sha256:f6c997521fedbae53387307c5d0bf784d9acc28d9f1d058abeac566ec4dbed72"}, ] [package.dependencies] async-timeout = {version = ">=4.0.3", markers = "python_full_version < \"3.11.3\""} [package.extras] -hiredis = ["hiredis (>=1.0.0)"] -ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==20.0.1)", "requests (>=2.26.0)"] +hiredis = ["hiredis (>=3.0.0)"] +ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==23.2.1)", "requests (>=2.31.0)"] [[package]] name = "referencing" @@ -3706,90 +3755,105 @@ rpds-py = ">=0.7.0" [[package]] name = "regex" -version = "2024.5.15" +version = "2024.9.11" description = "Alternative regular expression module, to replace re." optional = false python-versions = ">=3.8" files = [ - {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a81e3cfbae20378d75185171587cbf756015ccb14840702944f014e0d93ea09f"}, - {file = "regex-2024.5.15-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7b59138b219ffa8979013be7bc85bb60c6f7b7575df3d56dc1e403a438c7a3f6"}, - {file = "regex-2024.5.15-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0bd000c6e266927cb7a1bc39d55be95c4b4f65c5be53e659537537e019232b1"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5eaa7ddaf517aa095fa8da0b5015c44d03da83f5bd49c87961e3c997daed0de7"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba68168daedb2c0bab7fd7e00ced5ba90aebf91024dea3c88ad5063c2a562cca"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6e8d717bca3a6e2064fc3a08df5cbe366369f4b052dcd21b7416e6d71620dca1"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1337b7dbef9b2f71121cdbf1e97e40de33ff114801263b275aafd75303bd62b5"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9ebd0a36102fcad2f03696e8af4ae682793a5d30b46c647eaf280d6cfb32796"}, - {file = "regex-2024.5.15-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:9efa1a32ad3a3ea112224897cdaeb6aa00381627f567179c0314f7b65d354c62"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:1595f2d10dff3d805e054ebdc41c124753631b6a471b976963c7b28543cf13b0"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:b802512f3e1f480f41ab5f2cfc0e2f761f08a1f41092d6718868082fc0d27143"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:a0981022dccabca811e8171f913de05720590c915b033b7e601f35ce4ea7019f"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:19068a6a79cf99a19ccefa44610491e9ca02c2be3305c7760d3831d38a467a6f"}, - {file = "regex-2024.5.15-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1b5269484f6126eee5e687785e83c6b60aad7663dafe842b34691157e5083e53"}, - {file = "regex-2024.5.15-cp310-cp310-win32.whl", hash = "sha256:ada150c5adfa8fbcbf321c30c751dc67d2f12f15bd183ffe4ec7cde351d945b3"}, - {file = "regex-2024.5.15-cp310-cp310-win_amd64.whl", hash = "sha256:ac394ff680fc46b97487941f5e6ae49a9f30ea41c6c6804832063f14b2a5a145"}, - {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f5b1dff3ad008dccf18e652283f5e5339d70bf8ba7c98bf848ac33db10f7bc7a"}, - {file = "regex-2024.5.15-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c6a2b494a76983df8e3d3feea9b9ffdd558b247e60b92f877f93a1ff43d26656"}, - {file = "regex-2024.5.15-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a32b96f15c8ab2e7d27655969a23895eb799de3665fa94349f3b2fbfd547236f"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10002e86e6068d9e1c91eae8295ef690f02f913c57db120b58fdd35a6bb1af35"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec54d5afa89c19c6dd8541a133be51ee1017a38b412b1321ccb8d6ddbeb4cf7d"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10e4ce0dca9ae7a66e6089bb29355d4432caed736acae36fef0fdd7879f0b0cb"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e507ff1e74373c4d3038195fdd2af30d297b4f0950eeda6f515ae3d84a1770f"}, - {file = "regex-2024.5.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d1f059a4d795e646e1c37665b9d06062c62d0e8cc3c511fe01315973a6542e40"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0721931ad5fe0dda45d07f9820b90b2148ccdd8e45bb9e9b42a146cb4f695649"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:833616ddc75ad595dee848ad984d067f2f31be645d603e4d158bba656bbf516c"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:287eb7f54fc81546346207c533ad3c2c51a8d61075127d7f6d79aaf96cdee890"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:19dfb1c504781a136a80ecd1fff9f16dddf5bb43cec6871778c8a907a085bb3d"}, - {file = "regex-2024.5.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:119af6e56dce35e8dfb5222573b50c89e5508d94d55713c75126b753f834de68"}, - {file = "regex-2024.5.15-cp311-cp311-win32.whl", hash = "sha256:1c1c174d6ec38d6c8a7504087358ce9213d4332f6293a94fbf5249992ba54efa"}, - {file = "regex-2024.5.15-cp311-cp311-win_amd64.whl", hash = "sha256:9e717956dcfd656f5055cc70996ee2cc82ac5149517fc8e1b60261b907740201"}, - {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:632b01153e5248c134007209b5c6348a544ce96c46005d8456de1d552455b014"}, - {file = "regex-2024.5.15-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e64198f6b856d48192bf921421fdd8ad8eb35e179086e99e99f711957ffedd6e"}, - {file = "regex-2024.5.15-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68811ab14087b2f6e0fc0c2bae9ad689ea3584cad6917fc57be6a48bbd012c49"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8ec0c2fea1e886a19c3bee0cd19d862b3aa75dcdfb42ebe8ed30708df64687a"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d0c0c0003c10f54a591d220997dd27d953cd9ccc1a7294b40a4be5312be8797b"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2431b9e263af1953c55abbd3e2efca67ca80a3de8a0437cb58e2421f8184717a"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a605586358893b483976cffc1723fb0f83e526e8f14c6e6614e75919d9862cf"}, - {file = "regex-2024.5.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:391d7f7f1e409d192dba8bcd42d3e4cf9e598f3979cdaed6ab11288da88cb9f2"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9ff11639a8d98969c863d4617595eb5425fd12f7c5ef6621a4b74b71ed8726d5"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4eee78a04e6c67e8391edd4dad3279828dd66ac4b79570ec998e2155d2e59fd5"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8fe45aa3f4aa57faabbc9cb46a93363edd6197cbc43523daea044e9ff2fea83e"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:d0a3d8d6acf0c78a1fff0e210d224b821081330b8524e3e2bc5a68ef6ab5803d"}, - {file = "regex-2024.5.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c486b4106066d502495b3025a0a7251bf37ea9540433940a23419461ab9f2a80"}, - {file = "regex-2024.5.15-cp312-cp312-win32.whl", hash = "sha256:c49e15eac7c149f3670b3e27f1f28a2c1ddeccd3a2812cba953e01be2ab9b5fe"}, - {file = "regex-2024.5.15-cp312-cp312-win_amd64.whl", hash = "sha256:673b5a6da4557b975c6c90198588181029c60793835ce02f497ea817ff647cb2"}, - {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:87e2a9c29e672fc65523fb47a90d429b70ef72b901b4e4b1bd42387caf0d6835"}, - {file = "regex-2024.5.15-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c3bea0ba8b73b71b37ac833a7f3fd53825924165da6a924aec78c13032f20850"}, - {file = "regex-2024.5.15-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bfc4f82cabe54f1e7f206fd3d30fda143f84a63fe7d64a81558d6e5f2e5aaba9"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5bb9425fe881d578aeca0b2b4b3d314ec88738706f66f219c194d67179337cb"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64c65783e96e563103d641760664125e91bd85d8e49566ee560ded4da0d3e704"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf2430df4148b08fb4324b848672514b1385ae3807651f3567871f130a728cc3"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5397de3219a8b08ae9540c48f602996aa6b0b65d5a61683e233af8605c42b0f2"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:455705d34b4154a80ead722f4f185b04c4237e8e8e33f265cd0798d0e44825fa"}, - {file = "regex-2024.5.15-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b2b6f1b3bb6f640c1a92be3bbfbcb18657b125b99ecf141fb3310b5282c7d4ed"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:3ad070b823ca5890cab606c940522d05d3d22395d432f4aaaf9d5b1653e47ced"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5b5467acbfc153847d5adb21e21e29847bcb5870e65c94c9206d20eb4e99a384"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:e6662686aeb633ad65be2a42b4cb00178b3fbf7b91878f9446075c404ada552f"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:2b4c884767504c0e2401babe8b5b7aea9148680d2e157fa28f01529d1f7fcf67"}, - {file = "regex-2024.5.15-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3cd7874d57f13bf70078f1ff02b8b0aa48d5b9ed25fc48547516c6aba36f5741"}, - {file = "regex-2024.5.15-cp38-cp38-win32.whl", hash = "sha256:e4682f5ba31f475d58884045c1a97a860a007d44938c4c0895f41d64481edbc9"}, - {file = "regex-2024.5.15-cp38-cp38-win_amd64.whl", hash = "sha256:d99ceffa25ac45d150e30bd9ed14ec6039f2aad0ffa6bb87a5936f5782fc1569"}, - {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:13cdaf31bed30a1e1c2453ef6015aa0983e1366fad2667657dbcac7b02f67133"}, - {file = "regex-2024.5.15-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cac27dcaa821ca271855a32188aa61d12decb6fe45ffe3e722401fe61e323cd1"}, - {file = "regex-2024.5.15-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7dbe2467273b875ea2de38ded4eba86cbcbc9a1a6d0aa11dcf7bd2e67859c435"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64f18a9a3513a99c4bef0e3efd4c4a5b11228b48aa80743be822b71e132ae4f5"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d347a741ea871c2e278fde6c48f85136c96b8659b632fb57a7d1ce1872547600"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1878b8301ed011704aea4c806a3cadbd76f84dece1ec09cc9e4dc934cfa5d4da"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4babf07ad476aaf7830d77000874d7611704a7fcf68c9c2ad151f5d94ae4bfc4"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:35cb514e137cb3488bce23352af3e12fb0dbedd1ee6e60da053c69fb1b29cc6c"}, - {file = "regex-2024.5.15-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cdd09d47c0b2efee9378679f8510ee6955d329424c659ab3c5e3a6edea696294"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:72d7a99cd6b8f958e85fc6ca5b37c4303294954eac1376535b03c2a43eb72629"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:a094801d379ab20c2135529948cb84d417a2169b9bdceda2a36f5f10977ebc16"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:c0c18345010870e58238790a6779a1219b4d97bd2e77e1140e8ee5d14df071aa"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:16093f563098448ff6b1fa68170e4acbef94e6b6a4e25e10eae8598bb1694b5d"}, - {file = "regex-2024.5.15-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e38a7d4e8f633a33b4c7350fbd8bad3b70bf81439ac67ac38916c4a86b465456"}, - {file = "regex-2024.5.15-cp39-cp39-win32.whl", hash = "sha256:71a455a3c584a88f654b64feccc1e25876066c4f5ef26cd6dd711308aa538694"}, - {file = "regex-2024.5.15-cp39-cp39-win_amd64.whl", hash = "sha256:cab12877a9bdafde5500206d1020a584355a97884dfd388af3699e9137bf7388"}, - {file = "regex-2024.5.15.tar.gz", hash = "sha256:d3ee02d9e5f482cc8309134a91eeaacbdd2261ba111b0fef3748eeb4913e6a2c"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1494fa8725c285a81d01dc8c06b55287a1ee5e0e382d8413adc0a9197aac6408"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0e12c481ad92d129c78f13a2a3662317e46ee7ef96c94fd332e1c29131875b7d"}, + {file = "regex-2024.9.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:16e13a7929791ac1216afde26f712802e3df7bf0360b32e4914dca3ab8baeea5"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46989629904bad940bbec2106528140a218b4a36bb3042d8406980be1941429c"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a906ed5e47a0ce5f04b2c981af1c9acf9e8696066900bf03b9d7879a6f679fc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a091b0550b3b0207784a7d6d0f1a00d1d1c8a11699c1a4d93db3fbefc3ad35"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ddcd9a179c0a6fa8add279a4444015acddcd7f232a49071ae57fa6e278f1f71"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b41e1adc61fa347662b09398e31ad446afadff932a24807d3ceb955ed865cc8"}, + {file = "regex-2024.9.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ced479f601cd2f8ca1fd7b23925a7e0ad512a56d6e9476f79b8f381d9d37090a"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:635a1d96665f84b292e401c3d62775851aedc31d4f8784117b3c68c4fcd4118d"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:c0256beda696edcf7d97ef16b2a33a8e5a875affd6fa6567b54f7c577b30a137"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:3ce4f1185db3fbde8ed8aa223fc9620f276c58de8b0d4f8cc86fd1360829edb6"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:09d77559e80dcc9d24570da3745ab859a9cf91953062e4ab126ba9d5993688ca"}, + {file = "regex-2024.9.11-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a22ccefd4db3f12b526eccb129390942fe874a3a9fdbdd24cf55773a1faab1a"}, + {file = "regex-2024.9.11-cp310-cp310-win32.whl", hash = "sha256:f745ec09bc1b0bd15cfc73df6fa4f726dcc26bb16c23a03f9e3367d357eeedd0"}, + {file = "regex-2024.9.11-cp310-cp310-win_amd64.whl", hash = "sha256:01c2acb51f8a7d6494c8c5eafe3d8e06d76563d8a8a4643b37e9b2dd8a2ff623"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2cce2449e5927a0bf084d346da6cd5eb016b2beca10d0013ab50e3c226ffc0df"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b37fa423beefa44919e009745ccbf353d8c981516e807995b2bd11c2c77d268"}, + {file = "regex-2024.9.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:64ce2799bd75039b480cc0360907c4fb2f50022f030bf9e7a8705b636e408fad"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4cc92bb6db56ab0c1cbd17294e14f5e9224f0cc6521167ef388332604e92679"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d05ac6fa06959c4172eccd99a222e1fbf17b5670c4d596cb1e5cde99600674c4"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:040562757795eeea356394a7fb13076ad4f99d3c62ab0f8bdfb21f99a1f85664"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6113c008a7780792efc80f9dfe10ba0cd043cbf8dc9a76ef757850f51b4edc50"}, + {file = "regex-2024.9.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e5fb5f77c8745a60105403a774fe2c1759b71d3e7b4ca237a5e67ad066c7199"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:54d9ff35d4515debf14bc27f1e3b38bfc453eff3220f5bce159642fa762fe5d4"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:df5cbb1fbc74a8305b6065d4ade43b993be03dbe0f8b30032cced0d7740994bd"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:7fb89ee5d106e4a7a51bce305ac4efb981536301895f7bdcf93ec92ae0d91c7f"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a738b937d512b30bf75995c0159c0ddf9eec0775c9d72ac0202076c72f24aa96"}, + {file = "regex-2024.9.11-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e28f9faeb14b6f23ac55bfbbfd3643f5c7c18ede093977f1df249f73fd22c7b1"}, + {file = "regex-2024.9.11-cp311-cp311-win32.whl", hash = "sha256:18e707ce6c92d7282dfce370cd205098384b8ee21544e7cb29b8aab955b66fa9"}, + {file = "regex-2024.9.11-cp311-cp311-win_amd64.whl", hash = "sha256:313ea15e5ff2a8cbbad96ccef6be638393041b0a7863183c2d31e0c6116688cf"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b0d0a6c64fcc4ef9c69bd5b3b3626cc3776520a1637d8abaa62b9edc147a58f7"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:49b0e06786ea663f933f3710a51e9385ce0cba0ea56b67107fd841a55d56a231"}, + {file = "regex-2024.9.11-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5b513b6997a0b2f10e4fd3a1313568e373926e8c252bd76c960f96fd039cd28d"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee439691d8c23e76f9802c42a95cfeebf9d47cf4ffd06f18489122dbb0a7ad64"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a8f877c89719d759e52783f7fe6e1c67121076b87b40542966c02de5503ace42"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:23b30c62d0f16827f2ae9f2bb87619bc4fba2044911e2e6c2eb1af0161cdb766"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85ab7824093d8f10d44330fe1e6493f756f252d145323dd17ab6b48733ff6c0a"}, + {file = "regex-2024.9.11-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8dee5b4810a89447151999428fe096977346cf2f29f4d5e29609d2e19e0199c9"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98eeee2f2e63edae2181c886d7911ce502e1292794f4c5ee71e60e23e8d26b5d"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:57fdd2e0b2694ce6fc2e5ccf189789c3e2962916fb38779d3e3521ff8fe7a822"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:d552c78411f60b1fdaafd117a1fca2f02e562e309223b9d44b7de8be451ec5e0"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:a0b2b80321c2ed3fcf0385ec9e51a12253c50f146fddb2abbb10f033fe3d049a"}, + {file = "regex-2024.9.11-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:18406efb2f5a0e57e3a5881cd9354c1512d3bb4f5c45d96d110a66114d84d23a"}, + {file = "regex-2024.9.11-cp312-cp312-win32.whl", hash = "sha256:e464b467f1588e2c42d26814231edecbcfe77f5ac414d92cbf4e7b55b2c2a776"}, + {file = "regex-2024.9.11-cp312-cp312-win_amd64.whl", hash = "sha256:9e8719792ca63c6b8340380352c24dcb8cd7ec49dae36e963742a275dfae6009"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c157bb447303070f256e084668b702073db99bbb61d44f85d811025fcf38f784"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4db21ece84dfeefc5d8a3863f101995de646c6cb0536952c321a2650aa202c36"}, + {file = "regex-2024.9.11-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:220e92a30b426daf23bb67a7962900ed4613589bab80382be09b48896d211e92"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb1ae19e64c14c7ec1995f40bd932448713d3c73509e82d8cd7744dc00e29e86"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f47cd43a5bfa48f86925fe26fbdd0a488ff15b62468abb5d2a1e092a4fb10e85"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9d4a76b96f398697fe01117093613166e6aa8195d63f1b4ec3f21ab637632963"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ea51dcc0835eea2ea31d66456210a4e01a076d820e9039b04ae8d17ac11dee6"}, + {file = "regex-2024.9.11-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7aaa315101c6567a9a45d2839322c51c8d6e81f67683d529512f5bcfb99c802"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c57d08ad67aba97af57a7263c2d9006d5c404d721c5f7542f077f109ec2a4a29"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f8404bf61298bb6f8224bb9176c1424548ee1181130818fcd2cbffddc768bed8"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dd4490a33eb909ef5078ab20f5f000087afa2a4daa27b4c072ccb3cb3050ad84"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:eee9130eaad130649fd73e5cd92f60e55708952260ede70da64de420cdcad554"}, + {file = "regex-2024.9.11-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6a2644a93da36c784e546de579ec1806bfd2763ef47babc1b03d765fe560c9f8"}, + {file = "regex-2024.9.11-cp313-cp313-win32.whl", hash = "sha256:e997fd30430c57138adc06bba4c7c2968fb13d101e57dd5bb9355bf8ce3fa7e8"}, + {file = "regex-2024.9.11-cp313-cp313-win_amd64.whl", hash = "sha256:042c55879cfeb21a8adacc84ea347721d3d83a159da6acdf1116859e2427c43f"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:35f4a6f96aa6cb3f2f7247027b07b15a374f0d5b912c0001418d1d55024d5cb4"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:55b96e7ce3a69a8449a66984c268062fbaa0d8ae437b285428e12797baefce7e"}, + {file = "regex-2024.9.11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cb130fccd1a37ed894824b8c046321540263013da72745d755f2d35114b81a60"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:323c1f04be6b2968944d730e5c2091c8c89767903ecaa135203eec4565ed2b2b"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be1c8ed48c4c4065ecb19d882a0ce1afe0745dfad8ce48c49586b90a55f02366"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b5b029322e6e7b94fff16cd120ab35a253236a5f99a79fb04fda7ae71ca20ae8"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6fff13ef6b5f29221d6904aa816c34701462956aa72a77f1f151a8ec4f56aeb"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:587d4af3979376652010e400accc30404e6c16b7df574048ab1f581af82065e4"}, + {file = "regex-2024.9.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:079400a8269544b955ffa9e31f186f01d96829110a3bf79dc338e9910f794fca"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f9268774428ec173654985ce55fc6caf4c6d11ade0f6f914d48ef4719eb05ebb"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:23f9985c8784e544d53fc2930fc1ac1a7319f5d5332d228437acc9f418f2f168"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:ae2941333154baff9838e88aa71c1d84f4438189ecc6021a12c7573728b5838e"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:e93f1c331ca8e86fe877a48ad64e77882c0c4da0097f2212873a69bbfea95d0c"}, + {file = "regex-2024.9.11-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:846bc79ee753acf93aef4184c040d709940c9d001029ceb7b7a52747b80ed2dd"}, + {file = "regex-2024.9.11-cp38-cp38-win32.whl", hash = "sha256:c94bb0a9f1db10a1d16c00880bdebd5f9faf267273b8f5bd1878126e0fbde771"}, + {file = "regex-2024.9.11-cp38-cp38-win_amd64.whl", hash = "sha256:2b08fce89fbd45664d3df6ad93e554b6c16933ffa9d55cb7e01182baaf971508"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:07f45f287469039ffc2c53caf6803cd506eb5f5f637f1d4acb37a738f71dd066"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4838e24ee015101d9f901988001038f7f0d90dc0c3b115541a1365fb439add62"}, + {file = "regex-2024.9.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6edd623bae6a737f10ce853ea076f56f507fd7726bee96a41ee3d68d347e4d16"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c69ada171c2d0e97a4b5aa78fbb835e0ffbb6b13fc5da968c09811346564f0d3"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:02087ea0a03b4af1ed6ebab2c54d7118127fee8d71b26398e8e4b05b78963199"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:69dee6a020693d12a3cf892aba4808fe168d2a4cef368eb9bf74f5398bfd4ee8"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297f54910247508e6e5cae669f2bc308985c60540a4edd1c77203ef19bfa63ca"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ecea58b43a67b1b79805f1a0255730edaf5191ecef84dbc4cc85eb30bc8b63b9"}, + {file = "regex-2024.9.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:eab4bb380f15e189d1313195b062a6aa908f5bd687a0ceccd47c8211e9cf0d4a"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0cbff728659ce4bbf4c30b2a1be040faafaa9eca6ecde40aaff86f7889f4ab39"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:54c4a097b8bc5bb0dfc83ae498061d53ad7b5762e00f4adaa23bee22b012e6ba"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:73d6d2f64f4d894c96626a75578b0bf7d9e56dcda8c3d037a2118fdfe9b1c664"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:e53b5fbab5d675aec9f0c501274c467c0f9a5d23696cfc94247e1fb56501ed89"}, + {file = "regex-2024.9.11-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0ffbcf9221e04502fc35e54d1ce9567541979c3fdfb93d2c554f0ca583a19b35"}, + {file = "regex-2024.9.11-cp39-cp39-win32.whl", hash = "sha256:e4c22e1ac1f1ec1e09f72e6c44d8f2244173db7eb9629cc3a346a8d7ccc31142"}, + {file = "regex-2024.9.11-cp39-cp39-win_amd64.whl", hash = "sha256:faa3c142464efec496967359ca99696c896c591c56c53506bac1ad465f66e919"}, + {file = "regex-2024.9.11.tar.gz", hash = "sha256:6c188c307e8433bcb63dc1915022deb553b4203a70722fc542c363bf120a01fd"}, ] [[package]] @@ -3848,110 +3912,114 @@ py = ">=1.4.26,<2.0.0" [[package]] name = "rpds-py" -version = "0.18.1" +version = "0.20.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.18.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:d31dea506d718693b6b2cffc0648a8929bdc51c70a311b2770f09611caa10d53"}, - {file = "rpds_py-0.18.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:732672fbc449bab754e0b15356c077cc31566df874964d4801ab14f71951ea80"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a98a1f0552b5f227a3d6422dbd61bc6f30db170939bd87ed14f3c339aa6c7c9"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f1944ce16401aad1e3f7d312247b3d5de7981f634dc9dfe90da72b87d37887d"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38e14fb4e370885c4ecd734f093a2225ee52dc384b86fa55fe3f74638b2cfb09"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08d74b184f9ab6289b87b19fe6a6d1a97fbfea84b8a3e745e87a5de3029bf944"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d70129cef4a8d979caa37e7fe957202e7eee8ea02c5e16455bc9808a59c6b2f0"}, - {file = "rpds_py-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ce0bb20e3a11bd04461324a6a798af34d503f8d6f1aa3d2aa8901ceaf039176d"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:81c5196a790032e0fc2464c0b4ab95f8610f96f1f2fa3d4deacce6a79852da60"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:f3027be483868c99b4985fda802a57a67fdf30c5d9a50338d9db646d590198da"}, - {file = "rpds_py-0.18.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d44607f98caa2961bab4fa3c4309724b185b464cdc3ba6f3d7340bac3ec97cc1"}, - {file = "rpds_py-0.18.1-cp310-none-win32.whl", hash = "sha256:c273e795e7a0f1fddd46e1e3cb8be15634c29ae8ff31c196debb620e1edb9333"}, - {file = "rpds_py-0.18.1-cp310-none-win_amd64.whl", hash = "sha256:8352f48d511de5f973e4f2f9412736d7dea76c69faa6d36bcf885b50c758ab9a"}, - {file = "rpds_py-0.18.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6b5ff7e1d63a8281654b5e2896d7f08799378e594f09cf3674e832ecaf396ce8"}, - {file = "rpds_py-0.18.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8927638a4d4137a289e41d0fd631551e89fa346d6dbcfc31ad627557d03ceb6d"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:154bf5c93d79558b44e5b50cc354aa0459e518e83677791e6adb0b039b7aa6a7"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:07f2139741e5deb2c5154a7b9629bc5aa48c766b643c1a6750d16f865a82c5fc"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8c7672e9fba7425f79019db9945b16e308ed8bc89348c23d955c8c0540da0a07"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:489bdfe1abd0406eba6b3bb4fdc87c7fa40f1031de073d0cfb744634cc8fa261"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c20f05e8e3d4fc76875fc9cb8cf24b90a63f5a1b4c5b9273f0e8225e169b100"}, - {file = "rpds_py-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:967342e045564cef76dfcf1edb700b1e20838d83b1aa02ab313e6a497cf923b8"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2cc7c1a47f3a63282ab0f422d90ddac4aa3034e39fc66a559ab93041e6505da7"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f7afbfee1157e0f9376c00bb232e80a60e59ed716e3211a80cb8506550671e6e"}, - {file = "rpds_py-0.18.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9e6934d70dc50f9f8ea47081ceafdec09245fd9f6032669c3b45705dea096b88"}, - {file = "rpds_py-0.18.1-cp311-none-win32.whl", hash = "sha256:c69882964516dc143083d3795cb508e806b09fc3800fd0d4cddc1df6c36e76bb"}, - {file = "rpds_py-0.18.1-cp311-none-win_amd64.whl", hash = "sha256:70a838f7754483bcdc830444952fd89645569e7452e3226de4a613a4c1793fb2"}, - {file = "rpds_py-0.18.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:3dd3cd86e1db5aadd334e011eba4e29d37a104b403e8ca24dcd6703c68ca55b3"}, - {file = "rpds_py-0.18.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:05f3d615099bd9b13ecf2fc9cf2d839ad3f20239c678f461c753e93755d629ee"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35b2b771b13eee8729a5049c976197ff58a27a3829c018a04341bcf1ae409b2b"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ee17cd26b97d537af8f33635ef38be873073d516fd425e80559f4585a7b90c43"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b646bf655b135ccf4522ed43d6902af37d3f5dbcf0da66c769a2b3938b9d8184"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:19ba472b9606c36716062c023afa2484d1e4220548751bda14f725a7de17b4f6"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e30ac5e329098903262dc5bdd7e2086e0256aa762cc8b744f9e7bf2a427d3f8"}, - {file = "rpds_py-0.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d58ad6317d188c43750cb76e9deacf6051d0f884d87dc6518e0280438648a9ac"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e1735502458621921cee039c47318cb90b51d532c2766593be6207eec53e5c4c"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f5bab211605d91db0e2995a17b5c6ee5edec1270e46223e513eaa20da20076ac"}, - {file = "rpds_py-0.18.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2fc24a329a717f9e2448f8cd1f960f9dac4e45b6224d60734edeb67499bab03a"}, - {file = "rpds_py-0.18.1-cp312-none-win32.whl", hash = "sha256:1805d5901779662d599d0e2e4159d8a82c0b05faa86ef9222bf974572286b2b6"}, - {file = "rpds_py-0.18.1-cp312-none-win_amd64.whl", hash = "sha256:720edcb916df872d80f80a1cc5ea9058300b97721efda8651efcd938a9c70a72"}, - {file = "rpds_py-0.18.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:c827576e2fa017a081346dce87d532a5310241648eb3700af9a571a6e9fc7e74"}, - {file = "rpds_py-0.18.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aa3679e751408d75a0b4d8d26d6647b6d9326f5e35c00a7ccd82b78ef64f65f8"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0abeee75434e2ee2d142d650d1e54ac1f8b01e6e6abdde8ffd6eeac6e9c38e20"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed402d6153c5d519a0faf1bb69898e97fb31613b49da27a84a13935ea9164dfc"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:338dee44b0cef8b70fd2ef54b4e09bb1b97fc6c3a58fea5db6cc083fd9fc2724"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7750569d9526199c5b97e5a9f8d96a13300950d910cf04a861d96f4273d5b104"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:607345bd5912aacc0c5a63d45a1f73fef29e697884f7e861094e443187c02be5"}, - {file = "rpds_py-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:207c82978115baa1fd8d706d720b4a4d2b0913df1c78c85ba73fe6c5804505f0"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6d1e42d2735d437e7e80bab4d78eb2e459af48c0a46e686ea35f690b93db792d"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:5463c47c08630007dc0fe99fb480ea4f34a89712410592380425a9b4e1611d8e"}, - {file = "rpds_py-0.18.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:06d218939e1bf2ca50e6b0ec700ffe755e5216a8230ab3e87c059ebb4ea06afc"}, - {file = "rpds_py-0.18.1-cp38-none-win32.whl", hash = "sha256:312fe69b4fe1ffbe76520a7676b1e5ac06ddf7826d764cc10265c3b53f96dbe9"}, - {file = "rpds_py-0.18.1-cp38-none-win_amd64.whl", hash = "sha256:9437ca26784120a279f3137ee080b0e717012c42921eb07861b412340f85bae2"}, - {file = "rpds_py-0.18.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:19e515b78c3fc1039dd7da0a33c28c3154458f947f4dc198d3c72db2b6b5dc93"}, - {file = "rpds_py-0.18.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a7b28c5b066bca9a4eb4e2f2663012debe680f097979d880657f00e1c30875a0"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:673fdbbf668dd958eff750e500495ef3f611e2ecc209464f661bc82e9838991e"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d960de62227635d2e61068f42a6cb6aae91a7fe00fca0e3aeed17667c8a34611"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:352a88dc7892f1da66b6027af06a2e7e5d53fe05924cc2cfc56495b586a10b72"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4e0ee01ad8260184db21468a6e1c37afa0529acc12c3a697ee498d3c2c4dcaf3"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4c39ad2f512b4041343ea3c7894339e4ca7839ac38ca83d68a832fc8b3748ab"}, - {file = "rpds_py-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aaa71ee43a703c321906813bb252f69524f02aa05bf4eec85f0c41d5d62d0f4c"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6cd8098517c64a85e790657e7b1e509b9fe07487fd358e19431cb120f7d96338"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:4adec039b8e2928983f885c53b7cc4cda8965b62b6596501a0308d2703f8af1b"}, - {file = "rpds_py-0.18.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:32b7daaa3e9389db3695964ce8e566e3413b0c43e3394c05e4b243a4cd7bef26"}, - {file = "rpds_py-0.18.1-cp39-none-win32.whl", hash = "sha256:2625f03b105328729f9450c8badda34d5243231eef6535f80064d57035738360"}, - {file = "rpds_py-0.18.1-cp39-none-win_amd64.whl", hash = "sha256:bf18932d0003c8c4d51a39f244231986ab23ee057d235a12b2684ea26a353590"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cbfbea39ba64f5e53ae2915de36f130588bba71245b418060ec3330ebf85678e"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:a3d456ff2a6a4d2adcdf3c1c960a36f4fd2fec6e3b4902a42a384d17cf4e7a65"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7700936ef9d006b7ef605dc53aa364da2de5a3aa65516a1f3ce73bf82ecfc7ae"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:51584acc5916212e1bf45edd17f3a6b05fe0cbb40482d25e619f824dccb679de"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:942695a206a58d2575033ff1e42b12b2aece98d6003c6bc739fbf33d1773b12f"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b906b5f58892813e5ba5c6056d6a5ad08f358ba49f046d910ad992196ea61397"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6f8e3fecca256fefc91bb6765a693d96692459d7d4c644660a9fff32e517843"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7732770412bab81c5a9f6d20aeb60ae943a9b36dcd990d876a773526468e7163"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bd1105b50ede37461c1d51b9698c4f4be6e13e69a908ab7751e3807985fc0346"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:618916f5535784960f3ecf8111581f4ad31d347c3de66d02e728de460a46303c"}, - {file = "rpds_py-0.18.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:17c6d2155e2423f7e79e3bb18151c686d40db42d8645e7977442170c360194d4"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c4c4c3f878df21faf5fac86eda32671c27889e13570645a9eea0a1abdd50922"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:fab6ce90574645a0d6c58890e9bcaac8d94dff54fb51c69e5522a7358b80ab64"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:531796fb842b53f2695e94dc338929e9f9dbf473b64710c28af5a160b2a8927d"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:740884bc62a5e2bbb31e584f5d23b32320fd75d79f916f15a788d527a5e83644"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:998125738de0158f088aef3cb264a34251908dd2e5d9966774fdab7402edfab7"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e2be6e9dd4111d5b31ba3b74d17da54a8319d8168890fbaea4b9e5c3de630ae5"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0cee71bc618cd93716f3c1bf56653740d2d13ddbd47673efa8bf41435a60daa"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2c3caec4ec5cd1d18e5dd6ae5194d24ed12785212a90b37f5f7f06b8bedd7139"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:27bba383e8c5231cd559affe169ca0b96ec78d39909ffd817f28b166d7ddd4d8"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:a888e8bdb45916234b99da2d859566f1e8a1d2275a801bb8e4a9644e3c7e7909"}, - {file = "rpds_py-0.18.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6031b25fb1b06327b43d841f33842b383beba399884f8228a6bb3df3088485ff"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48c2faaa8adfacefcbfdb5f2e2e7bdad081e5ace8d182e5f4ade971f128e6bb3"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d85164315bd68c0806768dc6bb0429c6f95c354f87485ee3593c4f6b14def2bd"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6afd80f6c79893cfc0574956f78a0add8c76e3696f2d6a15bca2c66c415cf2d4"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fa242ac1ff583e4ec7771141606aafc92b361cd90a05c30d93e343a0c2d82a89"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d21be4770ff4e08698e1e8e0bce06edb6ea0626e7c8f560bc08222880aca6a6f"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c45a639e93a0c5d4b788b2613bd637468edd62f8f95ebc6fcc303d58ab3f0a8"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910e71711d1055b2768181efa0a17537b2622afeb0424116619817007f8a2b10"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b9bb1f182a97880f6078283b3505a707057c42bf55d8fca604f70dedfdc0772a"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d54f74f40b1f7aaa595a02ff42ef38ca654b1469bef7d52867da474243cc633"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8d2e182c9ee01135e11e9676e9a62dfad791a7a467738f06726872374a83db49"}, - {file = "rpds_py-0.18.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:636a15acc588f70fda1661234761f9ed9ad79ebed3f2125d44be0862708b666e"}, - {file = "rpds_py-0.18.1.tar.gz", hash = "sha256:dc48b479d540770c811fbd1eb9ba2bb66951863e448efec2e2c102625328e92f"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, + {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, + {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, + {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, + {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, + {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, + {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, + {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, + {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, + {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, + {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, + {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, + {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, + {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, ] [[package]] @@ -4084,18 +4152,18 @@ paramiko = "*" [[package]] name = "setuptools" -version = "74.1.2" +version = "75.1.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-74.1.2-py3-none-any.whl", hash = "sha256:5f4c08aa4d3ebcb57a50c33b1b07e94315d7fc7230f7115e47fc99776c8ce308"}, - {file = "setuptools-74.1.2.tar.gz", hash = "sha256:95b40ed940a1c67eb70fc099094bd6e99c6ee7c23aa2306f4d2697ba7916f9c6"}, + {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, + {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, ] [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] enabler = ["pytest-enabler (>=2.2)"] @@ -4193,13 +4261,13 @@ saml = ["python3-saml (>=1.5.0)"] [[package]] name = "sqlparse" -version = "0.5.0" +version = "0.5.1" description = "A non-validating SQL parser." optional = false python-versions = ">=3.8" files = [ - {file = "sqlparse-0.5.0-py3-none-any.whl", hash = "sha256:c204494cd97479d0e39f28c93d46c0b2d5959c7b9ab904762ea6c7af211c8663"}, - {file = "sqlparse-0.5.0.tar.gz", hash = "sha256:714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93"}, + {file = "sqlparse-0.5.1-py3-none-any.whl", hash = "sha256:773dcbf9a5ab44a090f3441e2180efe2560220203dc2f8c0b0fa141e18b505e4"}, + {file = "sqlparse-0.5.1.tar.gz", hash = "sha256:bb6b4df465655ef332548e24f08e205afc81b9ab86cb1c45657a7ff173a3a00e"}, ] [package.extras] @@ -4292,24 +4360,24 @@ files = [ [[package]] name = "tomli" -version = "2.0.1" +version = "2.0.2" description = "A lil' TOML parser" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, - {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, + {file = "tomli-2.0.2-py3-none-any.whl", hash = "sha256:2ebe24485c53d303f690b0ec092806a085f07af5a5aa1464f3931eec36caaa38"}, + {file = "tomli-2.0.2.tar.gz", hash = "sha256:d46d457a85337051c36524bc5349dd91b1877838e2979ac5ced3e710ed8a60ed"}, ] [[package]] name = "tomlkit" -version = "0.12.5" +version = "0.13.2" description = "Style preserving TOML library" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "tomlkit-0.12.5-py3-none-any.whl", hash = "sha256:af914f5a9c59ed9d0762c7b64d3b5d5df007448eb9cd2edc8a46b1eafead172f"}, - {file = "tomlkit-0.12.5.tar.gz", hash = "sha256:eef34fba39834d4d6b73c9ba7f3e4d1c417a4e56f89a7e96e090dd0d24b8fb3c"}, + {file = "tomlkit-0.13.2-py3-none-any.whl", hash = "sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde"}, + {file = "tomlkit-0.13.2.tar.gz", hash = "sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79"}, ] [[package]] @@ -4401,24 +4469,24 @@ docs = ["mkdocs (==1.2.4)", "mkdocs-material (==7.2.2)", "mkdocs-material-extens [[package]] name = "typing-extensions" -version = "4.12.0" +version = "4.12.2" description = "Backported and Experimental Type Hints for Python 3.8+" optional = false python-versions = ">=3.8" files = [ - {file = "typing_extensions-4.12.0-py3-none-any.whl", hash = "sha256:b349c66bea9016ac22978d800cfff206d5f9816951f12a7d0ec5578b0a819594"}, - {file = "typing_extensions-4.12.0.tar.gz", hash = "sha256:8cbcdc8606ebcb0d95453ad7dc5065e6237b6aa230a31e81d0f440c30fed5fd8"}, + {file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"}, + {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] [[package]] name = "tzdata" -version = "2024.1" +version = "2024.2" description = "Provider of IANA time zone data" optional = false python-versions = ">=2" files = [ - {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, - {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, + {file = "tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"}, + {file = "tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc"}, ] [[package]] @@ -4434,13 +4502,13 @@ files = [ [[package]] name = "urllib3" -version = "1.26.18" +version = "1.26.20" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, - {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, + {file = "urllib3-1.26.20-py2.py3-none-any.whl", hash = "sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e"}, + {file = "urllib3-1.26.20.tar.gz", hash = "sha256:40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32"}, ] [package.extras] @@ -4461,43 +4529,46 @@ files = [ [[package]] name = "watchdog" -version = "4.0.1" +version = "4.0.2" description = "Filesystem events monitoring" optional = false python-versions = ">=3.8" files = [ - {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:da2dfdaa8006eb6a71051795856bedd97e5b03e57da96f98e375682c48850645"}, - {file = "watchdog-4.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e93f451f2dfa433d97765ca2634628b789b49ba8b504fdde5837cdcf25fdb53b"}, - {file = "watchdog-4.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ef0107bbb6a55f5be727cfc2ef945d5676b97bffb8425650dadbb184be9f9a2b"}, - {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:17e32f147d8bf9657e0922c0940bcde863b894cd871dbb694beb6704cfbd2fb5"}, - {file = "watchdog-4.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:03e70d2df2258fb6cb0e95bbdbe06c16e608af94a3ffbd2b90c3f1e83eb10767"}, - {file = "watchdog-4.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:123587af84260c991dc5f62a6e7ef3d1c57dfddc99faacee508c71d287248459"}, - {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:093b23e6906a8b97051191a4a0c73a77ecc958121d42346274c6af6520dec175"}, - {file = "watchdog-4.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:611be3904f9843f0529c35a3ff3fd617449463cb4b73b1633950b3d97fa4bfb7"}, - {file = "watchdog-4.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:62c613ad689ddcb11707f030e722fa929f322ef7e4f18f5335d2b73c61a85c28"}, - {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d4925e4bf7b9bddd1c3de13c9b8a2cdb89a468f640e66fbfabaf735bd85b3e35"}, - {file = "watchdog-4.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cad0bbd66cd59fc474b4a4376bc5ac3fc698723510cbb64091c2a793b18654db"}, - {file = "watchdog-4.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a3c2c317a8fb53e5b3d25790553796105501a235343f5d2bf23bb8649c2c8709"}, - {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c9904904b6564d4ee8a1ed820db76185a3c96e05560c776c79a6ce5ab71888ba"}, - {file = "watchdog-4.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:667f3c579e813fcbad1b784db7a1aaa96524bed53437e119f6a2f5de4db04235"}, - {file = "watchdog-4.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d10a681c9a1d5a77e75c48a3b8e1a9f2ae2928eda463e8d33660437705659682"}, - {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0144c0ea9997b92615af1d94afc0c217e07ce2c14912c7b1a5731776329fcfc7"}, - {file = "watchdog-4.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:998d2be6976a0ee3a81fb8e2777900c28641fb5bfbd0c84717d89bca0addcdc5"}, - {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e7921319fe4430b11278d924ef66d4daa469fafb1da679a2e48c935fa27af193"}, - {file = "watchdog-4.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f0de0f284248ab40188f23380b03b59126d1479cd59940f2a34f8852db710625"}, - {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bca36be5707e81b9e6ce3208d92d95540d4ca244c006b61511753583c81c70dd"}, - {file = "watchdog-4.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:ab998f567ebdf6b1da7dc1e5accfaa7c6992244629c0fdaef062f43249bd8dee"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:dddba7ca1c807045323b6af4ff80f5ddc4d654c8bce8317dde1bd96b128ed253"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:4513ec234c68b14d4161440e07f995f231be21a09329051e67a2118a7a612d2d"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_i686.whl", hash = "sha256:4107ac5ab936a63952dea2a46a734a23230aa2f6f9db1291bf171dac3ebd53c6"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:6e8c70d2cd745daec2a08734d9f63092b793ad97612470a0ee4cbb8f5f705c57"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f27279d060e2ab24c0aa98363ff906d2386aa6c4dc2f1a374655d4e02a6c5e5e"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:f8affdf3c0f0466e69f5b3917cdd042f89c8c63aebdb9f7c078996f607cdb0f5"}, - {file = "watchdog-4.0.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ac7041b385f04c047fcc2951dc001671dee1b7e0615cde772e84b01fbf68ee84"}, - {file = "watchdog-4.0.1-py3-none-win32.whl", hash = "sha256:206afc3d964f9a233e6ad34618ec60b9837d0582b500b63687e34011e15bb429"}, - {file = "watchdog-4.0.1-py3-none-win_amd64.whl", hash = "sha256:7577b3c43e5909623149f76b099ac49a1a01ca4e167d1785c76eb52fa585745a"}, - {file = "watchdog-4.0.1-py3-none-win_ia64.whl", hash = "sha256:d7b9f5f3299e8dd230880b6c55504a1f69cf1e4316275d1b215ebdd8187ec88d"}, - {file = "watchdog-4.0.1.tar.gz", hash = "sha256:eebaacf674fa25511e8867028d281e602ee6500045b57f43b08778082f7f8b44"}, + {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ede7f010f2239b97cc79e6cb3c249e72962404ae3865860855d5cbe708b0fd22"}, + {file = "watchdog-4.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a2cffa171445b0efa0726c561eca9a27d00a1f2b83846dbd5a4f639c4f8ca8e1"}, + {file = "watchdog-4.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c50f148b31b03fbadd6d0b5980e38b558046b127dc483e5e4505fcef250f9503"}, + {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7c7d4bf585ad501c5f6c980e7be9c4f15604c7cc150e942d82083b31a7548930"}, + {file = "watchdog-4.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:914285126ad0b6eb2258bbbcb7b288d9dfd655ae88fa28945be05a7b475a800b"}, + {file = "watchdog-4.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:984306dc4720da5498b16fc037b36ac443816125a3705dfde4fd90652d8028ef"}, + {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1cdcfd8142f604630deef34722d695fb455d04ab7cfe9963055df1fc69e6727a"}, + {file = "watchdog-4.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d7ab624ff2f663f98cd03c8b7eedc09375a911794dfea6bf2a359fcc266bff29"}, + {file = "watchdog-4.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:132937547a716027bd5714383dfc40dc66c26769f1ce8a72a859d6a48f371f3a"}, + {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:cd67c7df93eb58f360c43802acc945fa8da70c675b6fa37a241e17ca698ca49b"}, + {file = "watchdog-4.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcfd02377be80ef3b6bc4ce481ef3959640458d6feaae0bd43dd90a43da90a7d"}, + {file = "watchdog-4.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:980b71510f59c884d684b3663d46e7a14b457c9611c481e5cef08f4dd022eed7"}, + {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:aa160781cafff2719b663c8a506156e9289d111d80f3387cf3af49cedee1f040"}, + {file = "watchdog-4.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f6ee8dedd255087bc7fe82adf046f0b75479b989185fb0bdf9a98b612170eac7"}, + {file = "watchdog-4.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0b4359067d30d5b864e09c8597b112fe0a0a59321a0f331498b013fb097406b4"}, + {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:770eef5372f146997638d737c9a3c597a3b41037cfbc5c41538fc27c09c3a3f9"}, + {file = "watchdog-4.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eeea812f38536a0aa859972d50c76e37f4456474b02bd93674d1947cf1e39578"}, + {file = "watchdog-4.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b2c45f6e1e57ebb4687690c05bc3a2c1fb6ab260550c4290b8abb1335e0fd08b"}, + {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:10b6683df70d340ac3279eff0b2766813f00f35a1d37515d2c99959ada8f05fa"}, + {file = "watchdog-4.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:f7c739888c20f99824f7aa9d31ac8a97353e22d0c0e54703a547a218f6637eb3"}, + {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c100d09ac72a8a08ddbf0629ddfa0b8ee41740f9051429baa8e31bb903ad7508"}, + {file = "watchdog-4.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:f5315a8c8dd6dd9425b974515081fc0aadca1d1d61e078d2246509fd756141ee"}, + {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:2d468028a77b42cc685ed694a7a550a8d1771bb05193ba7b24006b8241a571a1"}, + {file = "watchdog-4.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f15edcae3830ff20e55d1f4e743e92970c847bcddc8b7509bcd172aa04de506e"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:936acba76d636f70db8f3c66e76aa6cb5136a936fc2a5088b9ce1c7a3508fc83"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_armv7l.whl", hash = "sha256:e252f8ca942a870f38cf785aef420285431311652d871409a64e2a0a52a2174c"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_i686.whl", hash = "sha256:0e83619a2d5d436a7e58a1aea957a3c1ccbf9782c43c0b4fed80580e5e4acd1a"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64.whl", hash = "sha256:88456d65f207b39f1981bf772e473799fcdc10801062c36fd5ad9f9d1d463a73"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:32be97f3b75693a93c683787a87a0dc8db98bb84701539954eef991fb35f5fbc"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_s390x.whl", hash = "sha256:c82253cfc9be68e3e49282831afad2c1f6593af80c0daf1287f6a92657986757"}, + {file = "watchdog-4.0.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:c0b14488bd336c5b1845cee83d3e631a1f8b4e9c5091ec539406e4a324f882d8"}, + {file = "watchdog-4.0.2-py3-none-win32.whl", hash = "sha256:0d8a7e523ef03757a5aa29f591437d64d0d894635f8a50f370fe37f913ce4e19"}, + {file = "watchdog-4.0.2-py3-none-win_amd64.whl", hash = "sha256:c344453ef3bf875a535b0488e3ad28e341adbd5a9ffb0f7d62cefacc8824ef2b"}, + {file = "watchdog-4.0.2-py3-none-win_ia64.whl", hash = "sha256:baececaa8edff42cd16558a639a9b0ddf425f93d892e8392a56bf904f5eff22c"}, + {file = "watchdog-4.0.2.tar.gz", hash = "sha256:b4dfbb6c49221be4535623ea4474a4d6ee0a9cef4a80b20c28db4d858b64e270"}, ] [package.extras] @@ -4516,13 +4587,13 @@ files = [ [[package]] name = "wheel" -version = "0.43.0" +version = "0.44.0" description = "A built-package format for Python" optional = false python-versions = ">=3.8" files = [ - {file = "wheel-0.43.0-py3-none-any.whl", hash = "sha256:55c570405f142630c6b9f72fe09d9b67cf1477fcf543ae5b8dcb1f5b7377da81"}, - {file = "wheel-0.43.0.tar.gz", hash = "sha256:465ef92c69fa5c5da2d1cf8ac40559a8c940886afcef87dcf14b9470862f1d85"}, + {file = "wheel-0.44.0-py3-none-any.whl", hash = "sha256:2376a90c98cc337d18623527a97c31797bd02bad0033d41547043a1cbfbe448f"}, + {file = "wheel-0.44.0.tar.gz", hash = "sha256:a29c3f2817e95ab89aa4660681ad547c0e9547f20e75b0562fe7723c9a2a9d49"}, ] [package.extras] @@ -4641,18 +4712,22 @@ pyyaml = "*" [[package]] name = "zipp" -version = "3.19.0" +version = "3.20.2" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.19.0-py3-none-any.whl", hash = "sha256:96dc6ad62f1441bcaccef23b274ec471518daf4fbbc580341204936a5a3dddec"}, - {file = "zipp-3.19.0.tar.gz", hash = "sha256:952df858fb3164426c976d9338d3961e8e8b3758e2e059e0f754b8c4262625ee"}, + {file = "zipp-3.20.2-py3-none-any.whl", hash = "sha256:a817ac80d6cf4b23bf7f2828b7cabf326f15a001bea8b1f9b49631780ba28350"}, + {file = "zipp-3.20.2.tar.gz", hash = "sha256:bc9eb26f4506fda01b81bcde0ca78103b6e62f991b381fec825435c836edbc29"}, ] [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["big-O", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] +type = ["pytest-mypy"] [extras] all = [] diff --git a/tasks.py b/tasks.py index b0dc753e..444631dd 100644 --- a/tasks.py +++ b/tasks.py @@ -14,11 +14,12 @@ import os import re +import sys from pathlib import Path from time import sleep from invoke.collection import Collection -from invoke.exceptions import Exit +from invoke.exceptions import Exit, UnexpectedExit from invoke.tasks import task as invoke_task @@ -156,7 +157,7 @@ def run_command(context, command, **kwargs): **kwargs.get("env", {}), **kwargs.pop("command_env"), } - context.run(command, **kwargs) + return context.run(command, **kwargs) else: # Check if nautobot is running, no need to start another nautobot container to run a command docker_compose_status = "ps --services --filter status=running" @@ -175,7 +176,7 @@ def run_command(context, command, **kwargs): pty = kwargs.pop("pty", True) - docker_compose(context, compose_command, pty=pty, **kwargs) + return docker_compose(context, compose_command, pty=pty, **kwargs) # ------------------------------------------------------------------------------ @@ -249,9 +250,19 @@ def lock(context, check=False, constrain_nautobot_ver=False, constrain_python_ve command = f"poetry add --lock nautobot@{docker_nautobot_version}" if constrain_python_ver: command += f" --python {context.nautobot_device_onboarding.python_ver}" + try: + output = run_command(context, command, hide=True) + print(output.stdout, end="") + print(output.stderr, file=sys.stderr, end="") + except UnexpectedExit: + print("Unable to add Nautobot dependency with version constraint, falling back to git branch.") + command = f"poetry add --lock git+https://github.com/nautobot/nautobot.git#{context.nautobot_device_onboarding.nautobot_ver}" + if constrain_python_ver: + command += f" --python {context.nautobot_device_onboarding.python_ver}" + run_command(context, command) else: command = f"poetry {'check' if check else 'lock --no-update'}" - run_command(context, command) + run_command(context, command) # ------------------------------------------------------------------------------ @@ -681,10 +692,13 @@ def help_task(context): ) def generate_release_notes(context, version=""): """Generate Release Notes using Towncrier.""" - command = "env DJANGO_SETTINGS_MODULE=nautobot.core.settings towncrier build" + command = "poetry run towncrier build" if version: command += f" --version {version}" - run_command(context, command) + else: + command += " --version `poetry version -s`" + # Due to issues with git repo ownership in the containers, this must always run locally. + context.run(command) # ------------------------------------------------------------------------------ @@ -702,10 +716,27 @@ def hadolint(context): @task def pylint(context): """Run pylint code analysis.""" - command = ( - 'pylint --init-hook "import nautobot; nautobot.setup()" --rcfile pyproject.toml nautobot_device_onboarding' - ) - run_command(context, command) + exit_code = 0 + + base_pylint_command = 'pylint --verbose --init-hook "import nautobot; nautobot.setup()" --rcfile pyproject.toml' + command = f"{base_pylint_command} nautobot_device_onboarding" + if not run_command(context, command, warn=True): + exit_code = 1 + + # run the pylint_django migrations checkers on the migrations directory, if one exists + migrations_dir = Path(__file__).absolute().parent / Path("nautobot_device_onboarding") / Path("migrations") + if migrations_dir.is_dir(): + migrations_pylint_command = ( + f"{base_pylint_command} --load-plugins=pylint_django.checkers.migrations" + " --disable=all --enable=fatal,new-db-field-with-default,missing-backwards-migration-callable" + " nautobot_device_onboarding.migrations" + ) + if not run_command(context, migrations_pylint_command, warn=True): + exit_code = 1 + else: + print("No migrations directory found, skipping migrations checks.") + + raise Exit(code=exit_code) @task(aliases=("a",)) @@ -730,12 +761,15 @@ def ruff(context, action=None, target=None, fix=False, output_format="concise"): if not target: target = ["."] + exit_code = 0 + if "format" in action: command = "ruff format " if not fix: command += "--check " command += " ".join(target) - run_command(context, command, warn=True) + if not run_command(context, command, warn=True): + exit_code = 1 if "lint" in action: command = "ruff check " @@ -743,7 +777,10 @@ def ruff(context, action=None, target=None, fix=False, output_format="concise"): command += "--fix " command += f"--output-format {output_format} " command += " ".join(target) - run_command(context, command, warn=True) + if not run_command(context, command, warn=True): + exit_code = 1 + + raise Exit(code=exit_code) @task From 261ee6b9ae976304b1c9f090b302116b75935811 Mon Sep 17 00:00:00 2001 From: scetron Date: Fri, 18 Oct 2024 17:23:55 -0400 Subject: [PATCH 8/9] update codeowners --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index dfa22786..e7f2debb 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ # Default owner(s) of all files in this repository -* @mzbroch @scetron @glennmatthews @chadell @housepbass +* @glennmatthews @chadell @shooks @dav-c @jeffkala @scetron From 6ae2f6788bf20ef702fff87059eb3b860e10419f Mon Sep 17 00:00:00 2001 From: scetron Date: Fri, 18 Oct 2024 17:34:34 -0400 Subject: [PATCH 9/9] Release 4.0.2 --- changes/+nautobot-app-v2.4.0.housekeeping | 1 - changes/192.fixed | 1 - changes/216.housekeeping | 1 - changes/217.fixed | 2 -- changes/218.fixed | 1 - changes/231.added | 1 - changes/231.housekeeping | 1 - changes/235.dependencies | 2 -- changes/238.fixed | 1 - changes/241.fixed | 1 - changes/249.added | 2 -- docs/admin/release_notes/version_4.0.md | 36 +++++++++++++++++++++++ 12 files changed, 36 insertions(+), 14 deletions(-) delete mode 100644 changes/+nautobot-app-v2.4.0.housekeeping delete mode 100755 changes/192.fixed delete mode 100644 changes/216.housekeeping delete mode 100644 changes/217.fixed delete mode 100644 changes/218.fixed delete mode 100644 changes/231.added delete mode 100644 changes/231.housekeeping delete mode 100644 changes/235.dependencies delete mode 100644 changes/238.fixed delete mode 100755 changes/241.fixed delete mode 100755 changes/249.added diff --git a/changes/+nautobot-app-v2.4.0.housekeeping b/changes/+nautobot-app-v2.4.0.housekeeping deleted file mode 100644 index 9b23ffe3..00000000 --- a/changes/+nautobot-app-v2.4.0.housekeeping +++ /dev/null @@ -1 +0,0 @@ -Rebaked from the cookie `nautobot-app-v2.4.0`. diff --git a/changes/192.fixed b/changes/192.fixed deleted file mode 100755 index 71cd741b..00000000 --- a/changes/192.fixed +++ /dev/null @@ -1 +0,0 @@ -Fixes lack of logging of certain termination based failures. diff --git a/changes/216.housekeeping b/changes/216.housekeeping deleted file mode 100644 index b60b1318..00000000 --- a/changes/216.housekeeping +++ /dev/null @@ -1 +0,0 @@ -Rebake using 2.3 Nautobot-App-Cookiecutter. \ No newline at end of file diff --git a/changes/217.fixed b/changes/217.fixed deleted file mode 100644 index 5aff1ecc..00000000 --- a/changes/217.fixed +++ /dev/null @@ -1,2 +0,0 @@ -Removed secrets-provider app dependency. -Removed python-tss-sdk dependency. \ No newline at end of file diff --git a/changes/218.fixed b/changes/218.fixed deleted file mode 100644 index 3c12ecd5..00000000 --- a/changes/218.fixed +++ /dev/null @@ -1 +0,0 @@ -Replaced all instances of emoji shortcodes with the unicode characters so they render correctly in docs. diff --git a/changes/231.added b/changes/231.added deleted file mode 100644 index c738255f..00000000 --- a/changes/231.added +++ /dev/null @@ -1 +0,0 @@ -Added Python 3.12 support. diff --git a/changes/231.housekeeping b/changes/231.housekeeping deleted file mode 100644 index bd272c5d..00000000 --- a/changes/231.housekeeping +++ /dev/null @@ -1 +0,0 @@ -Rebaked from the cookie `nautobot-app-v2.3.2`. diff --git a/changes/235.dependencies b/changes/235.dependencies deleted file mode 100644 index ad3734a3..00000000 --- a/changes/235.dependencies +++ /dev/null @@ -1,2 +0,0 @@ -Updated Nautobot App SSoT to v3.0.0. -Pinned griffe to v1.1.1. diff --git a/changes/238.fixed b/changes/238.fixed deleted file mode 100644 index 0666a4d9..00000000 --- a/changes/238.fixed +++ /dev/null @@ -1 +0,0 @@ -Added a fix for mtu as an integer rather than a string. \ No newline at end of file diff --git a/changes/241.fixed b/changes/241.fixed deleted file mode 100755 index 561cc8c0..00000000 --- a/changes/241.fixed +++ /dev/null @@ -1 +0,0 @@ -Fixed Multiple RE support to Juniper parsing logic. diff --git a/changes/249.added b/changes/249.added deleted file mode 100755 index 1fa5c8cd..00000000 --- a/changes/249.added +++ /dev/null @@ -1,2 +0,0 @@ -Added raw parser choice to skip jpath extraction. -Added initial hp_comware support for sync_devices job. \ No newline at end of file diff --git a/docs/admin/release_notes/version_4.0.md b/docs/admin/release_notes/version_4.0.md index 719e5c1b..0b6f47ff 100755 --- a/docs/admin/release_notes/version_4.0.md +++ b/docs/admin/release_notes/version_4.0.md @@ -3,6 +3,42 @@ !!! warning Nautobot Device Onboarding v4.0.0 completely revamps the applications design and framework. The original `OnboardingTask` job is still packaged with the app to provide a backwards compatible way for users that have used its extensions framework in the past to solve complex problems. However, that job is now hidden by default to avoid confusion with the two new SSoT based onboarding jobs that v4.0.0 exposes. +## Release Overview + +- Added Python 3.12 Support +- Updated SSoT support to 3.0 +- Added support for HP Comware for sync_devices job +- Added ability to use the FQDN of the device instead of the IP +- Fixed some other small issues + +## [v4.0.2 (2024-10-18)](https://github.com/nautobot/nautobot-app-device-onboarding/releases/tag/v4.0.2) + +### Added + +- [#231](https://github.com/nautobot/nautobot-app-device-onboarding/issues/231) - Added Python 3.12 support. +- [#249](https://github.com/nautobot/nautobot-app-device-onboarding/issues/249) - Added raw parser choice to skip jpath extraction. +- [#249](https://github.com/nautobot/nautobot-app-device-onboarding/issues/249) - Added initial hp_comware support for sync_devices job. + +### Fixed + +- [#192](https://github.com/nautobot/nautobot-app-device-onboarding/issues/192) - Fixes lack of logging of certain termination based failures. +- [#217](https://github.com/nautobot/nautobot-app-device-onboarding/issues/217) - Removed secrets-provider app dependency. +- [#217](https://github.com/nautobot/nautobot-app-device-onboarding/issues/217) - Removed python-tss-sdk dependency. +- [#218](https://github.com/nautobot/nautobot-app-device-onboarding/issues/218) - Replaced all instances of emoji shortcodes with the unicode characters so they render correctly in docs. +- [#238](https://github.com/nautobot/nautobot-app-device-onboarding/issues/238) - Added a fix for mtu as an integer rather than a string. +- [#241](https://github.com/nautobot/nautobot-app-device-onboarding/issues/241) - Fixed Multiple RE support to Juniper parsing logic. + +### Dependencies + +- [#235](https://github.com/nautobot/nautobot-app-device-onboarding/issues/235) - Updated Nautobot App SSoT to v3.0.0. +- [#235](https://github.com/nautobot/nautobot-app-device-onboarding/issues/235) - Pinned griffe to v1.1.1. + +### Housekeeping + +- [#0](https://github.com/nautobot/nautobot-app-device-onboarding/issues/0) - Rebaked from the cookie `nautobot-app-v2.4.0`. +- [#216](https://github.com/nautobot/nautobot-app-device-onboarding/issues/216) - Rebake using 2.3 Nautobot-App-Cookiecutter. +- [#231](https://github.com/nautobot/nautobot-app-device-onboarding/issues/231) - Rebaked from the cookie `nautobot-app-v2.3.2`. + ## [v4.0.0 (2024-08-05)](https://github.com/nautobot/nautobot-app-device-onboarding/releases/tag/v4.0.0) ### Added